diff --git a/CHANGELOG.md b/CHANGELOG.md index cf76b49cc..b6955c262 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +### v3.7.0-beta.0 (Jul 17, 2023) +* Added quick reply features + * Added `SBUQuickReplyView`, `SBUQuickRepViewParams` and `SBUQuickReplyViewDelegate` + * Added `SBUQuickReplyOptionView`, `SBUQuickReplyOptionViewDelegate` + * Added `quickReplyView` and `quickReplySelectHandler` to `SBUUserMessageCell` + * Added `groupChannelModule(_:didSelectQuickReplyOption:)` to `SBUGroupChannelModuleListDelegate` +* Added card list features + * Added `cardViewParamsCollectionBuilder` to `SBUGlobalCustomParams` + * Added `SBUCardListData` + * Added `SBUCardListView` and `SBUCardListViewParams` + * Added `SBUCardView` and `SBUCardViewParams` + * Added `cardListView` to `SBUUserMessageCell` + ### v3.6.2 (Jul 14, 2023) with Chat SDK **v4.9.5** * Changed file cache key policy. * Improved the issue of exposing empty images when message status updating from pending to succeed. diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Assets.car b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Assets.car index de20304cf..b686af34b 100644 Binary files a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Assets.car and b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Assets.car differ diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Base.xcconfig b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Base.xcconfig index c5519d339..9ea7846e1 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Base.xcconfig +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Base.xcconfig @@ -9,5 +9,5 @@ // Configuration settings file format documentation can be found at: // https://help.apple.com/xcode/#/dev745c5c974 -SBU_APP_VERSION = 3.6.2 +SBU_APP_VERSION = 3.7.0 SENDBIRD_CHAT_SDK_VERSION = 4.9.5 diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Headers/SendbirdUIKit-Swift.h b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Headers/SendbirdUIKit-Swift.h index 4dfd49c28..efb7655f9 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Headers/SendbirdUIKit-Swift.h +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Headers/SendbirdUIKit-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) +// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) #ifndef SENDBIRDUIKIT_SWIFT_H #define SENDBIRDUIKIT_SWIFT_H #pragma clang diagnostic push @@ -23,6 +23,7 @@ # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" #if defined(__OBJC__) #include @@ -31,24 +32,10 @@ #include #include #include -#include -#include -#include -#include #else #include #include #include -#include -#endif -#if defined(__cplusplus) -#if __has_include() -# include -#else -# ifndef __ptrauth_swift_value_witness_function_pointer -# define __ptrauth_swift_value_witness_function_pointer(x) -# endif -#endif #endif #if !defined(SWIFT_TYPEDEFS) @@ -84,66 +71,53 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# define SWIFT_CLASS_PROPERTY(...) # endif #endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif + +#if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) #endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif +#if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) #endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif +#if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) #endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif +#if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE #endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif +#if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +#else +# define SWIFT_RELEASES_ARGUMENT #endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif +#if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +#else +# define SWIFT_WARN_UNUSED_RESULT #endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif +#if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +#else +# define SWIFT_NORETURN #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -163,25 +137,28 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) # endif #endif + #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA #endif + #if !defined(SWIFT_EXTENSION) # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) #endif + #if !defined(OBJC_DESIGNATED_INITIALIZER) # if __has_attribute(objc_designated_initializer) # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) # else -# define OBJC_DESIGNATED_INITIALIZER +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) +# if defined(__has_attribute) && __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -210,16 +187,14 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_DEPRECATED_MSG) # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) #endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif +#if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +#else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif #if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction #endif #endif #if !defined(SWIFT_EXTERN) @@ -232,31 +207,26 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_CALL) # define SWIFT_CALL __attribute__((swiftcall)) #endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif #if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) # define SWIFT_NOEXCEPT noexcept +#endif #else +#if !defined(SWIFT_NOEXCEPT) # define SWIFT_NOEXCEPT #endif -#if defined(_WIN32) -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) #endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} #endif #endif #if defined(__OBJC__) -#if __has_feature(objc_modules) +#if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @@ -299,7 +269,6 @@ SWIFT_CLASS("_TtCC13SendbirdUIKit9SBUConfig9BaseInput") @end - @interface BaseInput (SWIFT_EXTENSION(SendbirdUIKit)) @end @@ -307,6 +276,7 @@ SWIFT_CLASS("_TtCC13SendbirdUIKit9SBUConfig9BaseInput") + SWIFT_CLASS("_TtCCC13SendbirdUIKit9SBUConfig12GroupChannel7Channel") @interface Channel : NSObject - (nonnull instancetype)init SWIFT_UNAVAILABLE; @@ -445,20 +415,6 @@ SWIFT_CLASS_NAMED("List") @end -/// A module component that represent the list of SBURegisterOperatorModule. -SWIFT_CLASS_NAMED("List") -@interface SBURegisterOperatorModuleList : SBUBaseChannelSettingsModuleList -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBURegisterOperatorModule.List()'"); -- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBURegisterOperatorModule.List()'"); -- (void)configureCell:(UITableViewCell * _Nullable)cell indexPath:(NSIndexPath * _Nonnull)indexPath; -@end - - -@interface SBURegisterOperatorModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)didSelectRetry; -@end - - /// A module component that represent the list of SBUCreateChannelModule. SWIFT_CLASS_NAMED("List") @interface SBUCreateChannelModuleList : SBUBaseChannelSettingsModuleList @@ -494,6 +450,21 @@ SWIFT_CLASS_NAMED("List") - (void)didSelectRetry; @end + +/// A module component that represent the list of SBURegisterOperatorModule. +SWIFT_CLASS_NAMED("List") +@interface SBURegisterOperatorModuleList : SBUBaseChannelSettingsModuleList +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBURegisterOperatorModule.List()'"); +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBURegisterOperatorModule.List()'"); +- (void)configureCell:(UITableViewCell * _Nullable)cell indexPath:(NSIndexPath * _Nonnull)indexPath; +@end + + +@interface SBURegisterOperatorModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)didSelectRetry; +@end + + @class SBDBaseChannel; @class SBDBaseMessage; @class UIScrollView; @@ -616,6 +587,88 @@ SWIFT_CLASS_NAMED("List") - (enum MessageGroupPosition)getMessageGroupingPositionWithCurrentIndex:(NSInteger)currentIndex SWIFT_WARN_UNUSED_RESULT; @end + +@interface SBUBaseChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +/// Reload data from the channel. This function invokes SBUBaseChannelModuleListDelegate baseChannelModuleDidSelectRetry(_:) +- (void)didSelectRetry; +@end + +@class SBUBaseChannelCell; + +/// A module component that represent the list of SBUBaseChannelListModule. +SWIFT_CLASS_NAMED("List") +@interface SBUBaseChannelListModuleList : UIView +/// The table view to show the list of channels +@property (nonatomic, strong) UITableView * _Nonnull tableView; +/// A view that shows when there is no channel. +@property (nonatomic, strong) UIView * _Nullable emptyView; +/// The channel cell for SBUBaseChannelCell object. Use register(channelCell:nib:) to update. +@property (nonatomic, strong) SBUBaseChannelCell * _Nullable channelCell; +/// The custom channel cell for SBUBaseChannelCell object. Use register(customCell:nib:) to update. +@property (nonatomic, strong) SBUBaseChannelCell * _Nullable customCell; +/// The current channel list object from channelListModule(_:channelsInTableView:) data source method. +@property (nonatomic, readonly, copy) NSArray * _Nullable baseChannelList; +/// If this value is enabled, pull to refresh feature is enabled. +/// since: +/// 3.2.0 +@property (nonatomic) BOOL isPullToRefreshEnabled; +/// Set values of the views in the list component when it needs. +- (void)setupViews; +/// Sets layouts of the views in the list component. +- (void)setupLayouts; +- (void)setupPullToRefresh; +/// Configures cell for a particular row. +/// \param channelCell SBUBaseChannelCell object +/// +/// \param indexPath An index path representing the channelCell +/// +- (void)configureCell:(SBUBaseChannelCell * _Nullable)channelCell indexPath:(NSIndexPath * _Nonnull)indexPath; +/// Registers a custom cell as a channel cell based on SBUBaseChannelCell. +/// important: +/// To register custom channel cell, please use this function before calling configure(delegate:dataSource:theme:) +/// \code +/// listComponent.register(channelCell: MyChannelCell) +/// listComponent.configure(delegate: self, dataSource: self, theme: theme) +/// +/// \endcode\param channelCell Customized channel cell +/// +/// \param nib nib information. If the value is nil, the nib file is not used. +/// +- (void)registerWithChannelCell:(SBUBaseChannelCell * _Nonnull)channelCell nib:(UINib * _Nullable)nib; +/// Registers a additional cell as a custom cell based on SBUBaseChannelCell. +/// important: +/// To register additional channel cell, please use this function before calling configure(delegate:dataSource:theme:) +/// \code +/// listComponent.register(customCell: MyChannelCell) +/// listComponent.configure(delegate: self, dataSource: self, theme: theme) +/// +/// \endcode\param customCell Additional channel cell +/// +/// \param nib nib information. If the value is nil, the nib file is not used. +/// +- (void)registerWithCustomCell:(SBUBaseChannelCell * _Nullable)customCell nib:(UINib * _Nullable)nib; +/// Pulls to refresh. +/// since: +/// 3.2.0 +/// \param sender Sender +/// +- (void)pullToRefresh:(id _Nonnull)sender; +/// Reloads table view. This method corresponds to UITableView reloadData(). +- (void)reloadTableView; +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + + +@interface SBUBaseChannelListModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)didSelectRetry; +@end + + +@interface SBUBaseChannelSettingsModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)didSelectRetry; +@end + @class SBUBaseMessageCell; @class SBDGroupChannel; enum MessagePosition : NSInteger; @@ -761,24 +814,58 @@ SWIFT_CLASS_NAMED("List") @end -@interface SBUBaseChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -/// Reload data from the channel. This function invokes SBUBaseChannelModuleListDelegate baseChannelModuleDidSelectRetry(_:) -- (void)didSelectRetry; -@end - -@class SBUQuotedBaseMessageView; -SWIFT_PROTOCOL("_TtP13SendbirdUIKit28SBUQuotedMessageViewDelegate_") -@protocol SBUQuotedMessageViewDelegate -/// Called when SBUQuotedBaseMessageView was tapped. -/// \param quotedMessageView The tapped quoted message view +/// A module component that represent the list of SBUUserListModule. +SWIFT_CLASS_NAMED("List") +@interface SBUUserListModuleList : UIView +/// The table view that shows the list of the users. +@property (nonatomic, strong) UITableView * _Nonnull tableView; +/// A view that displays when the table view is empty. +@property (nonatomic, strong) UIView * _Nullable emptyView; +/// The user cell for UITableViewCell object. Use register(userCell:nib:) to update. +@property (nonatomic, strong) UITableViewCell * _Nullable userCell; +@property (nonatomic, readonly, strong) SBDBaseChannel * _Nullable channel; +@property (nonatomic, readonly, copy) NSArray * _Nonnull userList; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBUUserListModule.List()'"); +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBUUserListModule.List()'"); +- (void)setupViews; +- (void)setupLayouts; +/// Reloads table view. This method corresponds to UITableView reloadData(). +- (void)reloadTableView; +/// Registers a custom cell as a user cell based on UITableViewCell. +/// important: +/// To register custom user cell, please use this function before calling configure(delegate:dataSource:userListType:theme:componentTheme:) +/// \code +/// listComponent.register(userCell: MyUserCell) +/// listComponent.configure(delegate: self, dataSource: self, userListType: .type, theme: theme, componentTheme: componentTheme) /// -- (void)didTapQuotedMessageView:(SBUQuotedBaseMessageView * _Nonnull)quotedMessageView; +/// \endcode\param channelCell Customized user cell +/// +/// \param nib nib information. If the value is nil, the nib file is not used. +/// +- (void)registerWithUserCell:(UITableViewCell * _Nonnull)userCell nib:(UINib * _Nullable)nib; +/// Configures cell for a particular row. +/// \param cell UITableViewCell object +/// +/// \param indexPath An index path representing the cell +/// +- (void)configureCell:(UITableViewCell * _Nullable)cell indexPath:(NSIndexPath * _Nonnull)indexPath; +/// Sets up the cell’s more menu button action. +/// important: +/// Only for the group channel +/// \param user SBUUser obejct +/// +- (void)setMoreMenuTapAction:(SBUUser * _Nonnull)user; +/// Sets up the user profile tap action. +/// If you do not want to use the user profile function, override this function and leave it empty. +/// \param user SBUUser object used for user profile configuration +/// +- (void)setUserProfileTapAction:(SBUUser * _Nonnull)user; @end -@interface SBUGroupChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)didTapQuotedMessageView:(SBUQuotedBaseMessageView * _Nonnull)quotedMessageView; +@interface SBUUserListModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)didSelectRetry; @end @class SBUMessageSearchResultCell; @@ -824,147 +911,30 @@ SWIFT_CLASS_NAMED("List") /// \param indexPath IndexPath of which you want to retrieve the Message object. /// /// -/// returns: -/// BaseMessage object of the corresponding IndexPath, or nil if the message can’t be found. -- (SBDBaseMessage * _Nullable)messageAt:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; -@end - - -@interface SBUMessageSearchModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)didSelectRetry; -@end - - - -@interface SBUBaseChannelSettingsModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)didSelectRetry; -@end - -@class SBUBaseChannelCell; - -/// A module component that represent the list of SBUBaseChannelListModule. -SWIFT_CLASS_NAMED("List") -@interface SBUBaseChannelListModuleList : UIView -/// The table view to show the list of channels -@property (nonatomic, strong) UITableView * _Nonnull tableView; -/// A view that shows when there is no channel. -@property (nonatomic, strong) UIView * _Nullable emptyView; -/// The channel cell for SBUBaseChannelCell object. Use register(channelCell:nib:) to update. -@property (nonatomic, strong) SBUBaseChannelCell * _Nullable channelCell; -/// The custom channel cell for SBUBaseChannelCell object. Use register(customCell:nib:) to update. -@property (nonatomic, strong) SBUBaseChannelCell * _Nullable customCell; -/// The current channel list object from channelListModule(_:channelsInTableView:) data source method. -@property (nonatomic, readonly, copy) NSArray * _Nullable baseChannelList; -/// If this value is enabled, pull to refresh feature is enabled. -/// since: -/// 3.2.0 -@property (nonatomic) BOOL isPullToRefreshEnabled; -/// Set values of the views in the list component when it needs. -- (void)setupViews; -/// Sets layouts of the views in the list component. -- (void)setupLayouts; -- (void)setupPullToRefresh; -/// Configures cell for a particular row. -/// \param channelCell SBUBaseChannelCell object -/// -/// \param indexPath An index path representing the channelCell -/// -- (void)configureCell:(SBUBaseChannelCell * _Nullable)channelCell indexPath:(NSIndexPath * _Nonnull)indexPath; -/// Registers a custom cell as a channel cell based on SBUBaseChannelCell. -/// important: -/// To register custom channel cell, please use this function before calling configure(delegate:dataSource:theme:) -/// \code -/// listComponent.register(channelCell: MyChannelCell) -/// listComponent.configure(delegate: self, dataSource: self, theme: theme) -/// -/// \endcode\param channelCell Customized channel cell -/// -/// \param nib nib information. If the value is nil, the nib file is not used. -/// -- (void)registerWithChannelCell:(SBUBaseChannelCell * _Nonnull)channelCell nib:(UINib * _Nullable)nib; -/// Registers a additional cell as a custom cell based on SBUBaseChannelCell. -/// important: -/// To register additional channel cell, please use this function before calling configure(delegate:dataSource:theme:) -/// \code -/// listComponent.register(customCell: MyChannelCell) -/// listComponent.configure(delegate: self, dataSource: self, theme: theme) -/// -/// \endcode\param customCell Additional channel cell -/// -/// \param nib nib information. If the value is nil, the nib file is not used. -/// -- (void)registerWithCustomCell:(SBUBaseChannelCell * _Nullable)customCell nib:(UINib * _Nullable)nib; -/// Pulls to refresh. -/// since: -/// 3.2.0 -/// \param sender Sender -/// -- (void)pullToRefresh:(id _Nonnull)sender; -/// Reloads table view. This method corresponds to UITableView reloadData(). -- (void)reloadTableView; -- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface SBUBaseChannelListModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)didSelectRetry; -@end - - -/// A module component that represent the list of SBUUserListModule. -SWIFT_CLASS_NAMED("List") -@interface SBUUserListModuleList : UIView -/// The table view that shows the list of the users. -@property (nonatomic, strong) UITableView * _Nonnull tableView; -/// A view that displays when the table view is empty. -@property (nonatomic, strong) UIView * _Nullable emptyView; -/// The user cell for UITableViewCell object. Use register(userCell:nib:) to update. -@property (nonatomic, strong) UITableViewCell * _Nullable userCell; -@property (nonatomic, readonly, strong) SBDBaseChannel * _Nullable channel; -@property (nonatomic, readonly, copy) NSArray * _Nonnull userList; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBUUserListModule.List()'"); -- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBUUserListModule.List()'"); -- (void)setupViews; -- (void)setupLayouts; -/// Reloads table view. This method corresponds to UITableView reloadData(). -- (void)reloadTableView; -/// Registers a custom cell as a user cell based on UITableViewCell. -/// important: -/// To register custom user cell, please use this function before calling configure(delegate:dataSource:userListType:theme:componentTheme:) -/// \code -/// listComponent.register(userCell: MyUserCell) -/// listComponent.configure(delegate: self, dataSource: self, userListType: .type, theme: theme, componentTheme: componentTheme) -/// -/// \endcode\param channelCell Customized user cell -/// -/// \param nib nib information. If the value is nil, the nib file is not used. -/// -- (void)registerWithUserCell:(UITableViewCell * _Nonnull)userCell nib:(UINib * _Nullable)nib; -/// Configures cell for a particular row. -/// \param cell UITableViewCell object -/// -/// \param indexPath An index path representing the cell -/// -- (void)configureCell:(UITableViewCell * _Nullable)cell indexPath:(NSIndexPath * _Nonnull)indexPath; -/// Sets up the cell’s more menu button action. -/// important: -/// Only for the group channel -/// \param user SBUUser obejct -/// -- (void)setMoreMenuTapAction:(SBUUser * _Nonnull)user; -/// Sets up the user profile tap action. -/// If you do not want to use the user profile function, override this function and leave it empty. -/// \param user SBUUser object used for user profile configuration -/// -- (void)setUserProfileTapAction:(SBUUser * _Nonnull)user; +/// returns: +/// BaseMessage object of the corresponding IndexPath, or nil if the message can’t be found. +- (SBDBaseMessage * _Nullable)messageAt:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; @end -@interface SBUUserListModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +@interface SBUMessageSearchModuleList (SWIFT_EXTENSION(SendbirdUIKit)) - (void)didSelectRetry; @end +@class SBUQuotedBaseMessageView; + +SWIFT_PROTOCOL("_TtP13SendbirdUIKit28SBUQuotedMessageViewDelegate_") +@protocol SBUQuotedMessageViewDelegate +/// Called when SBUQuotedBaseMessageView was tapped. +/// \param quotedMessageView The tapped quoted message view +/// +- (void)didTapQuotedMessageView:(SBUQuotedBaseMessageView * _Nonnull)quotedMessageView; +@end + + +@interface SBUGroupChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)didTapQuotedMessageView:(SBUQuotedBaseMessageView * _Nonnull)quotedMessageView; +@end @interface SBURegisterOperatorModuleList (SWIFT_EXTENSION(SendbirdUIKit)) @@ -973,13 +943,13 @@ SWIFT_CLASS_NAMED("List") @end -@interface SBUInviteUserModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +@interface SBUCreateChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) - (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; - (void)tableView:(UITableView * _Nonnull)tableView willDisplayCell:(UITableViewCell * _Nonnull)cell forRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; @end -@interface SBUCreateChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +@interface SBUInviteUserModuleList (SWIFT_EXTENSION(SendbirdUIKit)) - (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; - (void)tableView:(UITableView * _Nonnull)tableView willDisplayCell:(UITableViewCell * _Nonnull)cell forRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; @end @@ -1075,6 +1045,7 @@ SWIFT_CLASS_NAMED("List") + /// A module component that represent the list of SBUOpenChannelListModule. SWIFT_CLASS_NAMED("List") @interface SBUOpenChannelListModuleList : SBUBaseChannelListModuleList @@ -1095,7 +1066,6 @@ SWIFT_CLASS_NAMED("List") - (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; @end - @class SBUParentMessageInfoView; /// A module component that represent the list of SBUMessageThreadModule. @@ -1240,23 +1210,6 @@ SWIFT_CLASS_NAMED("List") @end -/// A module component that represent the list of SBUGroupChannelPushSettingsModule. -SWIFT_CLASS_NAMED("List") -@interface SBUGroupChannelPushSettingsModuleList : UIView -- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface SBUGroupChannelPushSettingsModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (UIView * _Nullable)tableView:(UITableView * _Nonnull)tableView viewForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; -- (CGFloat)tableView:(UITableView * _Nonnull)tableView heightForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; -- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; -- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; -- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; -@end - - @interface List (SWIFT_EXTENSION(SendbirdUIKit)) - (UIView * _Nullable)tableView:(UITableView * _Nonnull)tableView viewForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; - (CGFloat)tableView:(UITableView * _Nonnull)tableView heightForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; @@ -1309,6 +1262,23 @@ SWIFT_CLASS_NAMED("List") - (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; @end + +/// A module component that represent the list of SBUGroupChannelPushSettingsModule. +SWIFT_CLASS_NAMED("List") +@interface SBUGroupChannelPushSettingsModuleList : UIView +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + + +@interface SBUGroupChannelPushSettingsModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (UIView * _Nullable)tableView:(UITableView * _Nonnull)tableView viewForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; +- (CGFloat)tableView:(UITableView * _Nonnull)tableView heightForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +@end + @class UIContextualAction; /// A module component that represent the list of SBUGroupChannelListModule. @@ -1544,9 +1514,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit7SBUView") SWIFT_CLASS("_TtC13SendbirdUIKit27QuotedFileCommonContentView") @interface QuotedFileCommonContentView : SBUView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -1554,9 +1521,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit27QuotedFileCommonContentView") SWIFT_CLASS("_TtC13SendbirdUIKit26QuotedFileImageContentView") @interface QuotedFileImageContentView : SBUView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -2370,13 +2334,28 @@ SWIFT_CLASS("_TtC13SendbirdUIKit26SBUBaseSelectUserViewModel") @end +SWIFT_CLASS("_TtC13SendbirdUIKit15SBUCardListView") +@interface SBUCardListView : SBUView +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC13SendbirdUIKit11SBUCardView") +@interface SBUCardView : SBUView +/// Opens URL with (SBUCardViewParams/link) +/// since: +/// 3.7.0 +- (void)openURL; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +@end + + /// A view contains a channel information such as cover image, channel name and info button. SWIFT_CLASS("_TtC13SendbirdUIKit24SBUChannelInfoHeaderView") @interface SBUChannelInfoHeaderView : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (void)layoutSubviews; - (void)onClickChannelInfo; - (void)onClickChannelMembers; @@ -2391,9 +2370,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit33SBUChannelSettingsChannelInfoView") - (nonnull instancetype)init SWIFT_UNAVAILABLE; + (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); - (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (void)layoutSubviews; @end @@ -2456,9 +2432,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit40SBUChatNotificationChannelViewController") SWIFT_CLASS("_TtC13SendbirdUIKit20SBUCommonContentView") @interface SBUCommonContentView : SBUBaseFileContentView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -2493,12 +2466,12 @@ SWIFT_CLASS("_TtC13SendbirdUIKit9SBUConfig") @end - @interface SBUConfig (SWIFT_EXTENSION(SendbirdUIKit)) @end + @interface SBUConfig (SWIFT_EXTENSION(SendbirdUIKit)) @end @@ -2635,10 +2608,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit17SBUCoverImageView") SWIFT_CLASS("_TtC13SendbirdUIKit28SBUCreateChannelTypeSelector") @interface SBUCreateChannelTypeSelector : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'CreateChannelTypeSelectView.init(delegate:)'"); -- (void)setupViews; -- (void)setupStyles; -- (void)updateStyles; -- (void)setupLayouts; - (void)onClickClose; - (void)onClickCreateGroupChannel; - (void)onClickCreateSuperGroupChannel; @@ -2793,9 +2762,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit12SBUEmptyView") @interface SBUEmptyView : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; /// This function actions when the retry button click. /// \param sender sender /// @@ -3328,6 +3294,14 @@ SWIFT_CLASS("_TtC13SendbirdUIKit29SBUGroupChannelViewController") - (void)groupChannelModule:(SBUGroupChannelModuleList * _Nonnull)listComponent didTapQuotedMessageView:(SBUQuotedBaseMessageView * _Nonnull)quotedMessageView; - (void)groupChannelModule:(SBUGroupChannelModuleList * _Nonnull)listComponent didTapMentionUser:(SBUUser * _Nonnull)user; - (void)groupChannelModuleDidTapThreadInfoView:(SBUThreadInfoView * _Nonnull)threadInfoView; +/// Called when one of the quick reply options is tapped. +/// note: +/// As a default, it sends user message with text by using viewModel +/// since: +/// 3.7.0 +/// \param text The reply text that is selected by user +/// +- (void)groupChannelModule:(SBUGroupChannelModuleList * _Nonnull)listComponent didSelectQuickReplyOption:(NSString * _Nonnull)text; - (void)baseChannelModule:(SBUBaseChannelModuleList * _Nonnull)listComponent didTapVoiceMessage:(SBDFileMessage * _Nonnull)fileMessage cell:(UITableViewCell * _Nonnull)cell forRowAt:(NSIndexPath * _Nonnull)indexPath; - (void)baseChannelModuleDidTapScrollToButton:(SBUBaseChannelModuleList * _Nonnull)listComponent animated:(BOOL)animated; - (void)baseChannelModule:(SBUBaseChannelModuleList * _Nonnull)listComponent didScroll:(UIScrollView * _Nonnull)scrollView; @@ -3421,8 +3395,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUGroupChannelViewModel") SWIFT_CLASS("_TtC13SendbirdUIKit19SBUImageContentView") @interface SBUImageContentView : SBUBaseFileContentView -- (void)setupViews; -- (void)setupLayouts; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -3557,9 +3529,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit26SBUMenuSheetViewController") /// This class used to display the date separator in the message list. SWIFT_CLASS("_TtC13SendbirdUIKit18SBUMessageDateView") @interface SBUMessageDateView : SBUView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -3588,12 +3557,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit19SBUMessageInputView") @interface SBUMessageInputView : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -/// This function handles the initialization of views. -- (void)setupViews; -/// This function handles the initialization of autolayouts. -- (void)setupLayouts; -/// This function handles the initialization of styles. -- (void)setupStyles; - (void)layoutSubviews; - (void)onTapAddButton:(id _Nonnull)sender; - (void)onTapSendButton:(id _Nonnull)sender; @@ -3622,9 +3585,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit21SBUMessageProfileView") @interface SBUMessageProfileView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; @end @class UICollectionViewLayout; @@ -3634,9 +3594,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit22SBUMessageReactionView") @interface SBUMessageReactionView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (void)onTapMoreEmojiWithSender:(UITapGestureRecognizer * _Nonnull)sender; - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView * _Nonnull)collectionView SWIFT_WARN_UNUSED_RESULT; - (NSInteger)collectionView:(UICollectionView * _Nonnull)collectionView numberOfItemsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; @@ -3758,9 +3715,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit30SBUMessageSearchViewController") SWIFT_CLASS("_TtC13SendbirdUIKit19SBUMessageStateView") @interface SBUMessageStateView : SBUView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init SWIFT_UNAVAILABLE; + (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); - (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; @@ -3770,9 +3724,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit19SBUMessageStateView") SWIFT_CLASS("_TtC13SendbirdUIKit25SBUMessageThreadTitleView") @interface SBUMessageThreadTitleView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (void)layoutSubviews; - (void)onTapChannelNameWithSender:(UITapGestureRecognizer * _Nonnull)sender; - (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; @@ -3887,38 +3838,12 @@ SWIFT_CLASS("_TtC13SendbirdUIKit25SBUMessageThreadViewModel") @end -/// The protocol to manage the life cylce of some views. It defines setting views, styles, auto layouts and actions. -/// since: -/// 2.2.0 -SWIFT_PROTOCOL("_TtP13SendbirdUIKit16SBUViewLifeCycle_") -@protocol SBUViewLifeCycle -/// This function handles the initialization of views. -- (void)setupViews; -/// This function handles the initialization of styles. -- (void)setupStyles; -/// This function updates styles. -- (void)updateStyles; -/// This function handles the initialization of autolayouts. -- (void)setupLayouts; -/// This function updates layouts. -- (void)updateLayouts; -/// This function handles the initialization of actions. -- (void)setupActions; -@end - - /// A view shows preview of web link on the message. SWIFT_CLASS("_TtC13SendbirdUIKit17SBUMessageWebView") -@interface SBUMessageWebView : UIStackView +@interface SBUMessageWebView : UIStackView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; - (void)layoutSubviews; -- (void)setupViews; -- (void)setupLayouts; -- (void)updateLayouts; -- (void)setupStyles; -- (void)updateStyles; -- (void)setupActions; @end @class Header; @@ -4001,9 +3926,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit22SBUNavigationTitleView") @interface SBUNavigationTitleView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (void)drawRect:(CGRect)rect; - (void)layoutSubviews; @end @@ -4012,12 +3934,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit22SBUNavigationTitleView") SWIFT_CLASS("_TtC13SendbirdUIKit17SBUNewMessageInfo") @interface SBUNewMessageInfo : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -/// This function handles the initialization of views. -- (void)setupViews; -/// This function handles the initialization of autolayouts. -- (void)setupLayouts; -/// This function handles the initialization of styles. -- (void)setupStyles; - (void)drawRect:(CGRect)rect; - (void)onClickNewMessageInfo; - (nonnull instancetype)init SWIFT_UNAVAILABLE; @@ -4144,8 +4060,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit18SBUOpenChannelCell") SWIFT_CLASS("_TtC13SendbirdUIKit31SBUOpenChannelCommonContentView") @interface SBUOpenChannelCommonContentView : SBUCommonContentView -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -4298,9 +4212,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit27SBUOpenChannelListViewModel") /// A view shows preview of web link on the message in the open channel. SWIFT_CLASS("_TtC13SendbirdUIKit28SBUOpenChannelMessageWebView") @interface SBUOpenChannelMessageWebView : SBUMessageWebView -- (void)setupViews; -- (void)setupStyles; -- (void)setupLayouts; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; @end @@ -4639,7 +4550,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit23SBUOpenChannelViewModel") SWIFT_CLASS("_TtC13SendbirdUIKit32SBUParentMessageInfoReactionView") @interface SBUParentMessageInfoReactionView : SBUMessageReactionView -- (void)setupStyles; - (NSInteger)collectionView:(UICollectionView * _Nonnull)collectionView numberOfItemsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; - (CGSize)collectionView:(UICollectionView * _Nonnull)collectionView layout:(UICollectionViewLayout * _Nonnull)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @@ -4674,22 +4584,31 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUParentMessageInfoView") /// The collection view cell for SBUSelectablePhotoViewController. SWIFT_CLASS("_TtC13SendbirdUIKit26SBUPhotoCollectionViewCell") -@interface SBUPhotoCollectionViewCell : UICollectionViewCell +@interface SBUPhotoCollectionViewCell : UICollectionViewCell - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; - (void)layoutSubviews; -/// This function handles the initialization of views. -- (void)setupViews; -/// This function handles the initialization of auto layouts. -- (void)setupLayouts; -/// This function handles the initialization of styles. -- (void)setupStyles; -/// This function handles the initialization of actions. -- (void)setupActions; -/// This function updates layouts. -- (void)updateLayouts; -/// This function updates styles. -- (void)updateStyles; +@end + + +SWIFT_CLASS("_TtC13SendbirdUIKit23SBUQuickReplyOptionView") +@interface SBUQuickReplyOptionView : SBUView +/// Calls SBUQuickReplyOptionViewDelegate/quickReplyOptionViewDidSelect(_:) +/// note: +/// If text is nil, it won’t invoke the delegate method. +/// since: +/// 3.7.0 +- (void)onSelectOption; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +@end + + +IB_DESIGNABLE +SWIFT_CLASS("_TtC13SendbirdUIKit17SBUQuickReplyView") +@interface SBUQuickReplyView : SBUView +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -4698,10 +4617,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuoteMessageInputView") @interface SBUQuoteMessageInputView : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupActions; -- (void)setupStyles; @end @@ -4710,10 +4625,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuotedBaseMessageView") @interface SBUQuotedBaseMessageView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; -- (void)setupActions; /// The action invokes SBUQuotedMessageViewDelegate didTapQuotedMessageView(_:) method and scrolls to parent message cell. - (void)didTapQuotedMessageViewWithSender:(UITapGestureRecognizer * _Nonnull)sender; @end @@ -4721,8 +4632,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuotedBaseMessageView") SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuotedFileMessageView") @interface SBUQuotedFileMessageView : SBUQuotedBaseMessageView -- (void)setupViews; -- (void)setupLayouts; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -4731,9 +4640,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuotedFileMessageView") SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuotedUserMessageView") @interface SBUQuotedUserMessageView : SBUQuotedBaseMessageView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -4864,9 +4770,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit22SBUSelectableStackView") @interface SBUSelectableStackView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; @end @@ -4881,9 +4784,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit12SBUStackView") SWIFT_CLASS("_TtC13SendbirdUIKit23SBUSuggestedMentionList") @interface SBUSuggestedMentionList : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; /// Override configureCell(_:forRowAt:) to customize cell configuration with user object for each index path. - (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; @@ -4900,7 +4800,7 @@ SWIFT_CLASS("_TtC13SendbirdUIKit23SBUSuggestedMentionList") @end -@interface SBUTableViewCell (SWIFT_EXTENSION(SendbirdUIKit)) +@interface SBUTableViewCell (SWIFT_EXTENSION(SendbirdUIKit)) /// This function handles the initialization of views. /// note: /// It is called from intializer of SBUTableViewCell @@ -4926,10 +4826,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit17SBUThreadInfoView") @interface SBUThreadInfoView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupStyles; -- (void)setupLayouts; -- (void)setupActions; - (void)onTapThreadInfoWithSender:(UITapGestureRecognizer * _Nonnull)sender; @end @@ -4952,12 +4848,33 @@ SWIFT_CLASS("_TtC13SendbirdUIKit18SBUUserMessageCell") @property (nonatomic, readonly, strong) SBUSelectableStackView * _Nonnull additionContainerView; /// A SBUMessageWebView which represents a preview of the web link @property (nonatomic, strong) SBUMessageWebView * _Nonnull webView; +/// The boolean value whether the quickReplyView instance should appear or not. The default is true +/// important: +/// If it’s true, quickReplyView never appears even if the userMessage has quick reply options. +/// since: +/// 3.7.0 +@property (nonatomic, readonly) BOOL shouldHideQuickReply; +/// SBUQuickReplyView instance. +/// since: +/// 3.7.0 +@property (nonatomic, readonly, strong) SBUQuickReplyView * _Nullable quickReplyView; +/// The action of SBUQuickReplyView that is called when a SBUQuickReplyOptionView is selected. +/// since: +/// 3.7.0 +/// \param selectedOptionView The selected SBUQuickReplyOptionView object. +/// +@property (nonatomic, copy) void (^ _Nullable quickReplySelectHandler)(SBUQuickReplyOptionView * _Nonnull); +/// SBUCardListView instance. +/// since: +/// 3.7.0 +@property (nonatomic, readonly, strong) SBUCardListView * _Nullable cardListView; - (void)setupViews; - (void)setupLayouts; - (void)setupActions; - (void)setupStyles; - (void)setSelected:(BOOL)selected animated:(BOOL)animated; - (void)onTapWebviewWithSender:(UITapGestureRecognizer * _Nonnull)sender; +- (void)updateQuickReplyViewWith:(NSArray * _Nonnull)options; /// As a default, it calls groupChannelModule(_:didTapMentionUser:) in SBUGroupChannelModuleListDelegate. - (void)userMessageTextView:(SBUUserMessageTextView * _Nonnull)textView didTapMention:(SBUUser * _Nonnull)user; - (nonnull instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString * _Nullable)reuseIdentifier OBJC_DESIGNATED_INITIALIZER; @@ -5134,18 +5051,18 @@ SWIFT_CLASS("_TtC13SendbirdUIKit20SBUUserListViewModel") @end -@interface SBUUserListViewModel (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)channel:(SBDOpenChannel * _Nonnull)channel userDidExit:(SBDUser * _Nonnull)user; -- (void)channel:(SBDOpenChannel * _Nonnull)channel userDidEnter:(SBDUser * _Nonnull)user; -@end - - @interface SBUUserListViewModel (SWIFT_EXTENSION(SendbirdUIKit)) - (void)channel:(SBDGroupChannel * _Nonnull)channel userDidJoin:(SBDUser * _Nonnull)user; - (void)channel:(SBDGroupChannel * _Nonnull)channel userDidLeave:(SBDUser * _Nonnull)user; @end +@interface SBUUserListViewModel (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)channel:(SBDOpenChannel * _Nonnull)channel userDidExit:(SBDUser * _Nonnull)user; +- (void)channel:(SBDOpenChannel * _Nonnull)channel userDidEnter:(SBDUser * _Nonnull)user; +@end + + @interface SBUUserListViewModel (SWIFT_EXTENSION(SendbirdUIKit)) - (void)channel:(SBDBaseChannel * _Nonnull)channel userWasMuted:(SBDRestrictedUser * _Nonnull)user; - (void)channel:(SBDBaseChannel * _Nonnull)channel userWasUnmuted:(SBDUser * _Nonnull)user; @@ -5157,13 +5074,15 @@ SWIFT_CLASS("_TtC13SendbirdUIKit20SBUUserListViewModel") +@interface SBUUserMessageCell (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)quickReplyView:(SBUQuickReplyView * _Nonnull)view didSelectOption:(SBUQuickReplyOptionView * _Nonnull)optionView; +@end + + SWIFT_CLASS("_TtC13SendbirdUIKit22SBUUserMessageTextView") @interface SBUUserMessageTextView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; @end @@ -5176,33 +5095,14 @@ SWIFT_CLASS("_TtC13SendbirdUIKit15SBUUserNameView") @interface SBUUserNameView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)updateLayouts; -- (void)setupStyles; -- (void)updateStyles; @end -@interface SBUView (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)setupViews; -- (void)setupLayouts; -- (void)updateLayouts; -- (void)setupStyles; -- (void)updateStyles; -- (void)setupActions; -@end - - - /// The SBUBaseFileContentView that displays the voice message SWIFT_CLASS("_TtC13SendbirdUIKit19SBUVoiceContentView") @interface SBUVoiceContentView : SBUBaseFileContentView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -5220,14 +5120,8 @@ SWIFT_CLASS("_TtC13SendbirdUIKit16SBUVoiceFileInfo") /// since: /// 3.4.0 SWIFT_CLASS("_TtC13SendbirdUIKit24SBUVoiceMessageInputView") -@interface SBUVoiceMessageInputView : NSObject +@interface SBUVoiceMessageInputView : NSObject - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)updateLayouts; -- (void)setupStyles; -- (void)updateStyles; -- (void)setupActions; @end @@ -5299,6 +5193,7 @@ SWIFT_CLASS("_TtC13SendbirdUIKit16SBUVoiceRecorder") + #endif #if defined(__cplusplus) #endif diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Info.plist b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Info.plist index e5b57975f..68d783f0a 100644 Binary files a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Info.plist and b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Info.plist differ diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.abi.json b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.abi.json index 22c8e381d..537f99dd3 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.abi.json +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.abi.json @@ -2972,15 +2972,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileCommonContentView(im)setupViews", + "usr": "s:13SendbirdUIKit27QuotedFileCommonContentViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit27QuotedFileCommonContentViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -2999,15 +2996,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileCommonContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit27QuotedFileCommonContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit27QuotedFileCommonContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -3026,15 +3020,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileCommonContentView(im)setupStyles", + "usr": "s:13SendbirdUIKit27QuotedFileCommonContentViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit27QuotedFileCommonContentViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -3270,6 +3261,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -3332,13 +3330,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -5813,7 +5804,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -6135,7 +6126,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -6174,15 +6165,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUParentMessageInfoReactionView(im)setupStyles", + "usr": "s:13SendbirdUIKit32SBUParentMessageInfoReactionViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit32SBUParentMessageInfoReactionViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -6435,6 +6423,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -6497,13 +6492,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -12002,15 +11990,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageDateView(im)setupViews", + "usr": "s:13SendbirdUIKit18SBUMessageDateViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit18SBUMessageDateViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -12029,15 +12014,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageDateView(im)setupLayouts", + "usr": "s:13SendbirdUIKit18SBUMessageDateViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit18SBUMessageDateViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -12056,15 +12038,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageDateView(im)setupStyles", + "usr": "s:13SendbirdUIKit18SBUMessageDateViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit18SBUMessageDateViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -12180,6 +12159,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -12242,13 +12228,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -13038,18 +13017,15 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)setupViews", + "usr": "s:13SendbirdUIKit7SBUViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { @@ -13064,18 +13040,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)setupLayouts", + "usr": "s:13SendbirdUIKit7SBUViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { @@ -13090,18 +13062,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)updateLayouts", + "usr": "s:13SendbirdUIKit7SBUViewC13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { @@ -13116,18 +13084,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)setupStyles", + "usr": "s:13SendbirdUIKit7SBUViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { @@ -13142,18 +13106,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)updateStyles", + "usr": "s:13SendbirdUIKit7SBUViewC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC12updateStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { @@ -13168,18 +13128,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)setupActions", + "usr": "s:13SendbirdUIKit7SBUViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" } ], @@ -13207,7 +13163,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -13457,9 +13413,9 @@ "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC9emojiListSay0A7ChatSDK5EmojiCGvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -13568,9 +13524,9 @@ "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC9reactionsSay0A7ChatSDK0D0CGvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -13671,9 +13627,9 @@ "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC8maxWidth12CoreGraphics7CGFloatVvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -13851,9 +13807,9 @@ "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC010collectionE16HeightConstraintSo08NSLayoutH0CSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "SetterAccess", "AccessControl" ], @@ -13913,9 +13869,9 @@ "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC010collectionE17MinWidthContraintSo18NSLayoutConstraintCSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "SetterAccess", "AccessControl" ], @@ -14072,15 +14028,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageReactionView(im)setupViews", + "usr": "s:13SendbirdUIKit22SBUMessageReactionViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -14099,15 +14052,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageReactionView(im)setupLayouts", + "usr": "s:13SendbirdUIKit22SBUMessageReactionViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -14126,15 +14076,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageReactionView(im)setupStyles", + "usr": "s:13SendbirdUIKit22SBUMessageReactionViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -14484,6 +14431,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -14546,13 +14500,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -16326,8 +16273,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -16445,8 +16392,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -16564,8 +16511,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -18214,8 +18161,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -18317,8 +18264,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -18436,8 +18383,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -19917,8 +19864,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -20036,8 +19983,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -20155,8 +20102,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -21752,14 +21699,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelSettingsChannelInfoView(im)setupViews", + "usr": "s:13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -21778,14 +21722,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelSettingsChannelInfoView(im)setupLayouts", + "usr": "s:13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -21804,14 +21745,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelSettingsChannelInfoView(im)setupStyles", + "usr": "s:13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -21900,6 +21838,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -21962,13 +21907,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -25595,7 +25533,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -26823,15 +26761,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUEmptyView(im)setupViews", + "usr": "s:13SendbirdUIKit12SBUEmptyViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit12SBUEmptyViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -26850,15 +26785,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUEmptyView(im)setupLayouts", + "usr": "s:13SendbirdUIKit12SBUEmptyViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit12SBUEmptyViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -26905,15 +26837,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUEmptyView(im)setupStyles", + "usr": "s:13SendbirdUIKit12SBUEmptyViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit12SBUEmptyViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -27020,6 +26949,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -27082,13 +27018,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -33793,15 +33722,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelInfoHeaderView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUChannelInfoHeaderViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUChannelInfoHeaderViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -33820,15 +33746,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelInfoHeaderView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUChannelInfoHeaderViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUChannelInfoHeaderViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -33847,15 +33770,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelInfoHeaderView(im)setupStyles", + "usr": "s:13SendbirdUIKit24SBUChannelInfoHeaderViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUChannelInfoHeaderViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -34096,6 +34016,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -34158,13 +34085,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -35443,15 +35363,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCommonContentView(im)setupViews", + "usr": "s:13SendbirdUIKit20SBUCommonContentViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit20SBUCommonContentViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -35470,15 +35387,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCommonContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit20SBUCommonContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit20SBUCommonContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -35497,15 +35411,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCommonContentView(im)setupStyles", + "usr": "s:13SendbirdUIKit20SBUCommonContentViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit20SBUCommonContentViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -35680,6 +35591,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -35742,13 +35660,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -35764,29 +35675,312 @@ }, { "kind": "TypeDecl", - "name": "SBUColorSet", - "printedName": "SBUColorSet", + "name": "SBUCardView", + "printedName": "SBUCardView", "children": [ + { + "kind": "TypeDecl", + "name": "Metric", + "printedName": "Metric", + "children": [ + { + "kind": "Var", + "name": "maxWidth", + "printedName": "maxWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvpZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvpZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvgZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvsZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvMZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textMinWidth", + "printedName": "textMinWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvpZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvpZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvgZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvsZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvMZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageSize", + "printedName": "imageSize", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvpZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvpZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvgZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvsZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvMZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl" + ] + }, { "kind": "Var", - "name": "primary100", - "printedName": "primary100", + "name": "theme", + "printedName": "theme", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -35800,20 +35994,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -35828,20 +36018,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -35856,42 +36042,43 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "primary200", - "printedName": "primary200", + "name": "imageURL", + "printedName": "imageURL", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC8imageURLSSSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC8imageURLSSSgvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "Custom", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -35900,98 +36087,172 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC8imageURLSSSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC8imageURLSSSgvg", "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "title", + "printedName": "title", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC5titleSSSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5titleSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC5titleSSSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5titleSSSgvg", "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "subtitle", + "printedName": "subtitle", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } ], - "accessorKind": "set" - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC8subtitleSSSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC8subtitleSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC8subtitleSSSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC8subtitleSSSgvg", "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "primary300", - "printedName": "primary300", + "name": "text", + "printedName": "text", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC4textSSSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC4textSSSgvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "Custom", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -36000,96 +36261,170 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC4textSSSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC4textSSSgvg", "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "link", + "printedName": "link", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC4linkSSSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC4linkSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC4linkSSSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC4linkSSSgvg", "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "params", + "printedName": "params", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } ], - "accessorKind": "set" - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC6paramsAA0cD6ParamsVSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6paramsAA0cD6ParamsVSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC6paramsAA0cD6ParamsVSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6paramsAA0cD6ParamsVSgvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "primary400", - "printedName": "primary400", + "name": "contentStackView", + "printedName": "contentStackView", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -36100,20 +36435,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36128,20 +36459,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36156,40 +36483,36 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0CvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0CvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "primary500", - "printedName": "primary500", + "name": "mainInfoStackView", + "printedName": "mainInfoStackView", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -36200,20 +36523,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36228,20 +36547,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36256,38 +36571,33 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0CvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0CvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondary100", - "printedName": "secondary100", + "name": "titleStackView", + "printedName": "titleStackView", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -36301,20 +36611,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36329,20 +36635,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36357,40 +36659,36 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0CvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0CvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondary200", - "printedName": "secondary200", + "name": "titleLabel", + "printedName": "titleLabel", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -36401,20 +36699,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36429,20 +36723,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36457,40 +36747,36 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondary300", - "printedName": "secondary300", + "name": "subtitleLabel", + "printedName": "subtitleLabel", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -36501,20 +36787,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36529,20 +36811,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36557,42 +36835,36 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondary400", - "printedName": "secondary400", + "name": "imageView", + "printedName": "imageView", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "Custom", + "Lazy", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -36601,20 +36873,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36629,20 +36897,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36657,40 +36921,36 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0CvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0CvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondary500", - "printedName": "secondary500", + "name": "descriptionTextView", + "printedName": "descriptionTextView", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UITextView", + "printedName": "UIKit.UITextView", + "usr": "c:objc(cs)UITextView" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -36701,20 +36961,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UITextView", + "printedName": "UIKit.UITextView", + "usr": "c:objc(cs)UITextView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36729,20 +36985,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UITextView", + "printedName": "UIKit.UITextView", + "usr": "c:objc(cs)UITextView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36757,41 +37009,43 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0CvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0CvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "background50", - "printedName": "background50", + "name": "textLeftConstraint", + "printedName": "textLeftConstraint", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -36802,20 +37056,24 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36830,20 +37088,24 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36858,38 +37120,41 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "background100", - "printedName": "background100", + "name": "textRightConstraint", + "printedName": "textRightConstraint", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", "AccessControl" ], @@ -36902,20 +37167,24 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36930,20 +37199,24 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36958,22 +37231,327 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, + { + "kind": "Function", + "name": "setupViews", + "printedName": "setupViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit11SBUCardViewC10setupViewsyyF", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC10setupViewsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupLayouts", + "printedName": "setupLayouts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit11SBUCardViewC12setupLayoutsyyF", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC12setupLayoutsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupStyles", + "printedName": "setupStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit11SBUCardViewC11setupStylesyyF", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC11setupStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupActions", + "printedName": "setupActions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit11SBUCardViewC12setupActionsyyF", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC12setupActionsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit11SBUCardViewC9configure4withyAA0cD6ParamsV_tF", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC9configure4withyAA0cD6ParamsV_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "openURL", + "printedName": "openURL()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView(im)openURL", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC7openURLyyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardView", + "printedName": "SendbirdUIKit.SBUCardView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView(im)init", + "mangledName": "$s13SendbirdUIKit11SBUCardViewCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardView", + "printedName": "SendbirdUIKit.SBUCardView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView(im)initWithFrame:", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5frameACSo6CGRectV_tcfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:@M@SendbirdUIKit@objc(cs)SBUView", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "SendbirdUIKit.SBUView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUColorSet", + "printedName": "SBUColorSet", + "children": [ { "kind": "Var", - "name": "background200", - "printedName": "background200", + "name": "primary100", + "printedName": "primary100", "children": [ { "kind": "TypeNominal", @@ -36983,15 +37561,16 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -37008,8 +37587,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37036,8 +37615,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37058,8 +37637,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37072,8 +37651,8 @@ }, { "kind": "Var", - "name": "background300", - "printedName": "background300", + "name": "primary200", + "printedName": "primary200", "children": [ { "kind": "TypeNominal", @@ -37083,8 +37662,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37108,8 +37687,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37136,8 +37715,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37158,8 +37737,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37172,8 +37751,8 @@ }, { "kind": "Var", - "name": "background400", - "printedName": "background400", + "name": "primary300", + "printedName": "primary300", "children": [ { "kind": "TypeNominal", @@ -37183,8 +37762,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37208,8 +37787,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37236,8 +37815,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37258,8 +37837,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37272,8 +37851,8 @@ }, { "kind": "Var", - "name": "background500", - "printedName": "background500", + "name": "primary400", + "printedName": "primary400", "children": [ { "kind": "TypeNominal", @@ -37283,8 +37862,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37308,8 +37887,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37336,8 +37915,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37358,8 +37937,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37372,8 +37951,8 @@ }, { "kind": "Var", - "name": "background600", - "printedName": "background600", + "name": "primary500", + "printedName": "primary500", "children": [ { "kind": "TypeNominal", @@ -37383,8 +37962,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37408,8 +37987,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37436,8 +38015,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37458,8 +38037,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37472,8 +38051,8 @@ }, { "kind": "Var", - "name": "background700", - "printedName": "background700", + "name": "secondary100", + "printedName": "secondary100", "children": [ { "kind": "TypeNominal", @@ -37483,15 +38062,16 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -37508,8 +38088,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37536,8 +38116,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37558,8 +38138,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37572,8 +38152,8 @@ }, { "kind": "Var", - "name": "overlay01", - "printedName": "overlay01", + "name": "secondary200", + "printedName": "secondary200", "children": [ { "kind": "TypeNominal", @@ -37583,16 +38163,15 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -37609,8 +38188,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37637,8 +38216,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37659,8 +38238,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37673,8 +38252,8 @@ }, { "kind": "Var", - "name": "overlay02", - "printedName": "overlay02", + "name": "secondary300", + "printedName": "secondary300", "children": [ { "kind": "TypeNominal", @@ -37684,8 +38263,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37709,8 +38288,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37737,8 +38316,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37759,8 +38338,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37773,8 +38352,8 @@ }, { "kind": "Var", - "name": "onlight01", - "printedName": "onlight01", + "name": "secondary400", + "printedName": "secondary400", "children": [ { "kind": "TypeNominal", @@ -37784,16 +38363,15 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -37810,8 +38388,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37838,8 +38416,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37860,8 +38438,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37874,8 +38452,8 @@ }, { "kind": "Var", - "name": "onlight02", - "printedName": "onlight02", + "name": "secondary500", + "printedName": "secondary500", "children": [ { "kind": "TypeNominal", @@ -37885,8 +38463,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37910,8 +38488,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37938,8 +38516,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37960,8 +38538,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37974,8 +38552,8 @@ }, { "kind": "Var", - "name": "onlight03", - "printedName": "onlight03", + "name": "background50", + "printedName": "background50", "children": [ { "kind": "TypeNominal", @@ -37985,15 +38563,16 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -38010,8 +38589,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38038,8 +38617,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38060,8 +38639,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38074,8 +38653,8 @@ }, { "kind": "Var", - "name": "onlight04", - "printedName": "onlight04", + "name": "background100", + "printedName": "background100", "children": [ { "kind": "TypeNominal", @@ -38085,8 +38664,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38110,109 +38689,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvgZ", - "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvsZ", - "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvMZ", - "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "ondark01", - "printedName": "ondark01", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvpZ", - "moduleName": "SendbirdUIKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38239,8 +38717,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38261,8 +38739,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38275,8 +38753,8 @@ }, { "kind": "Var", - "name": "ondark02", - "printedName": "ondark02", + "name": "background200", + "printedName": "background200", "children": [ { "kind": "TypeNominal", @@ -38286,8 +38764,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38311,8 +38789,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38339,8 +38817,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38361,8 +38839,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38375,8 +38853,8 @@ }, { "kind": "Var", - "name": "ondark03", - "printedName": "ondark03", + "name": "background300", + "printedName": "background300", "children": [ { "kind": "TypeNominal", @@ -38386,8 +38864,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38411,8 +38889,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38439,8 +38917,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38461,8 +38939,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38475,8 +38953,8 @@ }, { "kind": "Var", - "name": "ondark04", - "printedName": "ondark04", + "name": "background400", + "printedName": "background400", "children": [ { "kind": "TypeNominal", @@ -38486,8 +38964,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38511,8 +38989,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38539,8 +39017,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38561,8 +39039,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38575,8 +39053,8 @@ }, { "kind": "Var", - "name": "error100", - "printedName": "error100", + "name": "background500", + "printedName": "background500", "children": [ { "kind": "TypeNominal", @@ -38586,16 +39064,15 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -38612,8 +39089,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38640,8 +39117,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38662,8 +39139,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38676,8 +39153,8 @@ }, { "kind": "Var", - "name": "error200", - "printedName": "error200", + "name": "background600", + "printedName": "background600", "children": [ { "kind": "TypeNominal", @@ -38687,8 +39164,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38712,8 +39189,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38740,8 +39217,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38762,8 +39239,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38776,8 +39253,8 @@ }, { "kind": "Var", - "name": "error300", - "printedName": "error300", + "name": "background700", + "printedName": "background700", "children": [ { "kind": "TypeNominal", @@ -38787,8 +39264,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38812,8 +39289,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38840,8 +39317,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38862,8 +39339,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38876,8 +39353,8 @@ }, { "kind": "Var", - "name": "error400", - "printedName": "error400", + "name": "overlay01", + "printedName": "overlay01", "children": [ { "kind": "TypeNominal", @@ -38887,15 +39364,16 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -38912,8 +39390,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38940,8 +39418,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38962,8 +39440,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38976,8 +39454,8 @@ }, { "kind": "Var", - "name": "error500", - "printedName": "error500", + "name": "overlay02", + "printedName": "overlay02", "children": [ { "kind": "TypeNominal", @@ -38987,8 +39465,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -39012,8 +39490,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39040,8 +39518,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39062,8 +39540,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39076,8 +39554,8 @@ }, { "kind": "Var", - "name": "information", - "printedName": "information", + "name": "onlight01", + "printedName": "onlight01", "children": [ { "kind": "TypeNominal", @@ -39087,8 +39565,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -39113,8 +39591,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39141,8 +39619,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39163,8 +39641,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39177,8 +39655,8 @@ }, { "kind": "Var", - "name": "highlight", - "printedName": "highlight", + "name": "onlight02", + "printedName": "onlight02", "children": [ { "kind": "TypeNominal", @@ -39188,16 +39666,15 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -39214,8 +39691,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39242,8 +39719,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39264,8 +39741,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39275,84 +39752,29 @@ "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "s:13SendbirdUIKit11SBUColorSetC", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SendbirdChatSDK", - "printedName": "SendbirdChatSDK", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "Import", - "name": "PhotosUI", - "printedName": "PhotosUI", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "Import", - "name": "MobileCoreServices", - "printedName": "MobileCoreServices", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "TypeDecl", - "name": "SBUCreateOpenChannelViewController", - "printedName": "SBUCreateOpenChannelViewController", - "children": [ + }, { "kind": "Var", - "name": "headerComponent", - "printedName": "headerComponent", + "name": "onlight03", + "printedName": "onlight03", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", - "children": [ - { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)headerComponent", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvp", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ "HasInitialValue", - "Custom", + "Final", "HasStorage", - "AccessControl", - "RawDocComment", - "ObjC" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -39363,26 +39785,19 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", - "children": [ - { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)headerComponent", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvg", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvgZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" }, @@ -39398,26 +39813,19 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", - "children": [ - { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setHeaderComponent:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvs", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvsZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "set" }, @@ -39433,44 +39841,40 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvM", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvM", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvMZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "profileInputComponent", - "printedName": "profileInputComponent", + "name": "onlight04", + "printedName": "onlight04", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProfileInput", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)profileInputComponent", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvp", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ "HasInitialValue", - "Custom", + "Final", "HasStorage", - "AccessControl", - "ObjC" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -39481,26 +39885,19 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProfileInput", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)profileInputComponent", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvg", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvgZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" }, @@ -39516,26 +39913,19 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProfileInput", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setProfileInputComponent:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvs", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvsZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "set" }, @@ -39551,36 +39941,43 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvM", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvM", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvMZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "theme", - "printedName": "theme", + "name": "ondark01", + "printedName": "ondark01", "children": [ { "kind": "TypeNominal", - "name": "SBUCreateOpenChannelTheme", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", - "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvp", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvp", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ - "Custom", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", - "Custom", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -39589,16 +39986,20 @@ "children": [ { "kind": "TypeNominal", - "name": "SBUCreateOpenChannelTheme", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", - "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvg", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvg", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvgZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -39613,16 +40014,20 @@ }, { "kind": "TypeNominal", - "name": "SBUCreateOpenChannelTheme", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", - "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvs", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvs", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvsZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -39637,44 +40042,40 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvM", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvM", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvMZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "viewModel", - "printedName": "viewModel", + "name": "ondark02", + "printedName": "ondark02", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUCreateOpenChannelViewModel", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", - "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvp", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvp", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ "HasInitialValue", - "Custom", + "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -39685,24 +40086,20 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUCreateOpenChannelViewModel", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", - "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvg", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvg", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvgZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -39717,24 +40114,20 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUCreateOpenChannelViewModel", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", - "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvs", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvs", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvsZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -39749,127 +40142,142 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvM", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvM", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvMZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUCreateOpenChannelViewController", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewController", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController" - } - ], - "declKind": "Constructor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)init", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerCACycfc", - "moduleName": "SendbirdUIKit", - "overriding": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "viewDidLoad", - "printedName": "viewDidLoad()", + "kind": "Var", + "name": "ondark03", + "printedName": "ondark03", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)viewDidLoad", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC11viewDidLoadyyF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "viewDidLoad", + "static": true, "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "viewWillAppear", - "printedName": "viewWillAppear(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)viewWillAppear:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC14viewWillAppearyySbF", - "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "viewWillAppear:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "preferredStatusBarStyle", - "printedName": "preferredStatusBarStyle", + "name": "ondark04", + "printedName": "ondark04", "children": [ { "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)preferredStatusBarStyle", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC23preferredStatusBarStyleSo08UIStatusjK0Vvp", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarStyle", + "static": true, "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -39878,730 +40286,2103 @@ "children": [ { "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)preferredStatusBarStyle", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC23preferredStatusBarStyleSo08UIStatusjK0Vvg", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvgZ", "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarStyle", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "Final" ], "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "createViewModel", - "printedName": "createViewModel()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createViewModel", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createF5ModelyyF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "setupViews", - "printedName": "setupViews()", + "kind": "Var", + "name": "error100", + "printedName": "error100", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupViews", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC10setupViewsyyF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "setupViews", + "static": true, "declAttributes": [ - "ObjC", - "Custom", - "Override", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setupLayouts", - "printedName": "setupLayouts()", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupLayouts", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12setupLayoutsyyF", - "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "setupLayouts", - "declAttributes": [ - "ObjC", - "Custom", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setupStyles", - "printedName": "setupStyles()", - "children": [ + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupStyles", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC11setupStylesyyF", - "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "setupStyles", - "declAttributes": [ - "ObjC", - "Custom", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateStyles", - "printedName": "updateStyles()", - "children": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)updateStyles", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12updateStylesyyF", - "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "updateStyles", - "declAttributes": [ - "ObjC", - "Custom", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "createChannel", - "printedName": "createChannel()", + "kind": "Var", + "name": "error200", + "printedName": "error200", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createChannel", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createE0yyF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createChannel", - "printedName": "createChannel(channelName:coverImage:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createChannelWithChannelName:coverImage:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createE011channelName10coverImageySS_So7UIImageCSgtF", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "selectChannelImage", - "printedName": "selectChannelImage(needRemoveItem:)", + "kind": "Var", + "name": "error300", + "printedName": "error300", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)selectChannelImageWithNeedRemoveItem:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06selectE5Image14needRemoveItemySb_tF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "showChannelImagePicker", - "printedName": "showChannelImagePicker(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "MediaResourceType", - "printedName": "SendbirdUIKit.MediaResourceType", - "usr": "c:@M@SendbirdUIKit@E@MediaResourceType" - } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showChannelImagePickerWith:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC04showE11ImagePicker4withyAA17MediaResourceTypeO_tF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "showCamera", - "printedName": "showCamera()", - "children": [ + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showCamera", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC10showCamerayyF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "showPhotoLibraryPicker", - "printedName": "showPhotoLibraryPicker()", + "kind": "Var", + "name": "error400", + "printedName": "error400", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showPhotoLibraryPicker", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC22showPhotoLibraryPickeryyF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "isOpen": true, + "static": true, "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "showLimitedPhotoLibraryPicker", - "printedName": "showLimitedPhotoLibraryPicker()", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showLimitedPhotoLibraryPicker", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC29showLimitedPhotoLibraryPickeryyF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "showPermissionAlert", - "printedName": "showPermissionAlert(forType:)", + "kind": "Var", + "name": "error500", + "printedName": "error500", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "PermissionType", - "printedName": "SendbirdUIKit.SBUPermissionManager.PermissionType", - "hasDefaultArg": true, - "usr": "s:13SendbirdUIKit20SBUPermissionManagerC14PermissionTypeO" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC19showPermissionAlert7forTypeyAA20SBUPermissionManagerC0iL0O_tF", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC19showPermissionAlert7forTypeyAA20SBUPermissionManagerC0iL0O_tF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "isOpen": true, + "static": true, "declAttributes": [ - "Custom", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "touchesBegan", - "printedName": "touchesBegan(_:with:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", + "kind": "Accessor", "name": "Set", - "printedName": "Swift.Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UITouch", - "printedName": "UIKit.UITouch", - "usr": "c:objc(cs)UITouch" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "usr": "s:Sh" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIEvent?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UIEvent", - "printedName": "UIKit.UIEvent", - "usr": "c:objc(cs)UIEvent" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "information", + "printedName": "information", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)touchesBegan:withEvent:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12touchesBegan_4withyShySo7UITouchCG_So7UIEventCSgtF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "touchesBegan:withEvent:", + "static": true, "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dismissAndMoveToChannel", - "printedName": "dismissAndMoveToChannel(_:messageListParams:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "BaseChannel", - "printedName": "SendbirdChatSDK.BaseChannel", - "usr": "c:@M@SendbirdChatSDK@objc(cs)SBDBaseChannel" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdChatSDK.MessageListParams?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "MessageListParams", - "printedName": "SendbirdChatSDK.MessageListParams", - "usr": "c:@M@SendbirdChatSDK@objc(cs)SBDMessageListParams" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "highlight", + "printedName": "highlight", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)dismissAndMoveToChannel:messageListParams:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC016dismissAndMoveToE0_17messageListParamsy0A7ChatSDK04BaseE0C_AF07MessagemN0CSgtF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "isOpen": true, + "static": true, "declAttributes": [ - "Custom", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", - "RawDocComment", - "ObjC" + "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "errorHandler", - "printedName": "errorHandler(_:_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12errorHandleryySSSg_SiSgtF", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12errorHandleryySSSg_SiSgtF", - "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "declAttributes": [ - "Custom", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, + ] + } + ], + "declKind": "Class", + "usr": "s:13SendbirdUIKit11SBUColorSetC", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "Import", + "name": "PhotosUI", + "printedName": "PhotosUI", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "Import", + "name": "MobileCoreServices", + "printedName": "MobileCoreServices", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "TypeDecl", + "name": "SBUCreateOpenChannelViewController", + "printedName": "SBUCreateOpenChannelViewController", + "children": [ { - "kind": "Function", - "name": "createOpenChannelModule", - "printedName": "createOpenChannelModule(_:didUpdateTitleView:)", + "kind": "Var", + "name": "headerComponent", + "printedName": "headerComponent", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIView?", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", "children": [ { "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateTitleView:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_014didUpdateTitleF0yAA0cdeI0C6HeaderC_So6UIViewCSgtF", + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)headerComponent", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvp", "moduleName": "SendbirdUIKit", - "isOpen": true, "declAttributes": [ + "HasInitialValue", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createOpenChannelModule", - "printedName": "createOpenChannelModule(_:didUpdateLeftItem:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", + "children": [ + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)headerComponent", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", + "children": [ + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setHeaderComponent:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIBarButtonItem?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvM", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateLeftItem:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_17didUpdateLeftItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CSgtF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "createOpenChannelModule", - "printedName": "createOpenChannelModule(_:didUpdateRightItem:)", + "kind": "Var", + "name": "profileInputComponent", + "printedName": "profileInputComponent", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIBarButtonItem?", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "ProfileInput", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateRightItem:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_18didUpdateRightItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CSgtF", + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)profileInputComponent", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvp", "moduleName": "SendbirdUIKit", - "isOpen": true, "declAttributes": [ + "HasInitialValue", "Custom", + "HasStorage", "AccessControl", "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createOpenChannelModule", - "printedName": "createOpenChannelModule(_:didTapLeftItem:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileInput", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)profileInputComponent", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileInput", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setProfileInputComponent:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvM", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "theme", + "printedName": "theme", + "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "SBUCreateOpenChannelTheme", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", + "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didTapLeftItem:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_14didTapLeftItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CtF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvp", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvp", "moduleName": "SendbirdUIKit", - "isOpen": true, "declAttributes": [ "Custom", "AccessControl", - "ObjC" + "Custom", + "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createOpenChannelModule", - "printedName": "createOpenChannelModule(_:didTapRightItem:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelTheme", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", + "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvg", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelTheme", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", + "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvs", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvM", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "viewModel", + "printedName": "viewModel", + "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelViewModel", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", + "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didTapRightItem:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_15didTapRightItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CtF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvp", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvp", "moduleName": "SendbirdUIKit", - "isOpen": true, "declAttributes": [ + "HasInitialValue", "Custom", + "HasStorage", "AccessControl", - "ObjC" + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelViewModel", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", + "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvg", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelViewModel", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", + "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvs", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvM", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelViewController", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewController", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)init", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "AccessControl", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "viewDidLoad", + "printedName": "viewDidLoad()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)viewDidLoad", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC11viewDidLoadyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "viewDidLoad", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewWillAppear", + "printedName": "viewWillAppear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)viewWillAppear:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC14viewWillAppearyySbF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "viewWillAppear:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "preferredStatusBarStyle", + "printedName": "preferredStatusBarStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStatusBarStyle", + "printedName": "UIKit.UIStatusBarStyle", + "usr": "c:@E@UIStatusBarStyle" + } + ], + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)preferredStatusBarStyle", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC23preferredStatusBarStyleSo08UIStatusjK0Vvp", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "preferredStatusBarStyle", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStatusBarStyle", + "printedName": "UIKit.UIStatusBarStyle", + "usr": "c:@E@UIStatusBarStyle" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)preferredStatusBarStyle", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC23preferredStatusBarStyleSo08UIStatusjK0Vvg", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "preferredStatusBarStyle", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createViewModel", + "printedName": "createViewModel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createViewModel", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createF5ModelyyF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupViews", + "printedName": "setupViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupViews", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC10setupViewsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "setupViews", + "declAttributes": [ + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupLayouts", + "printedName": "setupLayouts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupLayouts", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12setupLayoutsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "setupLayouts", + "declAttributes": [ + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupStyles", + "printedName": "setupStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupStyles", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC11setupStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "setupStyles", + "declAttributes": [ + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateStyles", + "printedName": "updateStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)updateStyles", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12updateStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "updateStyles", + "declAttributes": [ + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChannel", + "printedName": "createChannel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createChannel", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createE0yyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChannel", + "printedName": "createChannel(channelName:coverImage:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createChannelWithChannelName:coverImage:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createE011channelName10coverImageySS_So7UIImageCSgtF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "selectChannelImage", + "printedName": "selectChannelImage(needRemoveItem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)selectChannelImageWithNeedRemoveItem:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06selectE5Image14needRemoveItemySb_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showChannelImagePicker", + "printedName": "showChannelImagePicker(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaResourceType", + "printedName": "SendbirdUIKit.MediaResourceType", + "usr": "c:@M@SendbirdUIKit@E@MediaResourceType" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showChannelImagePickerWith:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC04showE11ImagePicker4withyAA17MediaResourceTypeO_tF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showCamera", + "printedName": "showCamera()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showCamera", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC10showCamerayyF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showPhotoLibraryPicker", + "printedName": "showPhotoLibraryPicker()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showPhotoLibraryPicker", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC22showPhotoLibraryPickeryyF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showLimitedPhotoLibraryPicker", + "printedName": "showLimitedPhotoLibraryPicker()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showLimitedPhotoLibraryPicker", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC29showLimitedPhotoLibraryPickeryyF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showPermissionAlert", + "printedName": "showPermissionAlert(forType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PermissionType", + "printedName": "SendbirdUIKit.SBUPermissionManager.PermissionType", + "hasDefaultArg": true, + "usr": "s:13SendbirdUIKit20SBUPermissionManagerC14PermissionTypeO" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC19showPermissionAlert7forTypeyAA20SBUPermissionManagerC0iL0O_tF", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC19showPermissionAlert7forTypeyAA20SBUPermissionManagerC0iL0O_tF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "touchesBegan", + "printedName": "touchesBegan(_:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "UITouch", + "printedName": "UIKit.UITouch", + "usr": "c:objc(cs)UITouch" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIEvent", + "printedName": "UIKit.UIEvent", + "usr": "c:objc(cs)UIEvent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)touchesBegan:withEvent:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12touchesBegan_4withyShySo7UITouchCG_So7UIEventCSgtF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "touchesBegan:withEvent:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dismissAndMoveToChannel", + "printedName": "dismissAndMoveToChannel(_:messageListParams:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BaseChannel", + "printedName": "SendbirdChatSDK.BaseChannel", + "usr": "c:@M@SendbirdChatSDK@objc(cs)SBDBaseChannel" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdChatSDK.MessageListParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageListParams", + "printedName": "SendbirdChatSDK.MessageListParams", + "usr": "c:@M@SendbirdChatSDK@objc(cs)SBDMessageListParams" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)dismissAndMoveToChannel:messageListParams:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC016dismissAndMoveToE0_17messageListParamsy0A7ChatSDK04BaseE0C_AF07MessagemN0CSgtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "errorHandler", + "printedName": "errorHandler(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12errorHandleryySSSg_SiSgtF", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12errorHandleryySSSg_SiSgtF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createOpenChannelModule", + "printedName": "createOpenChannelModule(_:didUpdateTitleView:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateTitleView:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_014didUpdateTitleF0yAA0cdeI0C6HeaderC_So6UIViewCSgtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createOpenChannelModule", + "printedName": "createOpenChannelModule(_:didUpdateLeftItem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIBarButtonItem?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateLeftItem:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_17didUpdateLeftItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CSgtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createOpenChannelModule", + "printedName": "createOpenChannelModule(_:didUpdateRightItem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIBarButtonItem?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateRightItem:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_18didUpdateRightItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CSgtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createOpenChannelModule", + "printedName": "createOpenChannelModule(_:didTapLeftItem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + }, + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didTapLeftItem:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_14didTapLeftItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createOpenChannelModule", + "printedName": "createOpenChannelModule(_:didTapRightItem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + }, + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didTapRightItem:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_15didTapRightItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" ], "funcSelfKind": "NonMutating" }, @@ -57988,7 +59769,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -82389,15 +84170,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileImageContentView(im)setupViews", + "usr": "s:13SendbirdUIKit26QuotedFileImageContentViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit26QuotedFileImageContentViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -82417,15 +84195,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileImageContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit26QuotedFileImageContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit26QuotedFileImageContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -82466,15 +84241,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileImageContentView(im)setupStyles", + "usr": "s:13SendbirdUIKit26QuotedFileImageContentViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit26QuotedFileImageContentViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -82691,6 +84463,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -82753,13 +84532,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -83940,13 +85712,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)setupViews", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -83964,13 +85734,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)setupLayouts", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -83988,13 +85756,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)updateLayouts", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateLayouts", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -84012,13 +85778,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)setupStyles", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -84036,13 +85800,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)updateStyles", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC12updateStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -84060,13 +85822,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)setupActions", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -84125,7 +85885,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -86770,15 +88530,14 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)setupViews", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP10setupViewsyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP10setupViewsyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" @@ -86795,15 +88554,14 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)setupStyles", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP11setupStylesyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP11setupStylesyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" @@ -86820,15 +88578,14 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)updateStyles", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP12updateStylesyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP12updateStylesyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" @@ -86845,15 +88602,14 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)setupLayouts", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" @@ -86870,15 +88626,14 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)updateLayouts", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" @@ -86895,29 +88650,25 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)setupActions", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP12setupActionsyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP12setupActionsyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" } ], "declKind": "Protocol", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP", "moduleName": "SendbirdUIKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ] }, @@ -87816,7 +89567,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -88895,7 +90646,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -91087,8 +92838,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "ReferenceOwnership", "AccessControl", "RawDocComment" @@ -93394,7 +95145,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -97489,14 +99240,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelMessageWebView(im)setupViews", + "usr": "s:13SendbirdUIKit28SBUOpenChannelMessageWebViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit28SBUOpenChannelMessageWebViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "ObjC", "Custom", "Override", "AccessControl" @@ -97515,14 +99264,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelMessageWebView(im)setupStyles", + "usr": "s:13SendbirdUIKit28SBUOpenChannelMessageWebViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit28SBUOpenChannelMessageWebViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "ObjC", "Custom", "Override", "AccessControl" @@ -97541,14 +99288,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelMessageWebView(im)setupLayouts", + "usr": "s:13SendbirdUIKit28SBUOpenChannelMessageWebViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit28SBUOpenChannelMessageWebViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "ObjC", "Custom", "Override", "AccessControl" @@ -97677,7 +99422,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -97918,13 +99663,12 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC10setupViewsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ "Dynamic", - "ObjC", "Custom", "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -97945,13 +99689,12 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ "Dynamic", - "ObjC", "Custom", "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -97972,12 +99715,11 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateLayouts", "declAttributes": [ "Dynamic", - "ObjC", "Custom", - "AccessControl" + "AccessControl", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -97998,13 +99740,12 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC11setupStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ "Dynamic", - "ObjC", "Custom", "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -98025,12 +99766,11 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC12updateStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ "Dynamic", - "ObjC", "Custom", - "AccessControl" + "AccessControl", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -98051,13 +99791,12 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC12setupActionsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ "Dynamic", - "ObjC", "Custom", "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -98089,7 +99828,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -102040,6 +103779,42 @@ ], "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "groupChannelModule", + "printedName": "groupChannelModule(_:didSelectQuickReplyOption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "List", + "printedName": "SendbirdUIKit.SBUGroupChannelModule.List", + "usr": "s:13SendbirdUIKit21SBUGroupChannelModuleC4ListC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUGroupChannelViewController(im)groupChannelModule:didSelectQuickReplyOption:", + "mangledName": "$s13SendbirdUIKit29SBUGroupChannelViewControllerC05groupD6Module_25didSelectQuickReplyOptionyAA0cdH0C4ListC_SStF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, { "kind": "Function", "name": "baseChannelModule", @@ -104145,15 +105920,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelCommonContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit31SBUOpenChannelCommonContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit31SBUOpenChannelCommonContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -104172,15 +105944,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelCommonContentView(im)setupStyles", + "usr": "s:13SendbirdUIKit31SBUOpenChannelCommonContentViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit31SBUOpenChannelCommonContentViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -104319,6 +106088,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -104381,13 +106157,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -110738,127 +112507,127 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUOpenChannelBaseMessageCell", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvg", + "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUOpenChannelBaseMessageCell", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvs", + "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvM", + "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userMessageCell", + "printedName": "userMessageCell", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUOpenChannelBaseMessageCell", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC15userMessageCellAA0cd4BasehI0CSgvp", + "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC15userMessageCellAA0cd4BasehI0CSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasInitialValue", "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUOpenChannelBaseMessageCell", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvg", - "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvg", - "moduleName": "SendbirdUIKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUOpenChannelBaseMessageCell", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvs", - "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvs", - "moduleName": "SendbirdUIKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvM", - "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvM", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "userMessageCell", - "printedName": "userMessageCell", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUOpenChannelBaseMessageCell", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC15userMessageCellAA0cd4BasehI0CSgvp", - "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC15userMessageCellAA0cd4BasehI0CSgvp", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -110976,8 +112745,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -111095,8 +112864,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -111214,8 +112983,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -113422,9 +115191,9 @@ "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC5MediaC9mediaViewSo6UIViewCvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -117089,9 +118858,9 @@ "mangledName": "$s13SendbirdUIKit22SBUSelectableStackViewC8positionAA15MessagePositionOvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -117232,14 +119001,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView(im)setupViews", + "usr": "s:13SendbirdUIKit22SBUSelectableStackViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit22SBUSelectableStackViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -117259,14 +119025,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView(im)setupLayouts", + "usr": "s:13SendbirdUIKit22SBUSelectableStackViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit22SBUSelectableStackViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -117285,14 +119048,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView(im)setupStyles", + "usr": "s:13SendbirdUIKit22SBUSelectableStackViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit22SBUSelectableStackViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -117432,6 +119192,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -117494,13 +119261,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -121160,15 +122920,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedUserMessageView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUQuotedUserMessageViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedUserMessageViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -121187,15 +122944,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedUserMessageView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUQuotedUserMessageViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedUserMessageViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -121214,15 +122968,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedUserMessageView(im)setupStyles", + "usr": "s:13SendbirdUIKit24SBUQuotedUserMessageViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedUserMessageViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -121347,6 +123098,13 @@ "usr": "s:13SendbirdUIKit28SBUQuotedMessageViewProtocolP", "mangledName": "$s13SendbirdUIKit28SBUQuotedMessageViewProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -121409,13 +123167,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -123445,9 +125196,9 @@ "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC16heightConstraintSo08NSLayoutG0CSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -123611,9 +125362,9 @@ "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC19isLimitGuideEnabledSbvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -123697,9 +125448,9 @@ "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC8delegateAA0cdE8Delegate_pSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "ReferenceOwnership", "AccessControl", "RawDocComment" @@ -123999,15 +125750,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSuggestedMentionList(im)setupViews", + "usr": "s:13SendbirdUIKit23SBUSuggestedMentionListC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -124026,15 +125774,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSuggestedMentionList(im)setupLayouts", + "usr": "s:13SendbirdUIKit23SBUSuggestedMentionListC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -124053,15 +125798,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSuggestedMentionList(im)setupStyles", + "usr": "s:13SendbirdUIKit23SBUSuggestedMentionListC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -124425,272 +126167,272 @@ "ObjectiveC.NSObject" ], "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, { "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SendbirdChatSDK", - "printedName": "SendbirdChatSDK", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SendbirdChatSDK", - "printedName": "SendbirdChatSDK", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "MessageTemplateParser", - "printedName": "MessageTemplateParser", - "children": [ - { - "kind": "Function", - "name": "getMock", - "printedName": "getMock(widthT:widthV:heightT:heightV:contentMode:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit21MessageTemplateParserC7getMock6widthT0H1V7heightT0I1V11contentModeS2S_SiSSSiSStFZ", - "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC7getMock6widthT0H1V7heightT0I1V11contentModeS2S_SiSSSiSStFZ", - "moduleName": "SendbirdUIKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" }, - { - "kind": "Function", - "name": "parserTest", - "printedName": "parserTest()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit21MessageTemplateParserC10parserTestyyF", - "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC10parserTestyyF", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "MessageTemplateParser", - "printedName": "SendbirdUIKit.MessageTemplateParser", - "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser" - } - ], - "declKind": "Constructor", - "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser(im)init", - "mangledName": "$s13SendbirdUIKit21MessageTemplateParserCACycfc", - "moduleName": "SendbirdUIKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser", - "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MessageTemplateParser", + "printedName": "MessageTemplateParser", + "children": [ + { + "kind": "Function", + "name": "getMock", + "printedName": "getMock(widthT:widthV:heightT:heightV:contentMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit21MessageTemplateParserC7getMock6widthT0H1V7heightT0I1V11contentModeS2S_SiSSSiSStFZ", + "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC7getMock6widthT0H1V7heightT0I1V11contentModeS2S_SiSSSiSStFZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parserTest", + "printedName": "parserTest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit21MessageTemplateParserC10parserTestyyF", + "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC10parserTestyyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTemplateParser", + "printedName": "SendbirdUIKit.MessageTemplateParser", + "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser(im)init", + "mangledName": "$s13SendbirdUIKit21MessageTemplateParserCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser", + "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ { "kind": "Conformance", "name": "Equatable", @@ -127083,7 +128825,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -127340,7 +129082,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -133611,6 +135353,885 @@ "declKind": "Import", "moduleName": "SendbirdUIKit" }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SBUQuickReplyViewDelegate", + "children": [ + { + "kind": "Function", + "name": "quickReplyView", + "printedName": "quickReplyView(_:didSelectOption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP05quickdE0_15didSelectOptionyAA0cdE0C_AA0cdjE0CtF", + "mangledName": "$s13SendbirdUIKit25SBUQuickReplyViewDelegateP05quickdE0_15didSelectOptionyAA0cdE0C_AA0cdjE0CtF", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUQuickReplyViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP", + "mangledName": "$s13SendbirdUIKit25SBUQuickReplyViewDelegateP", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyView", + "printedName": "SBUQuickReplyView", + "children": [ + { + "kind": "Var", + "name": "stackView", + "printedName": "stackView", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvs", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0CvM", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0CvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "topSpacer", + "printedName": "topSpacer", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvs", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvM", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC7optionsSaySSGvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC7optionsSaySSGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC7optionsSaySSGvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC7optionsSaySSGvg", + "moduleName": "SendbirdUIKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messageId", + "printedName": "messageId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9messageIds5Int64VSgvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9messageIds5Int64VSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9messageIds5Int64VSgvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9messageIds5Int64VSgvg", + "moduleName": "SendbirdUIKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "params", + "printedName": "params", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewParams", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC6paramsAA0cdE6ParamsVSgvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC6paramsAA0cdE6ParamsVSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewParams", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC6paramsAA0cdE6ParamsVSgvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC6paramsAA0cdE6ParamsVSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate?" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvs", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvM", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setupViews", + "printedName": "setupViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC10setupViewsyyF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC10setupViewsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupLayouts", + "printedName": "setupLayouts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC12setupLayoutsyyF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC12setupLayoutsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupStyles", + "printedName": "setupStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC11setupStylesyyF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC11setupStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(with:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewParams", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9configure4with8delegateyAA0cdE6ParamsV_AA0cdE8Delegate_pSgtF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9configure4with8delegateyAA0cdE6ParamsV_AA0cdE8Delegate_pSgtF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createQuickReplyOptionViews", + "printedName": "createQuickReplyOptionViews(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUQuickReplyOptionView]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC011createQuickD11OptionViews7optionsSayAA0cdhE0CGSaySSG_tF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC011createQuickD11OptionViews7optionsSayAA0cdhE0CGSaySSG_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "quickReplyOptionViewDidSelect", + "printedName": "quickReplyOptionViewDidSelect(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC05quickd6OptionE9DidSelectyyAA0cdgE0CF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC05quickd6OptionE9DidSelectyyAA0cdgE0CF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView(im)init", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView(im)initWithFrame:", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC5frameACSo6CGRectV_tcfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "IBDesignable", + "ObjC" + ], + "superclassUsr": "c:@M@SendbirdUIKit@objc(cs)SBUView", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "SendbirdUIKit.SBUView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SBUQuickReplyOptionViewDelegate", + "printedName": "SBUQuickReplyOptionViewDelegate", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP", + "mangledName": "$s13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP" + }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, { "kind": "TypeDecl", "name": "SBUOpenChannelContentBaseMessageCell", @@ -135116,7 +137737,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -139451,7 +142072,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -139583,7 +142204,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -140135,8 +142756,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "SetterAccess", "AccessControl" ], @@ -140431,15 +143052,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUThreadInfoView(im)setupViews", + "usr": "s:13SendbirdUIKit17SBUThreadInfoViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit17SBUThreadInfoViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -140487,15 +143105,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUThreadInfoView(im)setupStyles", + "usr": "s:13SendbirdUIKit17SBUThreadInfoViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit17SBUThreadInfoViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -140514,15 +143129,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUThreadInfoView(im)setupLayouts", + "usr": "s:13SendbirdUIKit17SBUThreadInfoViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit17SBUThreadInfoViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -140541,15 +143153,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUThreadInfoView(im)setupActions", + "usr": "s:13SendbirdUIKit17SBUThreadInfoViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit17SBUThreadInfoViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -140671,6 +143280,13 @@ "usr": "s:13SendbirdUIKit25SBUThreadInfoViewProtocolP", "mangledName": "$s13SendbirdUIKit25SBUThreadInfoViewProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -140733,13 +143349,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -141361,15 +143970,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageThreadTitleView(im)setupViews", + "usr": "s:13SendbirdUIKit25SBUMessageThreadTitleViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit25SBUMessageThreadTitleViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -141388,15 +143994,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageThreadTitleView(im)setupLayouts", + "usr": "s:13SendbirdUIKit25SBUMessageThreadTitleViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit25SBUMessageThreadTitleViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -141415,15 +144018,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageThreadTitleView(im)setupStyles", + "usr": "s:13SendbirdUIKit25SBUMessageThreadTitleViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit25SBUMessageThreadTitleViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -141591,6 +144191,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -141653,13 +144260,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -144234,15 +146834,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateChannelTypeSelector(im)setupViews", + "usr": "s:13SendbirdUIKit28SBUCreateChannelTypeSelectorC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit28SBUCreateChannelTypeSelectorC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -144261,15 +146858,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateChannelTypeSelector(im)setupStyles", + "usr": "s:13SendbirdUIKit28SBUCreateChannelTypeSelectorC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit28SBUCreateChannelTypeSelectorC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -144288,15 +146882,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateChannelTypeSelector(im)updateStyles", + "usr": "s:13SendbirdUIKit28SBUCreateChannelTypeSelectorC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit28SBUCreateChannelTypeSelectorC12updateStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -144315,15 +146906,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateChannelTypeSelector(im)setupLayouts", + "usr": "s:13SendbirdUIKit28SBUCreateChannelTypeSelectorC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit28SBUCreateChannelTypeSelectorC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -144579,6 +147167,13 @@ "usr": "s:13SendbirdUIKit36SBUCreateChannelTypeSelectorProtocolP", "mangledName": "$s13SendbirdUIKit36SBUCreateChannelTypeSelectorProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -144641,13 +147236,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -147739,6 +150327,39 @@ "mangledName": "$s13SendbirdUIKit19ChannelCreationTypeO9broadcastyA2CmF", "moduleName": "SendbirdUIKit" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.ChannelCreationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ChannelCreationType", + "printedName": "SendbirdUIKit.ChannelCreationType", + "usr": "s:13SendbirdUIKit19ChannelCreationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit19ChannelCreationTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s13SendbirdUIKit19ChannelCreationTypeO8rawValueACSgSi_tcfc", + "moduleName": "SendbirdUIKit", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -147777,39 +150398,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.ChannelCreationType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ChannelCreationType", - "printedName": "SendbirdUIKit.ChannelCreationType", - "usr": "s:13SendbirdUIKit19ChannelCreationTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:13SendbirdUIKit19ChannelCreationTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s13SendbirdUIKit19ChannelCreationTypeO8rawValueACSgSi_tcfc", - "moduleName": "SendbirdUIKit", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -149070,38 +151658,6 @@ "mangledName": "$s13SendbirdUIKit12UserListTypeO16suggestedMentionyACSbcACmF", "moduleName": "SendbirdUIKit" }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "UserListType", - "printedName": "SendbirdUIKit.UserListType", - "usr": "s:13SendbirdUIKit12UserListTypeO" - }, - { - "kind": "TypeNominal", - "name": "UserListType", - "printedName": "SendbirdUIKit.UserListType", - "usr": "s:13SendbirdUIKit12UserListTypeO" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit12UserListTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s13SendbirdUIKit12UserListTypeO2eeoiySbAC_ACtFZ", - "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, { "kind": "Var", "name": "hashValue", @@ -149165,6 +151721,38 @@ "moduleName": "SendbirdUIKit", "implicit": true, "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UserListType", + "printedName": "SendbirdUIKit.UserListType", + "usr": "s:13SendbirdUIKit12UserListTypeO" + }, + { + "kind": "TypeNominal", + "name": "UserListType", + "printedName": "SendbirdUIKit.UserListType", + "usr": "s:13SendbirdUIKit12UserListTypeO" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit12UserListTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s13SendbirdUIKit12UserListTypeO2eeoiySbAC_ACtFZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" } ], "declKind": "Enum", @@ -150770,6 +153358,39 @@ ], "fixedbinaryorder": 4 }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.MediaResourceType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaResourceType", + "printedName": "SendbirdUIKit.MediaResourceType", + "usr": "c:@M@SendbirdUIKit@E@MediaResourceType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit17MediaResourceTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s13SendbirdUIKit17MediaResourceTypeO8rawValueACSgSi_tcfc", + "moduleName": "SendbirdUIKit", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -150808,39 +153429,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.MediaResourceType?", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaResourceType", - "printedName": "SendbirdUIKit.MediaResourceType", - "usr": "c:@M@SendbirdUIKit@E@MediaResourceType" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:13SendbirdUIKit17MediaResourceTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s13SendbirdUIKit17MediaResourceTypeO8rawValueACSgSi_tcfc", - "moduleName": "SendbirdUIKit", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -154335,9 +156923,9 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC015baseFileContentF0AA07SBUBasehiF0Cvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -155130,9 +157718,9 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC21userProfileTapHandleryycSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -155275,9 +157863,9 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC19tapHandlerToContentyycSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -155420,302 +158008,302 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "Custom", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvg", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvg", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvs", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvs", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvM", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvM", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "emojiTapHandler", - "printedName": "emojiTapHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvp", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvp", - "moduleName": "SendbirdUIKit", - "declAttributes": [ "HasInitialValue", "HasStorage", - "Custom", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvg", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvg", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvs", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvs", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvM", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvM", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "moreEmojiTapHandler", - "printedName": "moreEmojiTapHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC19moreEmojiTapHandleryycSgvp", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC19moreEmojiTapHandleryycSgvp", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvg", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvs", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvM", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "emojiTapHandler", + "printedName": "emojiTapHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvp", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvg", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvs", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvM", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "moreEmojiTapHandler", + "printedName": "moreEmojiTapHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC19moreEmojiTapHandleryycSgvp", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC19moreEmojiTapHandleryycSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], @@ -155859,9 +158447,9 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC21emojiLongPressHandlerySScSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -156007,9 +158595,9 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC17mentionTapHandleryAA7SBUUserCcSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -158276,6 +160864,194 @@ "accessorKind": "_modify" } ] + }, + { + "kind": "Var", + "name": "cardViewParamsCollectionBuilder", + "printedName": "cardViewParamsCollectionBuilder", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams])?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvpZ", + "mangledName": "$s13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvpZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams])?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvgZ", + "mangledName": "$s13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams])?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvsZ", + "mangledName": "$s13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvMZ", + "mangledName": "$s13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] } ], "declKind": "Class", @@ -158519,6 +161295,816 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyOptionViewDelegate", + "printedName": "SBUQuickReplyOptionViewDelegate", + "children": [ + { + "kind": "Function", + "name": "quickReplyOptionViewDidSelect", + "printedName": "quickReplyOptionViewDidSelect(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP05quickdeF9DidSelectyyAA0cdeF0CF", + "mangledName": "$s13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP05quickdeF9DidSelectyyAA0cdeF0CF", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUQuickReplyOptionViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP", + "mangledName": "$s13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyOptionView", + "printedName": "SBUQuickReplyOptionView", + "children": [ + { + "kind": "Var", + "name": "theme", + "printedName": "theme", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvs", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvM", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "selectableStackView", + "printedName": "selectableStackView", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUSelectableStackView", + "printedName": "SendbirdUIKit.SBUSelectableStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUSelectableStackView", + "printedName": "SendbirdUIKit.SBUSelectableStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUSelectableStackView", + "printedName": "SendbirdUIKit.SBUSelectableStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvs", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0CvM", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0CvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textView", + "printedName": "textView", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvs", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvM", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC4textSSSgvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC4textSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC4textSSSgvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC4textSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate?" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvs", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvM", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setupViews", + "printedName": "setupViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC10setupViewsyyF", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC10setupViewsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupLayouts", + "printedName": "setupLayouts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC12setupLayoutsyyF", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC12setupLayoutsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupStyles", + "printedName": "setupStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC11setupStylesyyF", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC11setupStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupActions", + "printedName": "setupActions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC12setupActionsyyF", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC12setupActionsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSelectOption", + "printedName": "onSelectOption()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView(im)onSelectOption", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC08onSelectE0yyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(with:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC9configure4with8delegateySS_AA0cdeF8Delegate_pSgtF", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC9configure4with8delegateySS_AA0cdeF8Delegate_pSgtF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView(im)init", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView(im)initWithFrame:", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC5frameACSo6CGRectV_tcfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:@M@SendbirdUIKit@objc(cs)SBUView", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "SendbirdUIKit.SBUView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -158606,9 +162192,9 @@ "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC5themeAA19SBUMessageCellThemeCvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -158694,9 +162280,9 @@ "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC9messageIds5Int64Vvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -159250,9 +162836,9 @@ "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC6paramsAA0cdeF6ParamsCSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "SetterAccess", "AccessControl", "RawDocComment" @@ -159716,9 +163302,9 @@ "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC013mainContainerF0AA018SBUSelectableStackF0Cvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -159965,15 +163551,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedBaseMessageView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUQuotedBaseMessageViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -159993,15 +163576,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedBaseMessageView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUQuotedBaseMessageViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -160020,15 +163600,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedBaseMessageView(im)setupStyles", + "usr": "s:13SendbirdUIKit24SBUQuotedBaseMessageViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -160047,15 +163624,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedBaseMessageView(im)setupActions", + "usr": "s:13SendbirdUIKit24SBUQuotedBaseMessageViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -160148,6 +163722,13 @@ "usr": "s:13SendbirdUIKit28SBUQuotedMessageViewProtocolP", "mangledName": "$s13SendbirdUIKit28SBUQuotedMessageViewProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -160210,13 +163791,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -160582,7 +164156,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -160732,8 +164306,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "ObjC" ], @@ -162893,7 +166467,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -165574,6 +169148,39 @@ ], "fixedbinaryorder": 8 }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.ChannelMemberListType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ChannelMemberListType", + "printedName": "SendbirdUIKit.ChannelMemberListType", + "usr": "c:@M@SendbirdUIKit@E@ChannelMemberListType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit21ChannelMemberListTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s13SendbirdUIKit21ChannelMemberListTypeO8rawValueACSgSi_tcfc", + "moduleName": "SendbirdUIKit", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -165612,39 +169219,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.ChannelMemberListType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ChannelMemberListType", - "printedName": "SendbirdUIKit.ChannelMemberListType", - "usr": "c:@M@SendbirdUIKit@E@ChannelMemberListType" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:13SendbirdUIKit21ChannelMemberListTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s13SendbirdUIKit21ChannelMemberListTypeO8rawValueACSgSi_tcfc", - "moduleName": "SendbirdUIKit", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -165697,6 +169271,474 @@ } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUCardViewParams", + "printedName": "SBUCardViewParams", + "children": [ + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV8imageURLSSSgvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV8imageURLSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV8imageURLSSSgvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV8imageURLSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "title", + "printedName": "title", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV5titleSSSgvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV5titleSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV5titleSSSgvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV5titleSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "subtitle", + "printedName": "subtitle", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV8subtitleSSSgvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV8subtitleSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV8subtitleSSSgvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV8subtitleSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV11descriptionSSSgvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV11descriptionSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV11descriptionSSSgvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV11descriptionSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "link", + "printedName": "link", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV4linkSSSgvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV4linkSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV4linkSSSgvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV4linkSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasLink", + "printedName": "hasLink", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV7hasLinkSbvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV7hasLinkSbvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV7hasLinkSbvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV7hasLinkSbvg", + "moduleName": "SendbirdUIKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(imageURL:title:subtitle:description:link:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV8imageURL5title8subtitle11description4linkACSSSg_A4Itcfc", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV8imageURL5title8subtitle11description4linkACSSSg_A4Itcfc", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -166933,15 +170975,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserNameView(im)setupViews", + "usr": "s:13SendbirdUIKit15SBUUserNameViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit15SBUUserNameViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -166960,15 +170999,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserNameView(im)setupLayouts", + "usr": "s:13SendbirdUIKit15SBUUserNameViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit15SBUUserNameViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -166987,15 +171023,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserNameView(im)updateLayouts", + "usr": "s:13SendbirdUIKit15SBUUserNameViewC13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit15SBUUserNameViewC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "updateLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -167014,15 +171047,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserNameView(im)setupStyles", + "usr": "s:13SendbirdUIKit15SBUUserNameViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit15SBUUserNameViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -167041,15 +171071,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserNameView(im)updateStyles", + "usr": "s:13SendbirdUIKit15SBUUserNameViewC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit15SBUUserNameViewC12updateStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -167138,6 +171165,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -167200,13 +171234,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -167431,6 +171458,186 @@ ], "hasMissingDesignatedInitializers": true }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyViewParams", + "printedName": "SBUQuickReplyViewParams", + "children": [ + { + "kind": "Var", + "name": "messageId", + "printedName": "messageId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV9messageIds5Int64Vvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV9messageIds5Int64Vvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV9messageIds5Int64Vvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV9messageIds5Int64Vvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "replyOptions", + "printedName": "replyOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV12replyOptionsSaySSGvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV12replyOptionsSaySSGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV12replyOptionsSaySSGvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV12replyOptionsSaySSGvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(messageId:replyOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewParams", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV9messageId12replyOptionsACs5Int64V_SaySSGtcfc", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV9messageId12replyOptionsACs5Int64V_SaySSGtcfc", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -169559,8 +173766,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "ObjC" ], @@ -174443,8 +178650,8 @@ "mangledName": "$s13SendbirdUIKit21SBUMessageProfileViewC9urlStringSSvp", "moduleName": "SendbirdUIKit", "declAttributes": [ - "HasStorage", "Custom", + "HasStorage", "AccessControl" ], "hasStorage": true, @@ -174566,9 +178773,9 @@ "mangledName": "$s13SendbirdUIKit21SBUMessageProfileViewC17imageDownloadTaskSo012NSURLSessionH0CSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -174724,15 +178931,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageProfileView(im)setupViews", + "usr": "s:13SendbirdUIKit21SBUMessageProfileViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit21SBUMessageProfileViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -174751,15 +178955,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageProfileView(im)setupLayouts", + "usr": "s:13SendbirdUIKit21SBUMessageProfileViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit21SBUMessageProfileViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -174778,15 +178979,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageProfileView(im)setupStyles", + "usr": "s:13SendbirdUIKit21SBUMessageProfileViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit21SBUMessageProfileViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -174856,6 +179054,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -174918,13 +179123,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -177876,7 +182074,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -178502,8 +182700,15 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SBUQuickReplyViewDelegate", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP", + "mangledName": "$s13SendbirdUIKit25SBUQuickReplyViewDelegateP" } ] }, @@ -179707,7 +183912,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -181397,10 +185602,59 @@ } ] }, + { + "kind": "Var", + "name": "shouldHideQuickReply", + "printedName": "shouldHideQuickReply", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit24SBUUserMessageCellParamsC20shouldHideQuickReplySbvp", + "mangledName": "$s13SendbirdUIKit24SBUUserMessageCellParamsC20shouldHideQuickReplySbvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUUserMessageCellParamsC20shouldHideQuickReplySbvg", + "mangledName": "$s13SendbirdUIKit24SBUUserMessageCellParamsC20shouldHideQuickReplySbvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, { "kind": "Constructor", "name": "init", - "printedName": "init(message:hideDateView:useMessagePosition:groupPosition:receiptState:useReaction:withTextView:isThreadMessage:joinedAt:)", + "printedName": "init(message:hideDateView:useMessagePosition:groupPosition:receiptState:useReaction:withTextView:isThreadMessage:joinedAt:shouldHideQuickReply:)", "children": [ { "kind": "TypeNominal", @@ -181466,11 +185720,18 @@ "printedName": "Swift.Int64", "hasDefaultArg": true, "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], "declKind": "Constructor", - "usr": "s:13SendbirdUIKit24SBUUserMessageCellParamsC7message12hideDateView03useD8Position05groupL012receiptState0K8Reaction08withTextJ008isThreadD08joinedAtAC0A7ChatSDK04UserD0C_S2bAA0d5GroupL0OAA017SBUMessageReceiptO0OS3bs5Int64Vtcfc", - "mangledName": "$s13SendbirdUIKit24SBUUserMessageCellParamsC7message12hideDateView03useD8Position05groupL012receiptState0K8Reaction08withTextJ008isThreadD08joinedAtAC0A7ChatSDK04UserD0C_S2bAA0d5GroupL0OAA017SBUMessageReceiptO0OS3bs5Int64Vtcfc", + "usr": "s:13SendbirdUIKit24SBUUserMessageCellParamsC7message12hideDateView03useD8Position05groupL012receiptState0K8Reaction08withTextJ008isThreadD08joinedAt20shouldHideQuickReplyAC0A7ChatSDK04UserD0C_S2bAA0d5GroupL0OAA017SBUMessageReceiptO0OS3bs5Int64VSbtcfc", + "mangledName": "$s13SendbirdUIKit24SBUUserMessageCellParamsC7message12hideDateView03useD8Position05groupL012receiptState0K8Reaction08withTextJ008isThreadD08joinedAt20shouldHideQuickReplyAC0A7ChatSDK04UserD0C_S2bAA0d5GroupL0OAA017SBUMessageReceiptO0OS3bs5Int64VSbtcfc", "moduleName": "SendbirdUIKit", "declAttributes": [ "AccessControl" @@ -182424,7 +186685,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -183443,15 +187704,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceContentView(im)setupViews", + "usr": "s:13SendbirdUIKit19SBUVoiceContentViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit19SBUVoiceContentViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -183470,15 +187728,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit19SBUVoiceContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit19SBUVoiceContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -183497,15 +187752,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceContentView(im)setupStyles", + "usr": "s:13SendbirdUIKit19SBUVoiceContentViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit19SBUVoiceContentViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -183642,6 +187894,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -183704,13 +187963,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -195327,15 +199579,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageInputView(im)setupViews", + "usr": "s:13SendbirdUIKit19SBUMessageInputViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageInputViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -195355,15 +199604,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageInputView(im)setupLayouts", + "usr": "s:13SendbirdUIKit19SBUMessageInputViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageInputViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -195383,15 +199629,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageInputView(im)setupStyles", + "usr": "s:13SendbirdUIKit19SBUMessageInputViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageInputViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -196203,6 +200446,13 @@ "usr": "s:13SendbirdUIKit22SBUActionSheetDelegateP", "mangledName": "$s13SendbirdUIKit22SBUActionSheetDelegateP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -196265,13 +200515,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -198807,7 +203050,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -198829,6 +203072,23 @@ "declKind": "Import", "moduleName": "SendbirdUIKit" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, { "kind": "Import", "name": "UIKit", @@ -199408,8 +203668,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -199527,8 +203787,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -199646,8 +203906,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -204643,8 +208903,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -205622,6 +209882,781 @@ "declKind": "Import", "moduleName": "SendbirdUIKit" }, + { + "kind": "TypeDecl", + "name": "SBUCardListView", + "printedName": "SBUCardListView", + "children": [ + { + "kind": "TypeDecl", + "name": "Metric", + "printedName": "Metric", + "children": [ + { + "kind": "Var", + "name": "maxWidth", + "printedName": "maxWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvpZ", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvpZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvgZ", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvsZ", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvMZ", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6MetricV", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6MetricV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Var", + "name": "stackView", + "printedName": "stackView", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvs", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0CvM", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0CvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "topSpacer", + "printedName": "topSpacer", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvs", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvM", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "items", + "printedName": "items", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC5itemsSayAA0cE6ParamsVGvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC5itemsSayAA0cE6ParamsVGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC5itemsSayAA0cE6ParamsVGvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC5itemsSayAA0cE6ParamsVGvg", + "moduleName": "SendbirdUIKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messageId", + "printedName": "messageId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9messageIds5Int64VSgvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9messageIds5Int64VSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9messageIds5Int64VSgvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9messageIds5Int64VSgvg", + "moduleName": "SendbirdUIKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "params", + "printedName": "params", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardListViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListViewParams", + "printedName": "SendbirdUIKit.SBUCardListViewParams", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6paramsAA0cdE6ParamsVSgvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6paramsAA0cdE6ParamsVSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardListViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListViewParams", + "printedName": "SendbirdUIKit.SBUCardListViewParams", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6paramsAA0cdE6ParamsVSgvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6paramsAA0cdE6ParamsVSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setupViews", + "printedName": "setupViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListViewC10setupViewsyyF", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC10setupViewsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupLayouts", + "printedName": "setupLayouts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListViewC12setupLayoutsyyF", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC12setupLayoutsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupStyles", + "printedName": "setupStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListViewC11setupStylesyyF", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC11setupStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUCardListViewParams", + "printedName": "SendbirdUIKit.SBUCardListViewParams", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9configure4withyAA0cdE6ParamsV_tF", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9configure4withyAA0cdE6ParamsV_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createCardViews", + "printedName": "createCardViews(items:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardView]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardView", + "printedName": "SendbirdUIKit.SBUCardView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListViewC15createCardViews5itemsSayAA0cE0CGSayAA0cE6ParamsVG_tF", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC15createCardViews5itemsSayAA0cE0CGSayAA0cE6ParamsVG_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListView", + "printedName": "SendbirdUIKit.SBUCardListView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView(im)init", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListView", + "printedName": "SendbirdUIKit.SBUCardListView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView(im)initWithFrame:", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC5frameACSo6CGRectV_tcfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:@M@SendbirdUIKit@objc(cs)SBUView", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "SendbirdUIKit.SBUView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, { "kind": "TypeDecl", "name": "SBUMessageStateViewParams", @@ -206217,9 +211252,9 @@ "mangledName": "$s13SendbirdUIKit19SBUMessageStateViewC9timeLabelSo7UILabelCvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -206528,15 +211563,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageStateView(im)setupViews", + "usr": "s:13SendbirdUIKit19SBUMessageStateViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageStateViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -206555,15 +211587,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageStateView(im)setupLayouts", + "usr": "s:13SendbirdUIKit19SBUMessageStateViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageStateViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -206582,15 +211611,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageStateView(im)setupStyles", + "usr": "s:13SendbirdUIKit19SBUMessageStateViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageStateViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -206762,6 +211788,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -206824,13 +211857,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -207499,7 +212525,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -207919,13 +212945,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)setupViews", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC10setupViewsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -207944,13 +212968,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)setupLayouts", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -208012,13 +213034,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)setupStyles", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC11setupStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -208037,13 +213057,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)setupActions", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC12setupActionsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -208062,13 +213080,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)updateLayouts", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateLayouts", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -208087,13 +213103,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)updateStyles", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC12updateStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -208126,7 +213140,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -217980,11 +222994,177 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUCardListData", + "printedName": "SBUCardListData", + "children": [ + { + "kind": "Var", + "name": "recommends", + "printedName": "recommends", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListDataV10recommendsSayxGvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListDataV10recommendsSayxGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListDataV10recommendsSayxGvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListDataV10recommendsSayxGvg", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListData", + "printedName": "SendbirdUIKit.SBUCardListData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:13SendbirdUIKit15SBUCardListDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit15SBUCardListDataV4fromACyxGs7Decoder_p_tKcfc", + "mangledName": "$s13SendbirdUIKit15SBUCardListDataV4fromACyxGs7Decoder_p_tKcfc", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListDataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s13SendbirdUIKit15SBUCardListDataV6encode2toys7Encoder_p_tKF", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit15SBUCardListDataV", + "mangledName": "$s13SendbirdUIKit15SBUCardListDataV", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, { "kind": "Import", "name": "SendbirdChatSDK", @@ -219069,11 +224249,184 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUCardListViewParams", + "printedName": "SBUCardListViewParams", + "children": [ + { + "kind": "Var", + "name": "messageId", + "printedName": "messageId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV9messageIds5Int64Vvp", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV9messageIds5Int64Vvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV9messageIds5Int64Vvg", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV9messageIds5Int64Vvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "items", + "printedName": "items", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV5itemsSayAA0ceF0VGvp", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV5itemsSayAA0ceF0VGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV5itemsSayAA0ceF0VGvg", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV5itemsSayAA0ceF0VGvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(messageId:items:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListViewParams", + "printedName": "SendbirdUIKit.SBUCardListViewParams", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV9messageId5itemsACs5Int64V_SayAA0ceF0VGtcfc", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV9messageId5itemsACs5Int64V_SayAA0ceF0VGtcfc", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -219622,12 +224975,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", - "objc_name": "setupViews", "declAttributes": [ - "ObjC", "AccessControl", "RawDocComment" ], @@ -219645,12 +224996,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", - "objc_name": "setupLayouts", "declAttributes": [ - "ObjC", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -219667,12 +225016,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)updateLayouts", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", - "objc_name": "updateLayouts", "declAttributes": [ - "ObjC", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -219689,12 +225036,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)setupStyles", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", - "objc_name": "setupStyles", "declAttributes": [ - "ObjC", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -219711,12 +225056,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)updateStyles", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC12updateStylesyyF", "moduleName": "SendbirdUIKit", - "objc_name": "updateStyles", "declAttributes": [ - "ObjC", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -219733,12 +225076,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)setupActions", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", - "objc_name": "setupActions", "declAttributes": [ - "ObjC", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -220116,7 +225457,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -225329,6 +230670,42 @@ ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "groupChannelModule", + "printedName": "groupChannelModule(_:didSelectQuickReplyOption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "List", + "printedName": "SendbirdUIKit.SBUGroupChannelModule.List", + "usr": "s:13SendbirdUIKit21SBUGroupChannelModuleC4ListC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit33SBUGroupChannelModuleListDelegateP05groupdE0_25didSelectQuickReplyOptionyAA0cdE0C0F0C_SStF", + "mangledName": "$s13SendbirdUIKit33SBUGroupChannelModuleListDelegateP05groupdE0_25didSelectQuickReplyOptionyAA0cdE0C0F0C_SStF", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUGroupChannelModuleListDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" } ], "declKind": "Protocol", @@ -229241,307 +234618,307 @@ "ObjectiveC.NSObject" ], "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, { "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SendbirdChatSDK", - "printedName": "SendbirdChatSDK", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "TypeDecl", - "name": "SBUBaseChannelListViewModelDelegate", - "printedName": "SBUBaseChannelListViewModelDelegate", - "declKind": "Protocol", - "usr": "s:13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP", - "mangledName": "$s13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP", - "moduleName": "SendbirdUIKit", - "genericSig": "<τ_0_0 : SendbirdUIKit.SBUCommonViewModelDelegate>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "SBUCommonViewModelDelegate", - "printedName": "SBUCommonViewModelDelegate", - "usr": "s:13SendbirdUIKit26SBUCommonViewModelDelegateP", - "mangledName": "$s13SendbirdUIKit26SBUCommonViewModelDelegateP" - }, - { - "kind": "Conformance", - "name": "SBUCommonDelegate", - "printedName": "SBUCommonDelegate", - "usr": "s:13SendbirdUIKit17SBUCommonDelegateP", - "mangledName": "$s13SendbirdUIKit17SBUCommonDelegateP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SBUBaseChannelListViewModel", - "printedName": "SBUBaseChannelListViewModel", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUBaseChannelListViewModel", - "printedName": "SendbirdUIKit.SBUBaseChannelListViewModel", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUBaseChannelListViewModelDelegate?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUBaseChannelListViewModelDelegate", - "printedName": "SendbirdUIKit.SBUBaseChannelListViewModelDelegate", - "usr": "s:13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC8delegateAcA0cdefG8Delegate_pSg_tcfc", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC8delegateAcA0cdefG8Delegate_pSg_tcfc", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "initChannelList", - "printedName": "initChannelList()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC04initdE0yyF", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC04initdE0yyF", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "loadNextChannelList", - "printedName": "loadNextChannelList(reset:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC08loadNextdE05resetySb_tF", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC08loadNextdE05resetySb_tF", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "reset", - "printedName": "reset()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC5resetyyF", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC5resetyyF", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUBaseChannelListViewModel", - "printedName": "SendbirdUIKit.SBUBaseChannelListViewModel", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel" - } - ], - "declKind": "Constructor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel(im)init", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelCACycfc", - "moduleName": "SendbirdUIKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "didSucceedReconnection", - "printedName": "didSucceedReconnection()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel(im)didSucceedReconnection", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC22didSucceedReconnectionyyF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "objc_name": "didSucceedReconnection", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ConnectionDelegate", - "printedName": "ConnectionDelegate", - "usr": "c:@M@SendbirdChatSDK@objc(pl)SBDConnectionDelegate", - "mangledName": "$s15SendbirdChatSDK18ConnectionDelegateP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "TypeDecl", + "name": "SBUBaseChannelListViewModelDelegate", + "printedName": "SBUBaseChannelListViewModelDelegate", + "declKind": "Protocol", + "usr": "s:13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP", + "mangledName": "$s13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 : SendbirdUIKit.SBUCommonViewModelDelegate>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SBUCommonViewModelDelegate", + "printedName": "SBUCommonViewModelDelegate", + "usr": "s:13SendbirdUIKit26SBUCommonViewModelDelegateP", + "mangledName": "$s13SendbirdUIKit26SBUCommonViewModelDelegateP" + }, + { + "kind": "Conformance", + "name": "SBUCommonDelegate", + "printedName": "SBUCommonDelegate", + "usr": "s:13SendbirdUIKit17SBUCommonDelegateP", + "mangledName": "$s13SendbirdUIKit17SBUCommonDelegateP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SBUBaseChannelListViewModel", + "printedName": "SBUBaseChannelListViewModel", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUBaseChannelListViewModel", + "printedName": "SendbirdUIKit.SBUBaseChannelListViewModel", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUBaseChannelListViewModelDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUBaseChannelListViewModelDelegate", + "printedName": "SendbirdUIKit.SBUBaseChannelListViewModelDelegate", + "usr": "s:13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC8delegateAcA0cdefG8Delegate_pSg_tcfc", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC8delegateAcA0cdefG8Delegate_pSg_tcfc", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "initChannelList", + "printedName": "initChannelList()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC04initdE0yyF", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC04initdE0yyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadNextChannelList", + "printedName": "loadNextChannelList(reset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC08loadNextdE05resetySb_tF", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC08loadNextdE05resetySb_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC5resetyyF", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC5resetyyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUBaseChannelListViewModel", + "printedName": "SendbirdUIKit.SBUBaseChannelListViewModel", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel(im)init", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "didSucceedReconnection", + "printedName": "didSucceedReconnection()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel(im)didSucceedReconnection", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC22didSucceedReconnectionyyF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "objc_name": "didSucceedReconnection", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ConnectionDelegate", + "printedName": "ConnectionDelegate", + "usr": "c:@M@SendbirdChatSDK@objc(pl)SBDConnectionDelegate", + "mangledName": "$s15SendbirdChatSDK18ConnectionDelegateP" }, { "kind": "Conformance", @@ -235317,15 +240694,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedFileMessageView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUQuotedFileMessageViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedFileMessageViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -235344,15 +240718,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedFileMessageView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUQuotedFileMessageViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedFileMessageViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -235477,6 +240848,13 @@ "usr": "s:13SendbirdUIKit28SBUQuotedMessageViewProtocolP", "mangledName": "$s13SendbirdUIKit28SBUQuotedMessageViewProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -235539,13 +240917,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -235901,15 +241272,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNewMessageInfo(im)setupViews", + "usr": "s:13SendbirdUIKit17SBUNewMessageInfoC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit17SBUNewMessageInfoC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -235929,15 +241297,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNewMessageInfo(im)setupLayouts", + "usr": "s:13SendbirdUIKit17SBUNewMessageInfoC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit17SBUNewMessageInfoC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -235957,15 +241322,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNewMessageInfo(im)setupStyles", + "usr": "s:13SendbirdUIKit17SBUNewMessageInfoC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit17SBUNewMessageInfoC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -236129,6 +241491,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -236191,13 +241560,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -244142,6 +249504,346 @@ } ] }, + { + "kind": "Var", + "name": "shouldHideQuickReply", + "printedName": "shouldHideQuickReply", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(py)shouldHideQuickReply", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC20shouldHideQuickReplySbvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)shouldHideQuickReply", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC20shouldHideQuickReplySbvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "quickReplyView", + "printedName": "quickReplyView", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyView?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(py)quickReplyView", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC14quickReplyViewAA08SBUQuickgH0CSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyView?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)quickReplyView", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC14quickReplyViewAA08SBUQuickgH0CSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "quickReplySelectHandler", + "printedName": "quickReplySelectHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((SendbirdUIKit.SBUQuickReplyOptionView) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SendbirdUIKit.SBUQuickReplyOptionView) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(py)quickReplySelectHandler", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC23quickReplySelectHandleryAA08SBUQuickG10OptionViewCcSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((SendbirdUIKit.SBUQuickReplyOptionView) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SendbirdUIKit.SBUQuickReplyOptionView) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)quickReplySelectHandler", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC23quickReplySelectHandleryAA08SBUQuickG10OptionViewCcSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((SendbirdUIKit.SBUQuickReplyOptionView) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SendbirdUIKit.SBUQuickReplyOptionView) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)setQuickReplySelectHandler:", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC23quickReplySelectHandleryAA08SBUQuickG10OptionViewCcSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit18SBUUserMessageCellC23quickReplySelectHandleryAA08SBUQuickG10OptionViewCcSgvM", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC23quickReplySelectHandleryAA08SBUQuickG10OptionViewCcSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cardListView", + "printedName": "cardListView", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardListView?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListView", + "printedName": "SendbirdUIKit.SBUCardListView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(py)cardListView", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC12cardListViewAA07SBUCardgH0CSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardListView?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListView", + "printedName": "SendbirdUIKit.SBUCardListView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)cardListView", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC12cardListViewAA07SBUCardgH0CSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, { "kind": "Function", "name": "setupViews", @@ -244514,6 +250216,79 @@ ], "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "updateQuickReplyView", + "printedName": "updateQuickReplyView(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)updateQuickReplyViewWith:", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC20updateQuickReplyView4withySaySSG_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addCardListView", + "printedName": "addCardListView(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit18SBUUserMessageCellC15addCardListView4withySayAA07SBUCardI6ParamsVG_tF", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC15addCardListView4withySayAA07SBUCardI6ParamsVG_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, { "kind": "Function", "name": "userMessageTextView", @@ -244637,6 +250412,42 @@ "Required" ], "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "quickReplyView", + "printedName": "quickReplyView(_:didSelectOption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "declKind": "Func", + "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)quickReplyView:didSelectOption:", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC14quickReplyView_15didSelectOptionyAA08SBUQuickgH0C_AA0lgkH0CtF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Dynamic", + "Custom", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" } ], "declKind": "Class", @@ -244743,8 +250554,15 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SBUQuickReplyViewDelegate", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP", + "mangledName": "$s13SendbirdUIKit25SBUQuickReplyViewDelegateP" } ] }, @@ -244964,7 +250782,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -260869,8 +266687,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -261049,8 +266867,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "ObjC" ], @@ -261200,8 +267018,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "ObjC" ], @@ -263317,9 +269135,9 @@ "mangledName": "$s13SendbirdUIKit22SBUBaseFileContentViewC7message0A7ChatSDK0D7MessageCSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -263420,9 +269238,9 @@ "mangledName": "$s13SendbirdUIKit22SBUBaseFileContentViewC8positionAA15MessagePositionOvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -263604,6 +269422,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -263666,13 +269491,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -264128,9 +269946,9 @@ "mangledName": "$s13SendbirdUIKit22SBUNavigationTitleViewC4textSSSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -264231,9 +270049,9 @@ "mangledName": "$s13SendbirdUIKit22SBUNavigationTitleViewC13textAlignmentSo06NSTextG0Vvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -264373,14 +270191,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNavigationTitleView(im)setupViews", + "usr": "s:13SendbirdUIKit22SBUNavigationTitleViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit22SBUNavigationTitleViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -264399,14 +270214,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNavigationTitleView(im)setupLayouts", + "usr": "s:13SendbirdUIKit22SBUNavigationTitleViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit22SBUNavigationTitleViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -264425,14 +270237,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNavigationTitleView(im)setupStyles", + "usr": "s:13SendbirdUIKit22SBUNavigationTitleViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit22SBUNavigationTitleViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -264551,6 +270360,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -264613,13 +270429,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -268043,7 +273852,8 @@ "mangledName": "$s13SendbirdUIKit27SBUUserMessageTextViewModelV22addEditedStateIfNeeded4withySo25NSMutableAttributedStringC_tF", "moduleName": "SendbirdUIKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "funcSelfKind": "NonMutating" } @@ -281784,7 +287594,7 @@ { "kind": "Constructor", "name": "init", - "printedName": "init(backgroundColor:leftBackgroundColor:leftPressedBackgroundColor:rightBackgroundColor:rightPressedBackgroundColor:openChannelBackgroundColor:openChannelPressedBackgroundColor:dateFont:dateTextColor:dateBackgroundColor:userPlaceholderBackgroundColor:userPlaceholderTintColor:userNameFont:userNameTextColor:currentUserNameTextColor:timeFont:timeTextColor:pendingStateColor:failedStateColor:succeededStateColor:readReceiptStateColor:deliveryReceiptStateColor:userMessageFont:userMessageLeftTextColor:userMessageLeftEditTextColor:userMessageLeftHighlightTextColor:userMessageRightTextColor:userMessageRightEditTextColor:userMessageRightHighlightTextColor:fileIconBackgroundColor:fileImageBackgroundColor:fileImageIconColor:fileIconColor:fileMessageNameFont:fileMessageLeftTextColor:fileMessageRightTextColor:fileMessagePlaceholderColor:adminMessageFont:adminMessageTextColor:unknownMessageDescFont:unknownMessageDescLeftTextColor:unknownMessageDescRightTextColor:ogTitleFont:ogTitleColor:ogDescriptionFont:ogDescriptionColor:ogURLAddressFont:ogURLAddressColor:openChannelOGTitleColor:linkColor:contentBackgroundColor:pressedContentBackgroundColor:quotedMessageLeftBackgroundColor:quotedMessageRightBackgroundColor:quotedFileMessageThumbnailColor:quotedMessageTextColor:quotedMessageTextFont:repliedIconColor:repliedToTextColor:repliedToTextFont:repliedCountTextColor:repliedCountTextFont:repliedUsersMoreIconBackgroundColor:repliedUsersMoreIconTintColor:mentionTextFont:mentionLeftTextColor:mentionRightTextColor:mentionLeftTextBackgroundColor:mentionRightTextBackgroundColor:buttonBackgroundColor:buttonTitleColor:sideButtonIconColor:newMessageBadgeColor:parentInfoBackgroundColor:parentInfoUserNameTextFont:parentInfoUserNameTextColor:parentInfoDateFont:parentInfoDateTextColor:parentInfoMoreButtonTintColor:parentInfoSeparateBarColor:parentInfoReplyCountTextColor:parentInfoReplyCountTextFont:parentInfoProgressBackgroundColor:progressTrackTintColor:progressTimeFont:progressTimeRightTextColor:progressTimeLeftTextColor:statusButtonBackgroundColor:loadingButtonTintColor:playButtonTintColor:pauseButtonTintColor:)", + "printedName": "init(backgroundColor:leftBackgroundColor:leftPressedBackgroundColor:rightBackgroundColor:rightPressedBackgroundColor:openChannelBackgroundColor:openChannelPressedBackgroundColor:dateFont:dateTextColor:dateBackgroundColor:userPlaceholderBackgroundColor:userPlaceholderTintColor:userNameFont:userNameTextColor:currentUserNameTextColor:timeFont:timeTextColor:pendingStateColor:failedStateColor:succeededStateColor:readReceiptStateColor:deliveryReceiptStateColor:userMessageFont:userMessageLeftTextColor:userMessageLeftEditTextColor:userMessageLeftHighlightTextColor:userMessageRightTextColor:userMessageRightEditTextColor:userMessageRightHighlightTextColor:fileIconBackgroundColor:fileImageBackgroundColor:fileImageIconColor:fileIconColor:fileMessageNameFont:fileMessageLeftTextColor:fileMessageRightTextColor:fileMessagePlaceholderColor:adminMessageFont:adminMessageTextColor:unknownMessageDescFont:unknownMessageDescLeftTextColor:unknownMessageDescRightTextColor:ogTitleFont:ogTitleColor:ogDescriptionFont:ogDescriptionColor:ogURLAddressFont:ogURLAddressColor:openChannelOGTitleColor:linkColor:contentBackgroundColor:pressedContentBackgroundColor:quotedMessageLeftBackgroundColor:quotedMessageRightBackgroundColor:quotedFileMessageThumbnailColor:quotedMessageTextColor:quotedMessageTextFont:repliedIconColor:repliedToTextColor:repliedToTextFont:repliedCountTextColor:repliedCountTextFont:repliedUsersMoreIconBackgroundColor:repliedUsersMoreIconTintColor:mentionTextFont:mentionLeftTextColor:mentionRightTextColor:mentionLeftTextBackgroundColor:mentionRightTextBackgroundColor:buttonBackgroundColor:buttonTitleColor:sideButtonIconColor:newMessageBadgeColor:parentInfoBackgroundColor:parentInfoUserNameTextFont:parentInfoUserNameTextColor:parentInfoDateFont:parentInfoDateTextColor:parentInfoMoreButtonTintColor:parentInfoSeparateBarColor:parentInfoReplyCountTextColor:parentInfoReplyCountTextFont:parentInfoProgressBackgroundColor:progressTrackTintColor:progressTimeFont:progressTimeRightTextColor:progressTimeLeftTextColor:statusButtonBackgroundColor:loadingButtonTintColor:playButtonTintColor:pauseButtonTintColor:selectableTitleFont:)", "children": [ { "kind": "TypeNominal", @@ -282428,11 +288238,18 @@ "printedName": "UIKit.UIColor", "hasDefaultArg": true, "usr": "c:objc(cs)UIColor" + }, + { + "kind": "TypeNominal", + "name": "UIFont", + "printedName": "UIKit.UIFont", + "hasDefaultArg": true, + "usr": "c:objc(cs)UIFont" } ], "declKind": "Constructor", - "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC15backgroundColor014leftBackgroundG00h7PressediG005rightiG00kjiG0011openChanneliG00lmjiG08dateFont0n4TextG00niG0015userPlaceholderiG00qr4TintG00q4NameO00qtpG0011currentUsertpG004timeO00wpG0012pendingStateG006failedyG009succeededyG0011readReceiptyG0015deliveryReceiptyG00q7MessageO00q11MessageLeftpG00q15MessageLeftEditpG00q20MessageLeftHighlightpG00q12MessageRightpG00q16MessageRightEditpG00q21MessageRightHighlightpG008fileIconiG009fileImageiG0013fileImageIconG008fileIconG0011fileMessagetO0015fileMessageLeftpG0016fileMessageRightpG0011fileMessagerG0012adminMessageO0012adminMessagepG0018unknownMessageDescO0022unknownMessageDescLeftpG0023unknownMessageDescRightpG007ogTitleO007ogTitleG0013ogDescriptionO0013ogDescriptionG0012ogURLAddressO0012ogURLAddressG00lm7OGTitleG004linkG007contentiG0014pressedContentiG0017quotedMessageLeftiG0018quotedMessageRightiG0026quotedFileMessageThumbnailG0013quotedMessagepG0013quotedMessagepO0011repliedIconG009repliedTopG009repliedTopO0012repliedCountpG0012repliedCountpO0020repliedUsersMoreIconiG0020repliedUsersMoreIconsG007mentionpO0011mentionLeftpG0012mentionRightpG0011mentionLeftpiG0012mentionRightpiG006buttoniG0011buttonTitleG0014sideButtonIconG0015newMessageBadgeG0010parentInfoiG0010parentInfovtpO0010parentInfovtpG0014parentInfoDateO0014parentInfoDatepG0020parentInfoMoreButtonsG0021parentInfoSeparateBarG0020parentInfoReplyCountpG0020parentInfoReplyCountpO0018parentInfoProgressiG0013progressTracksG0012progressTimeO0017progressTimeRightpG0016progressTimeLeftpG0012statusButtoniG0013loadingButtonsG0010playButtonsG0011pauseButtonsG0ACSo7UIColorC_A68_A68_A68_A68_A68_A68_So6UIFontCA68_A68_A68_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A68_A68_A70_A68_A70_A68_A68_A70_A68_A70_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A68_A70_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A70_A68_A68_A68_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_tcfc", - "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC15backgroundColor014leftBackgroundG00h7PressediG005rightiG00kjiG0011openChanneliG00lmjiG08dateFont0n4TextG00niG0015userPlaceholderiG00qr4TintG00q4NameO00qtpG0011currentUsertpG004timeO00wpG0012pendingStateG006failedyG009succeededyG0011readReceiptyG0015deliveryReceiptyG00q7MessageO00q11MessageLeftpG00q15MessageLeftEditpG00q20MessageLeftHighlightpG00q12MessageRightpG00q16MessageRightEditpG00q21MessageRightHighlightpG008fileIconiG009fileImageiG0013fileImageIconG008fileIconG0011fileMessagetO0015fileMessageLeftpG0016fileMessageRightpG0011fileMessagerG0012adminMessageO0012adminMessagepG0018unknownMessageDescO0022unknownMessageDescLeftpG0023unknownMessageDescRightpG007ogTitleO007ogTitleG0013ogDescriptionO0013ogDescriptionG0012ogURLAddressO0012ogURLAddressG00lm7OGTitleG004linkG007contentiG0014pressedContentiG0017quotedMessageLeftiG0018quotedMessageRightiG0026quotedFileMessageThumbnailG0013quotedMessagepG0013quotedMessagepO0011repliedIconG009repliedTopG009repliedTopO0012repliedCountpG0012repliedCountpO0020repliedUsersMoreIconiG0020repliedUsersMoreIconsG007mentionpO0011mentionLeftpG0012mentionRightpG0011mentionLeftpiG0012mentionRightpiG006buttoniG0011buttonTitleG0014sideButtonIconG0015newMessageBadgeG0010parentInfoiG0010parentInfovtpO0010parentInfovtpG0014parentInfoDateO0014parentInfoDatepG0020parentInfoMoreButtonsG0021parentInfoSeparateBarG0020parentInfoReplyCountpG0020parentInfoReplyCountpO0018parentInfoProgressiG0013progressTracksG0012progressTimeO0017progressTimeRightpG0016progressTimeLeftpG0012statusButtoniG0013loadingButtonsG0010playButtonsG0011pauseButtonsG0ACSo7UIColorC_A68_A68_A68_A68_A68_A68_So6UIFontCA68_A68_A68_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A68_A68_A70_A68_A70_A68_A68_A70_A68_A70_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A68_A70_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A70_A68_A68_A68_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_tcfc", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC15backgroundColor014leftBackgroundG00h7PressediG005rightiG00kjiG0011openChanneliG00lmjiG08dateFont0n4TextG00niG0015userPlaceholderiG00qr4TintG00q4NameO00qtpG0011currentUsertpG004timeO00wpG0012pendingStateG006failedyG009succeededyG0011readReceiptyG0015deliveryReceiptyG00q7MessageO00q11MessageLeftpG00q15MessageLeftEditpG00q20MessageLeftHighlightpG00q12MessageRightpG00q16MessageRightEditpG00q21MessageRightHighlightpG008fileIconiG009fileImageiG0013fileImageIconG008fileIconG0011fileMessagetO0015fileMessageLeftpG0016fileMessageRightpG0011fileMessagerG0012adminMessageO0012adminMessagepG0018unknownMessageDescO0022unknownMessageDescLeftpG0023unknownMessageDescRightpG007ogTitleO007ogTitleG0013ogDescriptionO0013ogDescriptionG0012ogURLAddressO0012ogURLAddressG00lm7OGTitleG004linkG007contentiG0014pressedContentiG0017quotedMessageLeftiG0018quotedMessageRightiG0026quotedFileMessageThumbnailG0013quotedMessagepG0013quotedMessagepO0011repliedIconG009repliedTopG009repliedTopO0012repliedCountpG0012repliedCountpO0020repliedUsersMoreIconiG0020repliedUsersMoreIconsG007mentionpO0011mentionLeftpG0012mentionRightpG0011mentionLeftpiG0012mentionRightpiG006buttoniG0011buttonTitleG0014sideButtonIconG0015newMessageBadgeG0010parentInfoiG0010parentInfovtpO0010parentInfovtpG0014parentInfoDateO0014parentInfoDatepG0020parentInfoMoreButtonsG0021parentInfoSeparateBarG0020parentInfoReplyCountpG0020parentInfoReplyCountpO0018parentInfoProgressiG0013progressTracksG0012progressTimeO0017progressTimeRightpG0016progressTimeLeftpG0012statusButtoniG0013loadingButtonsG0010playButtonsG0011pauseButtonsG0015selectableTitleO0ACSo7UIColorC_A69_A69_A69_A69_A69_A69_So6UIFontCA69_A69_A69_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A69_A69_A71_A69_A71_A69_A69_A71_A69_A71_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A69_A71_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A71_A69_A69_A69_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A71_tcfc", + "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC15backgroundColor014leftBackgroundG00h7PressediG005rightiG00kjiG0011openChanneliG00lmjiG08dateFont0n4TextG00niG0015userPlaceholderiG00qr4TintG00q4NameO00qtpG0011currentUsertpG004timeO00wpG0012pendingStateG006failedyG009succeededyG0011readReceiptyG0015deliveryReceiptyG00q7MessageO00q11MessageLeftpG00q15MessageLeftEditpG00q20MessageLeftHighlightpG00q12MessageRightpG00q16MessageRightEditpG00q21MessageRightHighlightpG008fileIconiG009fileImageiG0013fileImageIconG008fileIconG0011fileMessagetO0015fileMessageLeftpG0016fileMessageRightpG0011fileMessagerG0012adminMessageO0012adminMessagepG0018unknownMessageDescO0022unknownMessageDescLeftpG0023unknownMessageDescRightpG007ogTitleO007ogTitleG0013ogDescriptionO0013ogDescriptionG0012ogURLAddressO0012ogURLAddressG00lm7OGTitleG004linkG007contentiG0014pressedContentiG0017quotedMessageLeftiG0018quotedMessageRightiG0026quotedFileMessageThumbnailG0013quotedMessagepG0013quotedMessagepO0011repliedIconG009repliedTopG009repliedTopO0012repliedCountpG0012repliedCountpO0020repliedUsersMoreIconiG0020repliedUsersMoreIconsG007mentionpO0011mentionLeftpG0012mentionRightpG0011mentionLeftpiG0012mentionRightpiG006buttoniG0011buttonTitleG0014sideButtonIconG0015newMessageBadgeG0010parentInfoiG0010parentInfovtpO0010parentInfovtpG0014parentInfoDateO0014parentInfoDatepG0020parentInfoMoreButtonsG0021parentInfoSeparateBarG0020parentInfoReplyCountpG0020parentInfoReplyCountpO0018parentInfoProgressiG0013progressTracksG0012progressTimeO0017progressTimeRightpG0016progressTimeLeftpG0012statusButtoniG0013loadingButtonsG0010playButtonsG0011pauseButtonsG0015selectableTitleO0ACSo7UIColorC_A69_A69_A69_A69_A69_A69_So6UIFontCA69_A69_A69_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A69_A69_A71_A69_A71_A69_A69_A71_A69_A71_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A69_A71_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A71_A69_A69_A69_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A71_tcfc", "moduleName": "SendbirdUIKit", "declAttributes": [ "AccessControl" @@ -290295,6 +296112,92 @@ } ] }, + { + "kind": "Var", + "name": "selectableTitleFont", + "printedName": "selectableTitleFont", + "children": [ + { + "kind": "TypeNominal", + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvp", + "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvg", + "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvs", + "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvM", + "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { "kind": "Var", "name": "unknownMessageDescTextColor", @@ -314044,9 +319947,9 @@ "mangledName": "$s13SendbirdUIKit19SBUImageContentViewC05imageE0So07UIImageE0Cvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -314226,9 +320129,9 @@ "mangledName": "$s13SendbirdUIKit19SBUImageContentViewC15widthConstraintSo08NSLayoutG0CSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -314337,9 +320240,9 @@ "mangledName": "$s13SendbirdUIKit19SBUImageContentViewC16heightConstraintSo08NSLayoutG0CSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -314435,15 +320338,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUImageContentView(im)setupViews", + "usr": "s:13SendbirdUIKit19SBUImageContentViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit19SBUImageContentViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -314462,15 +320362,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUImageContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit19SBUImageContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit19SBUImageContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -314715,6 +320612,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -314777,13 +320681,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -317181,9 +323078,9 @@ "mangledName": "$s13SendbirdUIKit22SBUUserMessageTextViewC04textF0AA016SBULinkClickableeF0Cvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -317903,9 +323800,9 @@ "mangledName": "$s13SendbirdUIKit22SBUUserMessageTextViewC8delegateAA0cdeF8Delegate_pSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "ReferenceOwnership", "AccessControl" ], @@ -318099,15 +323996,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageTextView(im)setupViews", + "usr": "s:13SendbirdUIKit22SBUUserMessageTextViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit22SBUUserMessageTextViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -318126,15 +324020,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageTextView(im)setupLayouts", + "usr": "s:13SendbirdUIKit22SBUUserMessageTextViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit22SBUUserMessageTextViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -318175,15 +324066,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageTextView(im)setupStyles", + "usr": "s:13SendbirdUIKit22SBUUserMessageTextViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit22SBUUserMessageTextViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -318289,6 +324177,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -318351,13 +324246,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -331148,8 +337036,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -331267,8 +337155,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "ObjC" ], @@ -331471,8 +337359,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment" ], @@ -333986,6 +339874,159 @@ "RawDocComment" ] }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyOptions", + "printedName": "SBUQuickReplyOptions", + "children": [ + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV7optionsSaySSGvp", + "mangledName": "$s13SendbirdUIKit20SBUQuickReplyOptionsV7optionsSaySSGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV7optionsSaySSGvg", + "mangledName": "$s13SendbirdUIKit20SBUQuickReplyOptionsV7optionsSaySSGvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptions", + "printedName": "SendbirdUIKit.SBUQuickReplyOptions", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s13SendbirdUIKit20SBUQuickReplyOptionsV4fromACs7Decoder_p_tKcfc", + "moduleName": "SendbirdUIKit", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV6encode2toys7Encoder_p_tKF", + "mangledName": "$s13SendbirdUIKit20SBUQuickReplyOptionsV6encode2toys7Encoder_p_tKF", + "moduleName": "SendbirdUIKit", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV", + "mangledName": "$s13SendbirdUIKit20SBUQuickReplyOptionsV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "SendbirdChatSDK", @@ -337547,15 +343588,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuoteMessageInputView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUQuoteMessageInputViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuoteMessageInputViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -337574,15 +343612,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuoteMessageInputView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUQuoteMessageInputViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuoteMessageInputViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -337601,15 +343636,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuoteMessageInputView(im)setupActions", + "usr": "s:13SendbirdUIKit24SBUQuoteMessageInputViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuoteMessageInputViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -337628,15 +343660,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuoteMessageInputView(im)setupStyles", + "usr": "s:13SendbirdUIKit24SBUQuoteMessageInputViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUQuoteMessageInputViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -337935,6 +343964,13 @@ "usr": "s:13SendbirdUIKit32SBUQuoteMessageInputViewProtocolP", "mangledName": "$s13SendbirdUIKit32SBUQuoteMessageInputViewProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -337997,13 +344033,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -345143,6 +351172,275 @@ } ] }, + { + "kind": "TypeDecl", + "name": "UserMessage", + "printedName": "UserMessage", + "children": [ + { + "kind": "Var", + "name": "quickReply", + "printedName": "quickReply", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyOptions?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptions", + "printedName": "SendbirdUIKit.SBUQuickReplyOptions", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15SendbirdChatSDK11UserMessageC0A5UIKitE10quickReplyAD08SBUQuickH7OptionsVSgvp", + "mangledName": "$s15SendbirdChatSDK11UserMessageC0A5UIKitE10quickReplyAD08SBUQuickH7OptionsVSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyOptions?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptions", + "printedName": "SendbirdUIKit.SBUQuickReplyOptions", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15SendbirdChatSDK11UserMessageC0A5UIKitE10quickReplyAD08SBUQuickH7OptionsVSgvg", + "mangledName": "$s15SendbirdChatSDK11UserMessageC0A5UIKitE10quickReplyAD08SBUQuickH7OptionsVSgvg", + "moduleName": "SendbirdUIKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cardListData", + "printedName": "cardListData", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15SendbirdChatSDK11UserMessageC0A5UIKitE12cardListDataSDySSypGSgvp", + "mangledName": "$s15SendbirdChatSDK11UserMessageC0A5UIKitE12cardListDataSDySSypGSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15SendbirdChatSDK11UserMessageC0A5UIKitE12cardListDataSDySSypGSgvg", + "mangledName": "$s15SendbirdChatSDK11UserMessageC0A5UIKitE12cardListDataSDySSypGSgvg", + "moduleName": "SendbirdUIKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdChatSDK@objc(cs)SBDUserMessage", + "mangledName": "$s15SendbirdChatSDK11UserMessageC", + "moduleName": "SendbirdChatSDK", + "isOpen": true, + "objc_name": "SBDUserMessage", + "declAttributes": [ + "ObjC" + ], + "superclassUsr": "c:@M@SendbirdChatSDK@objc(cs)SBDBaseMessage", + "isExternal": true, + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "SendbirdChatSDK.BaseMessage", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Identifiable", + "printedName": "Identifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "ID", + "printedName": "ID", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHashable", + "printedName": "Swift.AnyHashable", + "usr": "s:s11AnyHashableV" + } + ] + } + ], + "usr": "s:s12IdentifiableP", + "mangledName": "$ss12IdentifiableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Serializable", + "printedName": "Serializable", + "usr": "c:@M@SendbirdChatSDK@objc(pl)Serializable", + "mangledName": "$s15SendbirdChatSDK12SerializableP" + }, + { + "kind": "Conformance", + "name": "Mappable", + "printedName": "Mappable", + "usr": "c:@M@SendbirdChatSDK@objc(pl)Mappable", + "mangledName": "$s15SendbirdChatSDK8MappableP" + } + ] + }, { "kind": "TypeDecl", "name": "Array", @@ -345330,13 +351628,6 @@ "usr": "s:s24_DestructorSafeContainerP", "mangledName": "$ss24_DestructorSafeContainerP" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, { "kind": "Conformance", "name": "_ArrayProtocol", @@ -345793,6 +352084,13 @@ "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, { "kind": "Conformance", "name": "Hashable", @@ -347386,48411 +353684,11675 @@ "name": "CustomStringConvertible", "printedName": "CustomStringConvertible", "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 2158, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 3254, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4667, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4677, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4685, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 6704, - "length": 32, - "value": "\"[Failed] Channel object is nil\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "BooleanLiteral", - "offset": 7288, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 7567, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 7600, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 7603, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "BooleanLiteral", - "offset": 9966, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 10021, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "StringLiteral", - "offset": 421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 679, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1511, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1592, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1603, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1612, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1623, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1697, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1709, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1797, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1887, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "BooleanLiteral", - "offset": 1918, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1980, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 2098, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "BooleanLiteral", - "offset": 3250, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "BooleanLiteral", - "offset": 3866, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 5522, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 5863, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "Array", - "offset": 5935, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 14687, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 14731, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 14762, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 15162, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 15227, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 15238, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 15280, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 15322, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 15363, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 15586, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 15635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 16406, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "Array", - "offset": 17498, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "Array", - "offset": 17851, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18115, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18155, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19056, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19112, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19197, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19203, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19331, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19337, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 19472, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19526, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 20519, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 20529, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 20537, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 20548, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 22806, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23035, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23084, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24068, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24209, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24344, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24500, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 25857, - "length": 44, - "value": "\"Couldn't find cell for row at \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 25900, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 25982, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 27304, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 28861, - "length": 50, - "value": "\"[Request] Delete message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 28910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 30808, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 32854, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "Array", - "offset": 33363, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 35949, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 36665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 42180, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 42805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 43124, - "length": 32, - "value": "\"Needs to implement this method\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 44539, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 44902, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 45756, - "length": 14, - "value": "\"unknown Type\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46356, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46422, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46557, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46607, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46728, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46782, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46934, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 47004, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 47557, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 47747, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48653, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48714, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48818, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48922, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 50304, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 51221, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 51413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 51581, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 51616, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 51757, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 51951, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 52208, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 52641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 52653, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 52688, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 53090, - "length": 46, - "value": "\"New messages inserted : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 53135, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 53249, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 53789, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 53870, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 54386, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 54402, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 54533, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 54938, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 54954, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 55085, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 11, - "value": "\"templates\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 11, - "value": "\"templates\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 1525, - "length": 28, - "value": "\"No have templates in cache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 3545, - "length": 58, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 3577, - "length": 1, - "value": "\".queue.diskcache.template\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "IntegerLiteral", - "offset": 3676, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 3715, - "length": 30, - "value": "\"sbu_template_list_updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 4411, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 4664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "IntegerLiteral", - "offset": 6457, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "Dictionary", - "offset": 6500, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 6640, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 7333, - "length": 49, - "value": "\"Failed to save template to disk cache: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 7381, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 8016, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 8408, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 8988, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9020, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9487, - "length": 33, - "value": "\"Could not remove path: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 9819, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9860, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9951, - "length": 20, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9969, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 10874, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 11251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 11325, - "length": 43, - "value": "\"Error writing to file: lastTokenKey value\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "Dictionary", - "offset": 12102, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Common.swift", - "kind": "BooleanLiteral", - "offset": 517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1301, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1867, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2412, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2423, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2484, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3023, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3027, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 3079, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 3298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.Header.swift", - "kind": "StringLiteral", - "offset": 1669, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "BooleanLiteral", - "offset": 581, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "BooleanLiteral", - "offset": 615, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "BooleanLiteral", - "offset": 706, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "BooleanLiteral", - "offset": 873, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 986, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1146, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1315, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1812, - "length": 2, - "value": "53" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1824, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2006, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2105, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2470, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 488, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 557, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 648, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 700, - "length": 5, - "value": "380.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 750, - "length": 5, - "value": "276.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 810, - "length": 5, - "value": "294.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 869, - "length": 5, - "value": "274.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 1114, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 1924, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 2681, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 2822, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 2863, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 3039, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 3788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 3987, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 4425, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 4614, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6205, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6229, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6257, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 6472, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 6501, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 6531, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6739, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6768, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6955, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6984, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7057, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7062, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7067, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7378, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7405, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7988, - "length": 3, - "value": "251" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 8076, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 8088, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 8145, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 8202, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 8333, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 9917, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 10402, - "length": 10, - "value": "\"sub_type\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 10428, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 10467, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 10577, - "length": 10, - "value": "\"sub_data\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 10681, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 11261, - "length": 5, - "value": "\"\\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 11274, - "length": 7, - "value": "\"\\\\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 11349, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 11361, - "length": 5, - "value": "\"\\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 11537, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 11636, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 11685, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 11709, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 11799, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 13399, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 15307, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 15691, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "Array", - "offset": 15793, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "Array", - "offset": 15942, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16020, - "length": 14, - "value": "\"template_key\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16081, - "length": 6, - "value": "\"tags\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "Array", - "offset": 16105, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 16212, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 16337, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16373, - "length": 12, - "value": "\"noti:stats\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16407, - "length": 9, - "value": "\"clicked\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16438, - "length": 14, - "value": "\"notification\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16573, - "length": 8, - "value": "\"action\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16607, - "length": 14, - "value": "\"template_key\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16652, - "length": 13, - "value": "\"channel_url\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16703, - "length": 6, - "value": "\"tags\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16733, - "length": 12, - "value": "\"message_id\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16782, - "length": 8, - "value": "\"source\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16816, - "length": 12, - "value": "\"message_ts\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16901, - "length": 79, - "value": "\"[\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16917, - "length": 9, - "value": "\"Succeed\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16929, - "length": 8, - "value": "\"Failed\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16938, - "length": 1, - "value": "\"] SendbirdStatistics - \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16968, - "length": 1, - "value": "\", \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16979, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "FloatLiteral", - "offset": 3208, - "length": 4, - "value": "76.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "Array", - "offset": 3978, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "StringLiteral", - "offset": 4390, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5624, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "FloatLiteral", - "offset": 5857, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6303, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6321, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6332, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 9523, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "StringLiteral", - "offset": 9926, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10381, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11469, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7484, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7492, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 8328, - "length": 105, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 8421, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 8428, - "length": 1, - "value": "\".jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 8465, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 8761, - "length": 24, - "value": "\"Failed to get mimeType\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 8888, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 10857, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "Dictionary", - "offset": 11089, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 11923, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 12016, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 12023, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 12040, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "Dictionary", - "offset": 12808, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 13214, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 13307, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 13314, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 13331, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 15921, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 16099, - "length": 105, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 16192, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 16199, - "length": 1, - "value": "\".jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 16417, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 17335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 18091, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 18178, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 18240, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 20040, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 20099, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 20705, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21065, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 21618, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 21623, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21679, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21741, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21820, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24042, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24271, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 24436, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 24522, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24654, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24845, - "length": 3, - "value": "164" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24898, - "length": 3, - "value": "196" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25032, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 25747, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25867, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25972, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25985, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 26242, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 26311, - "length": 3, - "value": "196" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "Array", - "offset": 26730, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 27243, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 27839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 28017, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 28420, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 28901, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 29697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 30022, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 31215, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 32387, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 33965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUOpenChannelViewController.Deprecated.swift", - "kind": "StringLiteral", - "offset": 3791, - "length": 26, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUOpenChannelViewController.Deprecated.swift", - "kind": "StringLiteral", - "offset": 3812, - "length": 4, - "value": "\"Cell\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.Deprecated.swift", - "kind": "StringLiteral", - "offset": 1146, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 67, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1412, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1432, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1826, - "length": 67, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1872, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1892, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "FloatLiteral", - "offset": 2469, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 3097, - "length": 26, - "value": "\"[Request] Channel update\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3173, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3325, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3497, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4156, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4336, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 703, - "length": 32, - "value": "\"SendbirdUIKit.SBUGroupChannelSettingsViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUHighlightMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUHighlightMessageInfo.swift", - "kind": "StringLiteral", - "offset": 1040, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUHighlightMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 1137, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 385, - "length": 21, - "value": "\"notificationSetting\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 21, - "value": "\"notificationSetting\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 1977, - "length": 25, - "value": "\"No have themes in cache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 4601, - "length": 55, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 4633, - "length": 1, - "value": "\".queue.diskcache.theme\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "IntegerLiteral", - "offset": 4729, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 4774, - "length": 45, - "value": "\"sbu_global_notification_settings_updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 4847, - "length": 45, - "value": "\"sbu_global_notification_settings_theme_mode\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 5546, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 5799, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "IntegerLiteral", - "offset": 7648, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "Dictionary", - "offset": 7688, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 7825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 8502, - "length": 46, - "value": "\"Failed to save theme to disk cache: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 8547, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 9182, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 9574, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 10154, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 10186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 10653, - "length": 33, - "value": "\"Could not remove path: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 10685, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 10985, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 11026, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 11117, - "length": 20, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 11135, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "IntegerLiteral", - "offset": 12082, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "IntegerLiteral", - "offset": 12367, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 12908, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 12917, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 13008, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 13090, - "length": 49, - "value": "\"Error writing to file: lastUpdatedTimeKey value\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 14011, - "length": 9, - "value": "\"default\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 14576, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 14658, - "length": 43, - "value": "\"Error writing to file: themeModeKey value\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "Dictionary", - "offset": 15503, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUAdminMessageCellParams.swift", - "kind": "StringLiteral", - "offset": 201, - "length": 25, - "value": "\"SendbirdUIKit.SBUAdminMessageCellParams\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2731, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "StringLiteral", - "offset": 2757, - "length": 38, - "value": "\"[Request] Register users: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2978, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3100, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "StringLiteral", - "offset": 3181, - "length": 42, - "value": "\"[Succeed] Register users request success\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "StringLiteral", - "offset": 614, - "length": 28, - "value": "\"SendbirdUIKit.SBURegisterOperatorViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 2652, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 2729, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 2793, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 3060, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 4313, - "length": 105, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 4406, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 4413, - "length": 1, - "value": "\".jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 4450, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 4691, - "length": 24, - "value": "\"Failed to get mimeType\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 4818, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 6572, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "Dictionary", - "offset": 6804, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 7638, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 7731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 7738, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 7755, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "Dictionary", - "offset": 8454, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 8860, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 8953, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 8960, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 8977, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 11384, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 11562, - "length": 105, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 11655, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 11662, - "length": 1, - "value": "\".jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 11878, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 12688, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 13545, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 13604, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 14186, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 14245, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUDashboardConfig.swift", - "kind": "IntegerLiteral", - "offset": 440, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "StringLiteral", - "offset": 3481, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4037, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "FloatLiteral", - "offset": 4270, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4324, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4697, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4707, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4715, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4726, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "StringLiteral", - "offset": 7897, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8290, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8437, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2593, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "StringLiteral", - "offset": 2619, - "length": 34, - "value": "\"Request invite users: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "StringLiteral", - "offset": 2652, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2855, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "StringLiteral", - "offset": 3058, - "length": 40, - "value": "\"[Succeed] Invite users request success\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "StringLiteral", - "offset": 567, - "length": 22, - "value": "\"SendbirdUIKit.SBUInviteUserViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "IntegerLiteral", - "offset": 494, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "BooleanLiteral", - "offset": 526, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "BooleanLiteral", - "offset": 807, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "BooleanLiteral", - "offset": 822, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "IntegerLiteral", - "offset": 862, - "length": 2, - "value": "91" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "IntegerLiteral", - "offset": 874, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "IntegerLiteral", - "offset": 922, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.List.swift", - "kind": "StringLiteral", - "offset": 2546, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3868, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1817, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2047, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2119, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2713, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2835, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3640, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3762, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4674, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4816, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4933, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5469, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5855, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5999, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "Array", - "offset": 572, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "Array", - "offset": 614, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1161, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1170, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1181, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1191, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1804, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1813, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1824, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1834, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1883, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1926, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 2258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 2325, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 2390, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 2442, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2702, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2710, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2721, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2845, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 2903, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 3042, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3101, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 3321, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 3357, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3822, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3856, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3947, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 4214, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 4374, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 4543, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5134, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5138, - "length": 2, - "value": "54" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5143, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5155, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 5389, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 5481, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5664, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5855, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5954, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 6903, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 8392, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.Header.swift", - "kind": "BooleanLiteral", - "offset": 5727, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 1011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 1119, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 1712, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 1753, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 2231, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3302, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5240, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5253, - "length": 2, - "value": "-8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5262, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5305, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5684, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5748, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 7090, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 11967, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 13046, - "length": 21, - "value": "\"Channel must exist!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 13388, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 13394, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 13562, - "length": 29, - "value": "\"There are no message cells!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 14324, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 15623, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 16339, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 17789, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "FloatLiteral", - "offset": 790, - "length": 4, - "value": "64.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1500, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1506, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1516, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1528, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 1855, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 1910, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 1978, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 2022, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2074, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 2163, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 2213, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2343, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3045, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3173, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3329, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3407, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3472, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "FloatLiteral", - "offset": 3525, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3793, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3871, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3935, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4169, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4238, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4396, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4474, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4538, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "FloatLiteral", - "offset": 4591, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4727, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 5509, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 5621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 6560, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 6672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4352, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4827, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "FloatLiteral", - "offset": 5073, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5415, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5425, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 9751, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10067, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10309, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/ChannelSettingItem\/SBUChannelSettingItem.swift", - "kind": "BooleanLiteral", - "offset": 731, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/ChannelSettingItem\/SBUChannelSettingItem.swift", - "kind": "BooleanLiteral", - "offset": 781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 686, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 709, - "length": 2, - "value": "27" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 730, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 753, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "StringLiteral", - "offset": 897, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1311, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2022, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 3250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateChannelModule.Header.swift", - "kind": "StringLiteral", - "offset": 4723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 5714, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 756, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 1439, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 1657, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 2474, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 2538, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 2699, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 2775, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "FloatLiteral", - "offset": 2881, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 2897, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 2960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 3163, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 3176, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 3187, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "FloatLiteral", - "offset": 3249, - "length": 4, - "value": "60.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "FloatLiteral", - "offset": 3263, - "length": 4, - "value": "60.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 3327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 3450, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 3657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 4111, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "StringLiteral", - "offset": 5292, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "BooleanLiteral", - "offset": 1492, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "BooleanLiteral", - "offset": 1774, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "FloatLiteral", - "offset": 1990, - "length": 4, - "value": "34.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "FloatLiteral", - "offset": 2037, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "BooleanLiteral", - "offset": 2798, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "BooleanLiteral", - "offset": 2909, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "BooleanLiteral", - "offset": 3033, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 3632, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 3785, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 3912, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4048, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4133, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4146, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4253, - "length": 3, - "value": "751" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4384, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4397, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4474, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4582, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4650, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4787, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4800, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "FloatLiteral", - "offset": 4811, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "FloatLiteral", - "offset": 4861, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 6987, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 7099, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "StringLiteral", - "offset": 722, - "length": 24, - "value": "\"SendbirdUIKit.SBUChannelInfoHeaderView\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCollectionViewFlowLayout.swift", - "kind": "BooleanLiteral", - "offset": 382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCollectionViewFlowLayout.swift", - "kind": "Array", - "offset": 654, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCollectionViewFlowLayout.swift", - "kind": "IntegerLiteral", - "offset": 1057, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 466, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 472, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 487, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 571, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 577, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 813, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 884, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1414, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1475, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1946, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1993, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2006, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2011, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2023, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2027, - "length": 3, - "value": "0xF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2034, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2045, - "length": 3, - "value": "0xF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2052, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2069, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2116, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2128, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2139, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2143, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2155, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2174, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2229, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2240, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2245, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2258, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2262, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2274, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2385, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2410, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2434, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2459, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 397, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 856, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 946, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "BooleanLiteral", - "offset": 977, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1039, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1157, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1428, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1524, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1572, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1618, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1666, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1717, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1729, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "Dictionary", - "offset": 4207, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 5082, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 5423, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "Array", - "offset": 5495, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 260, - "length": 5, - "value": "219.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 268, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 282, - "length": 5, - "value": "209.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 290, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 303, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 315, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 368, - "length": 5, - "value": "194.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 376, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 390, - "length": 5, - "value": "169.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 398, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 411, - "length": 5, - "value": "250.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 419, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 433, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 486, - "length": 5, - "value": "116.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 494, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 508, - "length": 4, - "value": "45.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 515, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 528, - "length": 5, - "value": "221.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 536, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 550, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 603, - "length": 4, - "value": "98.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 610, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 624, - "length": 4, - "value": "17.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 631, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 644, - "length": 5, - "value": "200.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 652, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 666, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 719, - "length": 4, - "value": "73.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 726, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 740, - "length": 4, - "value": "19.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 747, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 760, - "length": 5, - "value": "137.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 768, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 782, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 867, - "length": 5, - "value": "168.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 875, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 889, - "length": 5, - "value": "226.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 897, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 910, - "length": 5, - "value": "171.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 918, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 932, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 987, - "length": 5, - "value": "105.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 995, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1009, - "length": 5, - "value": "192.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1017, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1030, - "length": 5, - "value": "133.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1038, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1052, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1107, - "length": 4, - "value": "37.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1114, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1128, - "length": 5, - "value": "156.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1136, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1149, - "length": 5, - "value": "114.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1157, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1171, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1226, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1232, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1246, - "length": 5, - "value": "125.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1254, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1267, - "length": 5, - "value": "105.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1275, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1289, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1344, - "length": 3, - "value": "6.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1350, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1364, - "length": 5, - "value": "104.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1372, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1385, - "length": 4, - "value": "88.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1392, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1406, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1494, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1506, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1564, - "length": 5, - "value": "238.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1572, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1586, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1644, - "length": 5, - "value": "224.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1652, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1666, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1724, - "length": 5, - "value": "189.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1732, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1746, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1804, - "length": 4, - "value": "57.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1811, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1825, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1883, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1890, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1904, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1962, - "length": 4, - "value": "22.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1969, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1983, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2041, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2053, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2135, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2147, - "length": 4, - "value": "0.55" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2202, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2214, - "length": 4, - "value": "0.32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2298, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2310, - "length": 4, - "value": "0.88" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2365, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2377, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2431, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2443, - "length": 4, - "value": "0.38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2498, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2510, - "length": 4, - "value": "0.12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2592, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2604, - "length": 4, - "value": "0.88" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2658, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2670, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2723, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2735, - "length": 4, - "value": "0.38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2789, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2801, - "length": 4, - "value": "0.12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2879, - "length": 5, - "value": "253.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2887, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2901, - "length": 5, - "value": "170.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2909, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2922, - "length": 5, - "value": "170.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2930, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2944, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2995, - "length": 5, - "value": "246.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3003, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3017, - "length": 4, - "value": "97.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3024, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3037, - "length": 4, - "value": "97.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3044, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3058, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3109, - "length": 5, - "value": "222.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3117, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3131, - "length": 4, - "value": "54.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3138, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3151, - "length": 4, - "value": "11.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3158, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3172, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3223, - "length": 5, - "value": "191.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3231, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3245, - "length": 3, - "value": "7.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3251, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3264, - "length": 4, - "value": "17.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3271, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3285, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3336, - "length": 5, - "value": "157.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3344, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3358, - "length": 3, - "value": "9.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3364, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3377, - "length": 4, - "value": "30.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3384, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3398, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3484, - "length": 5, - "value": "173.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3492, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3506, - "length": 5, - "value": "201.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3514, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3527, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3539, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3617, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3629, - "length": 5, - "value": "242.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3637, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3650, - "length": 5, - "value": "182.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3658, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3672, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 1102, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 1702, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 3405, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 3415, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 3423, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 3434, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 4168, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8249, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8907, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 9492, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 9826, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10262, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11039, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11072, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13246, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 13604, - "length": 59, - "value": "\"[Failed] Create channel request: There is no channel url.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 14768, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15530, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "Dictionary", - "offset": 15819, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", - "kind": "BooleanLiteral", - "offset": 484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", - "kind": "BooleanLiteral", - "offset": 1363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", - "kind": "BooleanLiteral", - "offset": 1512, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", - "kind": "BooleanLiteral", - "offset": 2129, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", - "kind": "BooleanLiteral", - "offset": 2283, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 1272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 1625, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 1913, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 2729, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 2755, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 2819, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 3095, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 3675, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 3727, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4393, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4418, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4438, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4461, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4721, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4766, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4789, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 4897, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 5025, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5226, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5251, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5271, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5294, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5521, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5546, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5566, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5589, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 5697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 5719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 6115, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 8951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 9160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 10066, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 10709, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 10751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 10788, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 10882, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 13523, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 13691, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 13732, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 13910, - "length": 3, - "value": "250" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14156, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14256, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14267, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14381, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14483, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 14706, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 14739, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 15494, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 15531, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 15727, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 15821, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 15974, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16097, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16209, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16328, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16410, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 16559, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 16745, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16921, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 17022, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 17032, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 17145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 17248, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 17472, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 17505, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 18267, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 18304, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 18498, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 18593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 18748, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 18872, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 18985, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 19106, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 19189, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 19340, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 19949, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 20700, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 21463, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 21798, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 21858, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 22754, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 22987, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 23481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 23614, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 26203, - "length": 3, - "value": "751" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 26443, - "length": 3, - "value": "751" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 27041, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 27173, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 27693, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 27759, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 27839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 29310, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 29385, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 29867, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 29896, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 30060, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 30159, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 30437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 30599, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 30610, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 30852, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 31232, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 31645, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 31920, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 32195, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 32689, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 32814, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 32869, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 32902, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 32948, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 33572, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 34413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 34492, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 34567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 35164, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 35337, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 36298, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 36436, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 37119, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 37194, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 37753, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 37782, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 37946, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 38045, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 38327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 38491, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 38502, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 38744, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 39126, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 39530, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 39807, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 40082, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 40517, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 40907, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 40986, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 41061, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 41662, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 42501, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 42931, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 43991, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 44105, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 44738, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 45337, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 45469, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 45495, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 45657, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 45813, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 46090, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 46972, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 47744, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 48433, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 48460, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 48618, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 48778, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 49173, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 50088, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 50803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 52064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 52940, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 53386, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 54652, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 54026, - "length": 23, - "value": "\"SendbirdUIKit.MessageTemplateBaseView\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 55845, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 55886, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 55971, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 56051, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 56093, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 58180, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 58254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 58768, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 59140, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 59689, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 60302, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 60440, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 61379, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 61449, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 61547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 61630, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 61712, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 61798, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 62188, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 62648, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 62992, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 63584, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 64319, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 64587, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 65356, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 65370, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 65970, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 65984, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 1095, - "length": 23, - "value": "\"SendbirdUIKit.MessageTemplateRenderer\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 67169, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 67554, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 67611, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 67617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 68095, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 68154, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 68668, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 68872, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 68971, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 69108, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 69581, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 69749, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 69755, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 70550, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "BooleanLiteral", - "offset": 953, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "BooleanLiteral", - "offset": 1096, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 2958, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 2971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 2979, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 2990, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "BooleanLiteral", - "offset": 3879, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "StringLiteral", - "offset": 4710, - "length": 22, - "value": "\"didSelectChannelInfo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "StringLiteral", - "offset": 4987, - "length": 30, - "value": "\"didSelectChannelParticipants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUMessageWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 573, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUMessageWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 602, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "Array", - "offset": 1611, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 1916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 2215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 4065, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 5362, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7147, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7157, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7165, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7176, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8522, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8782, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 9190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 10203, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 10529, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 10562, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 10565, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 14782, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 15799, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "Array", - "offset": 16065, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 16531, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 16586, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 18313, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 18683, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUStackView.swift", - "kind": "FloatLiteral", - "offset": 512, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/NSObject+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 362, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/NSObject+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 453, - "length": 27, - "value": "\"Class name couldn't find.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/NSObject+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 696, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/NSObject+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 745, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/NSObject+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 853, - "length": 27, - "value": "\"Class name couldn't find.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 1670, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2934, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 3850, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 4089, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 4304, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 5157, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 5541, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 5808, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6008, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 6056, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 6070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6225, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 7215, - "length": 8, - "value": "\"thumb_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 7797, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 8200, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 9795, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 10158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 10237, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 15, - "value": "\"Group Channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 300, - "length": 14, - "value": "\"Open Channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1256, - "length": 7, - "value": "\"image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1296, - "length": 5, - "value": "\"svg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1378, - "length": 7, - "value": "\"video\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1431, - "length": 7, - "value": "\"audio\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1553, - "length": 7, - "value": "\"voice\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1670, - "length": 5, - "value": "\"pdf\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1894, - "length": 3, - "value": "\";\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 1928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1993, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 2991, - "length": 4, - "value": "\", \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 5998, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 6074, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "BooleanLiteral", - "offset": 6604, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "BooleanLiteral", - "offset": 6644, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "BooleanLiteral", - "offset": 7223, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "BooleanLiteral", - "offset": 7263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 7391, - "length": 10, - "value": "\" \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 7444, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "FloatLiteral", - "offset": 7482, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 8036, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 8040, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "BooleanLiteral", - "offset": 8815, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 9395, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 9402, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 9435, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 9443, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 9483, - "length": 11, - "value": "\"%02d:%02d\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 695, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 741, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1048, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1074, - "length": 3, - "value": "-12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1096, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1119, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1176, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1288, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1314, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1336, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "StringLiteral", - "offset": 1724, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2136, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2513, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 266, - "length": 8, - "value": "\"Cancel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 302, - "length": 4, - "value": "\"OK\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 337, - "length": 7, - "value": "\"Retry\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 374, - "length": 6, - "value": "\"Save\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 410, - "length": 6, - "value": "\"Copy\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 448, - "length": 8, - "value": "\"Delete\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 486, - "length": 6, - "value": "\"Edit\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 524, - "length": 8, - "value": "\"Remove\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 8, - "value": "\"Camera\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 615, - "length": 15, - "value": "\"Photo library\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 664, - "length": 7, - "value": "\"Files\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 704, - "length": 12, - "value": "\"Loading...\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 748, - "length": 8, - "value": "\"Invite\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 791, - "length": 12, - "value": "\"Take photo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 840, - "length": 14, - "value": "\"Choose photo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 891, - "length": 14, - "value": "\"Remove photo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 942, - "length": 14, - "value": "\"View library\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 988, - "length": 8, - "value": "\"Search\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1030, - "length": 10, - "value": "\"Settings\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1071, - "length": 7, - "value": "\"Reply\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1142, - "length": 34, - "value": "\"Are you sure you want to delete?\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1227, - "length": 41, - "value": "\"Please allow camera usage from settings\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1325, - "length": 34, - "value": "\"Please Allow PhotoLibrary Access\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1424, - "length": 60, - "value": "\"PhotoLibrary access required to get your photos and videos\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1608, - "length": 45, - "value": "\"Please allow microphone usage from settings\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1721, - "length": 11, - "value": "\"Yesterday\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1828, - "length": 8, - "value": "\"%lld%@\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 1858, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1863, - "length": 7, - "value": "\"years\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1873, - "length": 6, - "value": "\"year\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1981, - "length": 8, - "value": "\"%lld%@\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 2011, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2016, - "length": 6, - "value": "\"days\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2025, - "length": 5, - "value": "\"day\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2134, - "length": 11, - "value": "\"%lldmonth\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 7, - "value": "\"%lldh\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2377, - "length": 7, - "value": "\"%lldm\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2435, - "length": 5, - "value": "\"ago\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2473, - "length": 4, - "value": "\"on\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2556, - "length": 10, - "value": "\"Channels\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2621, - "length": 18, - "value": "\"uploaded a file.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2709, - "length": 15, - "value": "\"Group Channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2773, - "length": 14, - "value": "\"(No members)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 11, - "value": "\"Last seen\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3143, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3212, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3226, - "length": 8, - "value": "\"Member\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3269, - "length": 17, - "value": "\"%@ is typing...\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3311, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3351, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3381, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3395, - "length": 8, - "value": "\"Member\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3441, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3471, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3485, - "length": 8, - "value": "\"Member\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3528, - "length": 25, - "value": "\"%@ and %@ are typing...\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3613, - "length": 30, - "value": "\"Several people are typing...\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3714, - "length": 13, - "value": "\"File saved.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3782, - "length": 27, - "value": "\"Couldn’t download file.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3860, - "length": 23, - "value": "\"Couldn’t open file.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3933, - "length": 17, - "value": "\"uploaded a file\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 4059, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4081, - "length": 15, - "value": "\"1 new message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 4110, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 4114, - "length": 2, - "value": "99" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4137, - "length": 23, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4146, - "length": 3, - "value": "\" new messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 4174, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4201, - "length": 18, - "value": "\"99+ new messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4256, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4327, - "length": 16, - "value": "\"Channel frozen\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4427, - "length": 14, - "value": "\"Open Channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4492, - "length": 14, - "value": "\"Participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 4627, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4649, - "length": 15, - "value": "\"1 participant\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4701, - "length": 23, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4710, - "length": 12, - "value": "\" participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 44, - "value": "\"SENDBIRD_NOTIFICATION_CHANNEL_NOTIFICATION\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5267, - "length": 59, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5315, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5325, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5468, - "length": 15, - "value": "\"Notifications\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5569, - "length": 21, - "value": "\"Channel information\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5643, - "length": 13, - "value": "\"Change name\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5710, - "length": 22, - "value": "\"Change channel image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 12, - "value": "\"Enter name\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5864, - "length": 20, - "value": "\"Enter channel name\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5939, - "length": 15, - "value": "\"Notifications\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6012, - "length": 4, - "value": "\"On\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6075, - "length": 5, - "value": "\"Off\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6150, - "length": 15, - "value": "\"Mentions only\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6225, - "length": 9, - "value": "\"Members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6294, - "length": 14, - "value": "\"Participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 6422, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6444, - "length": 9, - "value": "\"members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6490, - "length": 18, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6499, - "length": 7, - "value": "\" members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6571, - "length": 15, - "value": "\"Leave channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6634, - "length": 16, - "value": "\"Delete channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6712, - "length": 17, - "value": "\"Delete channel?\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6789, - "length": 47, - "value": "\"Once deleted, this channel can't be restored.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6884, - "length": 19, - "value": "\"Search in channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6961, - "length": 13, - "value": "\"Moderations\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7025, - "length": 11, - "value": "\"Operators\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7091, - "length": 15, - "value": "\"Muted members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7166, - "length": 20, - "value": "\"Muted participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7249, - "length": 14, - "value": "\"Banned users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7319, - "length": 16, - "value": "\"Freeze channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7385, - "length": 5, - "value": "\"URL\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7488, - "length": 15, - "value": "\"Notifications\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7567, - "length": 15, - "value": "\"Notifications\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7636, - "length": 18, - "value": "\"All new messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7718, - "length": 15, - "value": "\"Mentions only\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7803, - "length": 100, - "value": "\"Turn on push notifications if you wish to be notified when messages are delivered to this channel.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7988, - "length": 16, - "value": "\"Type a message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8059, - "length": 37, - "value": "\"Chat is unavailable in this channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 15, - "value": "\"You are muted\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8209, - "length": 18, - "value": "\"Reply to message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8336, - "length": 35, - "value": "\"Reply to \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8370, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8435, - "length": 7, - "value": "\"Photo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8498, - "length": 5, - "value": "\"GIF\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8561, - "length": 7, - "value": "\"Video\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8632, - "length": 10, - "value": "\"(edited)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8682, - "length": 16, - "value": "\"System message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8745, - "length": 24, - "value": "\"(Unknown message type)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8822, - "length": 26, - "value": "\"Can't read this message.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8979, - "length": 56, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8998, - "length": 7, - "value": "\" replied to \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9034, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9078, - "length": 5, - "value": "\"You\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 9270, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9292, - "length": 9, - "value": "\"1 reply\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 9315, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 9319, - "length": 2, - "value": "99" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9342, - "length": 30, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9363, - "length": 7, - "value": "\" replies\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 9386, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9426, - "length": 13, - "value": "\"99+ replies\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9442, - "length": 30, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9463, - "length": 7, - "value": "\" replies\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9509, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9616, - "length": 52, - "value": "\"Couldn't find the original message for this reply.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9741, - "length": 21, - "value": "\"Message unavailable\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9849, - "length": 18, - "value": "\"(Template error)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9929, - "length": 31, - "value": "\"Can't read this notification.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10025, - "length": 13, - "value": "\"No channels\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10081, - "length": 13, - "value": "\"No messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10142, - "length": 18, - "value": "\"No notifications\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10200, - "length": 10, - "value": "\"No users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10258, - "length": 18, - "value": "\"No muted members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10329, - "length": 23, - "value": "\"No muted participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10399, - "length": 17, - "value": "\"No banned users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10461, - "length": 18, - "value": "\"No results found\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10516, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 10679, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10701, - "length": 8, - "value": "\"Create\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10746, - "length": 17, - "value": "\"Create \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10762, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10831, - "length": 13, - "value": "\"New Channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10905, - "length": 16, - "value": "\"Select members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10981, - "length": 21, - "value": "\"New channel profile\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11092, - "length": 8, - "value": "\"Create\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11156, - "length": 13, - "value": "\"New channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11237, - "length": 20, - "value": "\"Enter channel name\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11340, - "length": 14, - "value": "\"Invite users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11413, - "length": 14, - "value": "\"Select users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 11537, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11559, - "length": 8, - "value": "\"Invite\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11604, - "length": 17, - "value": "\"Invite \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 11749, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11771, - "length": 10, - "value": "\"Register\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11818, - "length": 19, - "value": "\"Register \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11836, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11916, - "length": 7, - "value": "\"(You)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11961, - "length": 5, - "value": "\"Ban\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12006, - "length": 7, - "value": "\"Unban\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12052, - "length": 6, - "value": "\"Mute\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12099, - "length": 8, - "value": "\"Unmute\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12161, - "length": 21, - "value": "\"Unregister operator\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12234, - "length": 22, - "value": "\"Register as operator\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12304, - "length": 9, - "value": "\"Members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12363, - "length": 11, - "value": "\"Operators\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12428, - "length": 15, - "value": "\"Muted members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12502, - "length": 20, - "value": "\"Muted Participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12584, - "length": 14, - "value": "\"Banned users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12651, - "length": 14, - "value": "\"Participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12728, - "length": 11, - "value": "\"(No name)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12778, - "length": 10, - "value": "\"Operator\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12872, - "length": 10, - "value": "\"Operator\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12931, - "length": 8, - "value": "\"Member\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12983, - "length": 9, - "value": "\"User ID\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13037, - "length": 9, - "value": "\"Message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13092, - "length": 10, - "value": "\"Register\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13150, - "length": 12, - "value": "\"Unregister\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 6, - "value": "\"Mute\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 8, - "value": "\"Unmute\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13303, - "length": 5, - "value": "\"Ban\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13384, - "length": 7, - "value": "\"Group\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13439, - "length": 13, - "value": "\"Super group\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13499, - "length": 11, - "value": "\"Broadcast\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 3, - "value": "\"@\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13722, - "length": 95, - "value": "\"You can mention up to \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 13793, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13796, - "length": 5, - "value": "\" times per message. \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13993, - "length": 17, - "value": "\"Reply in thread\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14113, - "length": 17, - "value": "\"Reply in thread\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14177, - "length": 17, - "value": "\"Reply to thread\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14283, - "length": 8, - "value": "\"Thread\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14514, - "length": 8, - "value": "\"Cancel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14772, - "length": 20, - "value": "\"Channel is frozen.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14996, - "length": 31, - "value": "\"You're muted by the operator.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 15242, - "length": 15, - "value": "\"Voice message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 15459, - "length": 15, - "value": "\"Voice message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 15715, - "length": 15, - "value": "\"Voice message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 15846, - "length": 15, - "value": "\"Voice_message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 276, - "length": 4, - "value": "18.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 371, - "length": 4, - "value": "18.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 583, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 618, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 775, - "length": 4, - "value": "-0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 906, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 1049, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 1268, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 1303, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 1595, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 1815, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 1850, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 2141, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 2395, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 2683, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 2899, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 2934, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 3236, - "length": 4, - "value": "18.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 3460, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 3495, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 3657, - "length": 4, - "value": "0.38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 3795, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 4017, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 4052, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 4214, - "length": 4, - "value": "-0.4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 4352, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 4574, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 4609, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 4882, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 5102, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 5137, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 5439, - "length": 4, - "value": "12.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 5661, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 5696, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 5974, - "length": 4, - "value": "12.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 6199, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 6234, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 6509, - "length": 4, - "value": "11.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 6731, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 6766, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 7044, - "length": 4, - "value": "11.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 7269, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 7304, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 7629, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 7855, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 7890, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 8054, - "length": 4, - "value": "-0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 8195, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 8422, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 8457, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 8621, - "length": 4, - "value": "-0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 8762, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 8989, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 9024, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 9188, - "length": 4, - "value": "-0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "Array", - "offset": 1042, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "Array", - "offset": 1126, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2255, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2922, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 4446, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 4456, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 4464, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 4475, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6164, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6200, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 9671, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 10260, - "length": 59, - "value": "\"[Failed] Create channel request: There is no channel url.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.Header.swift", - "kind": "StringLiteral", - "offset": 5560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.Header.swift", - "kind": "BooleanLiteral", - "offset": 6720, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "FloatLiteral", - "offset": 789, - "length": 3, - "value": "0.4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 827, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 1762, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 1772, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 1780, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 1791, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1973, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1988, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 2028, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 2040, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 2643, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 2734, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 2765, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 42, - "value": "\"quoted_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 3868, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 5163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 5219, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 351, - "length": 3, - "value": "136" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 399, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 446, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 497, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 546, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 660, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 774, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1002, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 1268, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 1531, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 1699, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 2583, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 2755, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 2942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 3029, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 3101, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4423, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4480, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4540, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4596, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4770, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4832, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 5014, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 5082, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 5245, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/MemberList\/SBUMemberListViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 5205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/MemberList\/SBUMemberListViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 7940, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 228, - "length": 3, - "value": "244" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 284, - "length": 3, - "value": "240" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 297, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 350, - "length": 3, - "value": "240" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 363, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 433, - "length": 3, - "value": "156" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 446, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 515, - "length": 3, - "value": "136" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 528, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 600, - "length": 3, - "value": "311" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 613, - "length": 3, - "value": "207" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 677, - "length": 3, - "value": "311" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 690, - "length": 3, - "value": "207" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 750, - "length": 5, - "value": "144.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 765, - "length": 4, - "value": "38.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 823, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 837, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 897, - "length": 4, - "value": "38.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 911, - "length": 4, - "value": "38.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 977, - "length": 5, - "value": "144.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 992, - "length": 4, - "value": "38.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 1052, - "length": 3, - "value": "244" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 1120, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 1132, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1171, - "length": 42, - "value": "\"https:\/\/static.sendbird.com\/sample\/cover\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1254, - "length": 10, - "value": "\"sb_uikit\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1304, - "length": 20, - "value": "\"com.sendbird.uikit\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1378, - "length": 44, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1398, - "length": 1, - "value": "\".delegate.channel.group\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1470, - "length": 43, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1490, - "length": 1, - "value": "\".delegate.channel.open\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1561, - "length": 43, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1581, - "length": 1, - "value": "\".delegate.channel.feed\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1656, - "length": 41, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1676, - "length": 1, - "value": "\".delegate.connection\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1734, - "length": 15, - "value": "\"SBUAppVersion\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1789, - "length": 11, - "value": "\"audio\/m4a\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1849, - "length": 16, - "value": "\"sbu_type=voice\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1907, - "length": 28, - "value": "\"KEY_VOICE_MESSAGE_DURATION\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1976, - "length": 27, - "value": "\"KEY_INTERNAL_MESSAGE_TYPE\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 580, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 771, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 802, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 838, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 1003, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 1142, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "FloatLiteral", - "offset": 1794, - "length": 3, - "value": "0.4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 1845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 2764, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 3562, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 3949, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 3983, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 4121, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 4398, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "FloatLiteral", - "offset": 4444, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 4504, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 4515, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 4674, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 5071, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 5693, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 6355, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "FloatLiteral", - "offset": 8770, - "length": 4, - "value": "0.25" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "FloatLiteral", - "offset": 9161, - "length": 4, - "value": "0.25" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "IntegerLiteral", - "offset": 570, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "Array", - "offset": 735, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 1847, - "length": 46, - "value": "\"Requires a channel object for message search\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1901, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2719, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 3629, - "length": 29, - "value": "\"Keyword shouldn't be empty.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 3765, - "length": 15, - "value": "\"Same keyword.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 3840, - "length": 42, - "value": "\"new search keyword : [\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 3880, - "length": 1, - "value": "\"]\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4079, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 4202, - "length": 56, - "value": "\"query : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 4257, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4481, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 4546, - "length": 20, - "value": "\"loading next page.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4879, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5417, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/UserList\/SBUBaseSelectUserViewController.Deprecated.swift", - "kind": "Array", - "offset": 2306, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/UserList\/SBUBaseSelectUserViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 7646, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUInviteUserViewController.swift", - "kind": "StringLiteral", - "offset": 1910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUInviteUserViewController.swift", - "kind": "StringLiteral", - "offset": 2455, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUInviteUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 2966, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUInviteUserViewController.swift", - "kind": "StringLiteral", - "offset": 3016, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUInviteUserViewController.swift", - "kind": "StringLiteral", - "offset": 3412, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "BooleanLiteral", - "offset": 484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 800, - "length": 5, - "value": "10001" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "BooleanLiteral", - "offset": 1967, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "BooleanLiteral", - "offset": 2301, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "BooleanLiteral", - "offset": 2920, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 3676, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "BooleanLiteral", - "offset": 3734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 4402, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 4412, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 4424, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 4435, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 1089, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 1338, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 1567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "StringLiteral", - "offset": 2111, - "length": 24, - "value": "\"UIRemoteKeyboardWindow\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 2687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 2765, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 2771, - "length": 2, - "value": "50" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 2943, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 4079, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "FloatLiteral", - "offset": 4603, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 4669, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "FloatLiteral", - "offset": 4749, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 5245, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 5282, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 5515, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 5919, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 6919, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 6968, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 7265, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "Array", - "offset": 1281, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1436, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1931, - "length": 3, - "value": "-12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1991, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2129, - "length": 3, - "value": "311" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2208, - "length": 3, - "value": "750" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2338, - "length": 3, - "value": "311" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3800, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4082, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4416, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4608, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4647, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4759, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4864, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4930, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4966, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5099, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5154, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5219, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5256, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 6284, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "StringLiteral", - "offset": 465, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 516, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 545, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 587, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 759, - "length": 5, - "value": "100.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 796, - "length": 4, - "value": "64.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2088, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2094, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2186, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2656, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 3081, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 3122, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 3175, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 434, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 953, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 957, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 2566, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 2640, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 2646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 2838, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 3471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 4750, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 5291, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 5775, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 6102, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 6289, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 6438, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 6444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 6724, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 6768, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 6872, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7291, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7296, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7363, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7880, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 8493, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "StringLiteral", - "offset": 9124, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 9267, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 9340, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 9682, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 9923, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 10248, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "StringLiteral", - "offset": 11056, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "StringLiteral", - "offset": 11094, - "length": 40, - "value": "\"https:\/\/sendbird.com\/main\/img\/profiles\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "StringLiteral", - "offset": 11157, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 432, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 546, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 667, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 787, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 902, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 1235, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 1602, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 1857, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 2062, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 2273, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Array", - "offset": 2355, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 2462, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 2630, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 2831, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 2970, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.List.swift", - "kind": "StringLiteral", - "offset": 2878, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.List.swift", - "kind": "Array", - "offset": 4475, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4966, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5711, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 6358, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "BooleanLiteral", - "offset": 387, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "BooleanLiteral", - "offset": 332, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 11, - "value": "\"SendbirdUIKit.SBUMenuItem\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "Array", - "offset": 1440, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1572, - "length": 5, - "value": "180.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1608, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1643, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1677, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1712, - "length": 4, - "value": "18.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1752, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1801, - "length": 4, - "value": "15.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1848, - "length": 4, - "value": "36.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 3657, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 3692, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 4606, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 4631, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 4775, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 4812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 4864, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 5050, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 5518, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 5559, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 5612, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "Array", - "offset": 6002, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 6988, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 7118, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 8195, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 8216, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 8281, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "Array", - "offset": 8472, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 9008, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 9020, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 9452, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 9522, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 9533, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 9580, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 9627, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "BooleanLiteral", - "offset": 9673, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.Header.swift", - "kind": "StringLiteral", - "offset": 5967, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 1788, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 4073, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 4078, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 4103, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 4108, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 5974, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 5987, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 5995, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 6006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 7470, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 1296, - "length": 32, - "value": "\"SendbirdUIKit.SBUSelectablePhotoViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 8233, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 8726, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 8730, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 8771, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 9177, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 9690, - "length": 5, - "value": "\"jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 9727, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 9820, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 9827, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 9844, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 10520, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 11286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 11947, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 12086, - "length": 15, - "value": "\"not supported\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 12142, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1182, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1227, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1247, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1636, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1681, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1701, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "FloatLiteral", - "offset": 2276, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 2899, - "length": 26, - "value": "\"[Request] Channel update\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3298, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4137, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 537, - "length": 31, - "value": "\"SendbirdUIKit.SBUOpenChannelSettingsViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 21, - "value": "\"com.sendbird.atomic\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "BooleanLiteral", - "offset": 934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "BooleanLiteral", - "offset": 1098, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "BooleanLiteral", - "offset": 1397, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2212, - "length": 9, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2235, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2212, - "length": 9, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2235, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2212, - "length": 9, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2235, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2900, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 3617, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 3741, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4200, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4925, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5019, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5060, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5245, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5286, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5467, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5511, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5531, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5690, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5869, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5913, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5933, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7558, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 7594, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8411, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8475, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 8519, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10450, - "length": 29, - "value": "\"[Request] Send user message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 11143, - "length": 40, - "value": "\"A filtered user message has been sent.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11248, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11654, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12865, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 12913, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 12927, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13569, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14829, - "length": 79, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14861, - "length": 1, - "value": "\";\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15353, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16030, - "length": 29, - "value": "\"[Request] Send file message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16222, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 16352, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16397, - "length": 56, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16435, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16452, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16516, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16554, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17100, - "length": 72, - "value": "\"File message transfer progress: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17145, - "length": 1, - "value": "\" - \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17171, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18147, - "length": 56, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18185, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18202, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18239, - "length": 30, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18251, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18268, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19281, - "length": 40, - "value": "\"A filtered file message has been sent.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19386, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19684, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20245, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 20289, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21909, - "length": 31, - "value": "\"[Request] Update user message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22731, - "length": 38, - "value": "\"[Request] Resend failed user message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23556, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23978, - "length": 38, - "value": "\"[Request] Resend failed file message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24980, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25018, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25286, - "length": 50, - "value": "\"[Request] Delete message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25335, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26640, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26908, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27482, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27567, - "length": 94, - "value": "\"First : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27614, - "length": 1, - "value": "\", Last : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27660, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27701, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 28906, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 29118, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 30125, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 31189, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 31237, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 34595, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 34756, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 35430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 35916, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 36203, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 36348, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 36487, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 36954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 37362, - "length": 24, - "value": "\"[Request] Add Reaction\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 37594, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 37664, - "length": 49, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 37700, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 37703, - "length": 8, - "value": "\" reaction\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 38092, - "length": 27, - "value": "\"[Request] Delete Reaction\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 38330, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 38384, - "length": 49, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 38420, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 38423, - "length": 8, - "value": "\" reaction\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 39001, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 39198, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 39653, - "length": 41, - "value": "\"flushing cache with : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 39693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40064, - "length": 26, - "value": "\"Did succeed reconnection\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40210, - "length": 58, - "value": "\"[Failed] Update user info: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40267, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40695, - "length": 38, - "value": "\"Did receive user message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40732, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40788, - "length": 38, - "value": "\"Did receive file message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40825, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40882, - "length": 39, - "value": "\"Did receive admin message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40920, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "Array", - "offset": 241, - "length": 14, - "value": "[\"\", \"K\", \"M\"]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 305, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 339, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 379, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 413, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 444, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 53, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 512, - "length": 6, - "value": "\"%.1f\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 546, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 586, - "length": 4, - "value": "\".0\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 598, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 402, - "length": 3, - "value": "164" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 458, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 514, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 625, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 681, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 733, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1231, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1275, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1923, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 2481, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 2527, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuCell.swift", - "kind": "BooleanLiteral", - "offset": 363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 812, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 1086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 2641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 2715, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 2727, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 2751, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3009, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3031, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3075, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3097, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3199, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 3531, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 3598, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 3650, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3974, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3984, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 4003, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 4270, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 4491, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 4526, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5029, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5128, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5374, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 6260, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 6514, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 6719, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 6812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7240, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7277, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7304, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7353, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7409, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7634, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7686, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 26, - "value": "\"SendbirdUIKit.SBUEmojiListViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 1426, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 2025, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2341, - "length": 27, - "value": "\"Cannot use `init(coder:)`\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 2656, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 3618, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4573, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4877, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5087, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5454, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 5504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6563, - "length": 45, - "value": "\"Unread message count: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6607, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8604, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 8700, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10489, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10515, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10539, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10690, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11764, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11797, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11800, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12525, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12606, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 12735, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 12747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 12826, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 12838, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12908, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12928, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12992, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13037, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13489, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13535, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 14632, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15267, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15338, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 16637, - "length": 63, - "value": "\"Fetched : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 16670, - "length": 1, - "value": "\", keepScroll : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 16699, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 16843, - "length": 30, - "value": "\"Fetched empty notifications.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17130, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "Array", - "offset": 18100, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 18342, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21075, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21179, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21540, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21593, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21830, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21889, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22281, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22418, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22489, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22501, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "Array", - "offset": 23468, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23693, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23911, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 24428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 305, - "length": 40, - "value": "\"SendbirdUIKit.SBUChatNotificationChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 1806, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 5649, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5922, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 6207, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 6463, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 6514, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6610, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 7836, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 8039, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 8248, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 8347, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 8523, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8650, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 8817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 9097, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 9253, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 9411, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10111, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10228, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10364, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10404, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10819, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11525, - "length": 30, - "value": "\"listComponent is not set up.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12884, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13079, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13159, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13164, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13941, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 14326, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 14570, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 15196, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15340, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15395, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15821, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "Array", - "offset": 18463, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19490, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20271, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21408, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21440, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21445, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 21747, - "length": 79, - "value": "\"There is no cached linked message. Reloads messages based on linked messages.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21989, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22137, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22237, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 22380, - "length": 62, - "value": "\"The cell for row at \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 22413, - "length": 2, - "value": "\" is not `SBUBaseMessageCell`\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 24226, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 24280, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 24721, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 24769, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 25055, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 27723, - "length": 30, - "value": "\"Record permission was denied\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "Array", - "offset": 28758, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 29181, - "length": 79, - "value": "\"There is no cached linked message. Reloads messages based on linked messages.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 29398, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 29574, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 29665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 275, - "length": 29, - "value": "\"SendbirdUIKit.SBUGroupChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 275, - "length": 29, - "value": "\"SendbirdUIKit.SBUGroupChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 1027, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1405, - "length": 2, - "value": "-5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1418, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1431, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1442, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1536, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1576, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 1616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1691, - "length": 2, - "value": "-3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1704, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1717, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1728, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1771, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 1810, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1919, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1962, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 2001, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2149, - "length": 2, - "value": "-5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2162, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2175, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2186, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2259, - "length": 2, - "value": "-3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2272, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2285, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2296, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2367, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2392, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2403, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 3774, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 3896, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4746, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4800, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4893, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4938, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 5070, - "length": 2, - "value": "99" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "StringLiteral", - "offset": 5075, - "length": 4, - "value": "\"99\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 5157, - "length": 2, - "value": "99" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "StringLiteral", - "offset": 5162, - "length": 5, - "value": "\"99+\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 5837, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 5841, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 449, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 497, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 543, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 591, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 642, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 654, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Unavailable.swift", - "kind": "BooleanLiteral", - "offset": 757, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Unavailable.swift", - "kind": "BooleanLiteral", - "offset": 5938, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 3190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5293, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "FloatLiteral", - "offset": 5345, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 5468, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5691, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5839, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5881, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6033, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7000, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "FloatLiteral", - "offset": 7052, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 7232, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 7590, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7738, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7780, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8760, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 9568, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 9617, - "length": 28, - "value": "\"The index is out of range.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 9653, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 9733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10719, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10811, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 11178, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11235, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "Array", - "offset": 11734, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUBaseChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 955, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUBaseChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 1659, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUBaseChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 1669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUBaseChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 1677, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUBaseChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 1688, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 683, - "length": 6, - "value": "\"file\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4429, - "length": 25, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4441, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4453, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4499, - "length": 35, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4511, - "length": 1, - "value": "\"\/File.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4533, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 372, - "length": 7, - "value": "\"image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "FloatLiteral", - "offset": 729, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "BooleanLiteral", - "offset": 2189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "BooleanLiteral", - "offset": 2633, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 2651, - "length": 20, - "value": "\"quoted_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 2670, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "BooleanLiteral", - "offset": 3343, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "IntegerLiteral", - "offset": 3399, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "IntegerLiteral", - "offset": 3413, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 4779, - "length": 9, - "value": "\"quoted_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 4866, - "length": 9, - "value": "\"quoted_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 4883, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 4975, - "length": 8, - "value": "\"thumb_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 4991, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "BooleanLiteral", - "offset": 5741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6068, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6336, - "length": 30, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6348, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6365, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6411, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6423, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "BooleanLiteral", - "offset": 7094, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7267, - "length": 53, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7278, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7299, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7308, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7319, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1288, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1450, - "length": 5, - "value": "270.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1492, - "length": 3, - "value": "3.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1535, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1575, - "length": 4, - "value": "32.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1615, - "length": 4, - "value": "32.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1657, - "length": 4, - "value": "18.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1694, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1729, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1769, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1804, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1838, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1873, - "length": 4, - "value": "18.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1913, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1954, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "BooleanLiteral", - "offset": 2819, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "StringLiteral", - "offset": 2877, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 2934, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "BooleanLiteral", - "offset": 3967, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "StringLiteral", - "offset": 4019, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 4070, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "BooleanLiteral", - "offset": 4470, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 6000, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 6057, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 6355, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 7652, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 8236, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 9064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 9070, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 9080, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 9091, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "StringLiteral", - "offset": 9436, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 9816, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 9830, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 9887, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 10081, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 10120, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 10868, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 11234, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 12078, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 12704, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 12716, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 13195, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 13206, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 13805, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 13846, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 13905, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "BooleanLiteral", - "offset": 14180, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 15532, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 15720, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 15846, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 16585, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUDebouncer.swift", - "kind": "FloatLiteral", - "offset": 332, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUDebouncer.swift", - "kind": "BooleanLiteral", - "offset": 1233, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUDebouncer.swift", - "kind": "BooleanLiteral", - "offset": 1460, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUDebouncer.swift", - "kind": "StringLiteral", - "offset": 205, - "length": 12, - "value": "\"SendbirdUIKit.SBUDebouncer\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1140, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "Array", - "offset": 1411, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "Array", - "offset": 1487, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "Array", - "offset": 1798, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2266, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2312, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 3566, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 3571, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3876, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4110, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4186, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4553, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4637, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4798, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 5681, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6227, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "Array", - "offset": 6408, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 6493, - "length": 21, - "value": "\"[Request] User List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 6557, - "length": 26, - "value": "\"[Request] Next user List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 6687, - "length": 50, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 6702, - "length": 10, - "value": "\" customized users have been added.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6781, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8112, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8153, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8215, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 8246, - "length": 29, - "value": "\"All users have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8712, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 8855, - "length": 33, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 8881, - "length": 5, - "value": "\" users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9137, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9613, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9907, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10044, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 10165, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 10170, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10302, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 11524, - "length": 36, - "value": "\"Cannot create the memberListQuery.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 11568, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11651, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11948, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 11979, - "length": 31, - "value": "\"All members have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12259, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12325, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12463, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 12619, - "length": 37, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 12647, - "length": 7, - "value": "\" members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 13820, - "length": 41, - "value": "\"Cannot create the participantListQuery.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 13869, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13952, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14192, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14254, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 14285, - "length": 36, - "value": "\"All participants have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14598, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14664, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14802, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 14954, - "length": 40, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 14980, - "length": 12, - "value": "\" participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15297, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15633, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15754, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15921, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16076, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 16219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 16365, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16753, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 17217, - "length": 24, - "value": "\"Selected user: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 17240, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 1047, - "length": 26, - "value": "\"SendbirdUIKit.SBUBaseSelectUserViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7609, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7622, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7630, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 13526, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 15291, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 15555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/ChatSDK\/BaseMessage+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 371, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/ChatSDK\/BaseMessage+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 389, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/ChatSDK\/BaseMessage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 722, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", - "kind": "BooleanLiteral", - "offset": 590, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", - "kind": "IntegerLiteral", - "offset": 1492, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", - "kind": "IntegerLiteral", - "offset": 1502, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", - "kind": "IntegerLiteral", - "offset": 1510, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", - "kind": "IntegerLiteral", - "offset": 1521, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 1360, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "Array", - "offset": 1746, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 1954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 3546, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 4280, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5536, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5589, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5616, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7907, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8586, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8692, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 10402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 10681, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 10714, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 10717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 12524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 12850, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 15159, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 15214, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 15834, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "IntegerLiteral", - "offset": 459, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "BooleanLiteral", - "offset": 869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "IntegerLiteral", - "offset": 1174, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "IntegerLiteral", - "offset": 1188, - "length": 3, - "value": "-12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "IntegerLiteral", - "offset": 1198, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "IntegerLiteral", - "offset": 1209, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "BooleanLiteral", - "offset": 1766, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 1369, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 1684, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 2206, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 2906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4211, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4240, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 5709, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 7751, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 7806, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.OpenChannel.swift", - "kind": "BooleanLiteral", - "offset": 1349, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "Array", - "offset": 721, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "BooleanLiteral", - "offset": 767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "BooleanLiteral", - "offset": 947, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "BooleanLiteral", - "offset": 1633, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "BooleanLiteral", - "offset": 1685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "FloatLiteral", - "offset": 1847, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2348, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "FloatLiteral", - "offset": 2390, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2598, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2608, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2616, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2627, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 3758, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "Array", - "offset": 5696, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "StringLiteral", - "offset": 340, - "length": 23, - "value": "\"SendbirdUIKit.SBUSuggestedMentionList\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "StringLiteral", - "offset": 429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "BooleanLiteral", - "offset": 1102, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "IntegerLiteral", - "offset": 1230, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "IntegerLiteral", - "offset": 1320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "IntegerLiteral", - "offset": 1412, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "IntegerLiteral", - "offset": 1506, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 257, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "Array", - "offset": 370, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 466, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 925, - "length": 13, - "value": "\"loadInitial\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "BooleanLiteral", - "offset": 1081, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 1117, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 1522, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 1587, - "length": 41, - "value": "\"loadNext from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 1627, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 1667, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 1703, - "length": 46, - "value": "\"lastest updatedAt is 0. loadInitial instead.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 1970, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2317, - "length": 62, - "value": "\"loaded next messages : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2352, - "length": 1, - "value": "\", size : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2378, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 2585, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2756, - "length": 82, - "value": "\"update latestUpdatedAt to : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2806, - "length": 4, - "value": "\" from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2837, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3045, - "length": 32, - "value": "\"fetched to the newest. \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3076, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3485, - "length": 25, - "value": "\"add : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3509, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3878, - "length": 108, - "value": "\"applyChangeLog. updated : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3935, - "length": 1, - "value": "\", deleted : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3977, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 4846, - "length": 41, - "value": "\"flushing cache with : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 4886, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 5288, - "length": 44, - "value": "\"flush merged message : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "BooleanLiteral", - "offset": 597, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "BooleanLiteral", - "offset": 1049, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "BooleanLiteral", - "offset": 1064, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1114, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1125, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1291, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1300, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1311, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1321, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1375, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 1721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 1928, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 2403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 2573, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 2705, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 4961, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 5183, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 6214, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 244, - "length": 5541, - "value": "\"{\n \"version\": \"1\",\n \"body\": {\n \"items\": [\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"items\": [\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"items\": [\n {\n \"type\": \"image\",\n \"imageUrl\": \"https:\/\/dxstmhyqfqr1o.cloudfront.net\/notifications\/preset-notification-channel-cover.png\",\n \"imageStyle\": {\n \"contentMode\": \"aspectFill\"\n },\n \"viewStyle\": {},\n \"metaData\": {\n \"pixelWidth\": \"168\",\n \"pixelHeight\": \"168\"\n }\n },\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"viewStyle\": {\n \"radius\": \"8\",\n \"padding\": {\n \"top\": \"12\",\n \"bottom\": \"12\",\n \"left\": \"12\",\n \"right\": \"12\"\n }\n },\n \"items\": [\n {\n \"type\": \"text\",\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n },\n \"viewStyle\": {},\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"text\": \"Hello tez\",\n \"textStyle\": {\n \"color\": \"#ffbdb8bd\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"1\"\n },\n {\n \"type\": \"text\",\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n },\n \"viewStyle\": {},\n \"width\": {\n \"type\": \"fixed\",\n \"value\": \"1\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"text\": \"Your order #123123 has been shipped.\",\n \"textStyle\": {\n \"color\": \"#ffbdb8bd\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"1\"\n },\n {\n \"type\": \"textButton\",\n \"viewStyle\": {\n \"backgroundColor\": \"#E0E0E0\",\n \"padding\": {\n \"top\": \"10\",\n \"bottom\": \"10\",\n \"left\": \"20\",\n \"right\": \"20\"\n }\n },\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"text\": \"Check status\",\n \"textStyle\": {\n \"color\": \"#742DDD\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"5\",\n \"action\": {\n \"type\": \"web\",\n \"data\": \"https:\/\/naver.com\"\n }\n }\n ],\n \"height\": {\n \"type\": \"fixed\",\n \"value\": \"300\"\n },\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n }\n }\n ],\n \"viewStyle\": {}\n }\n ],\n \"viewStyle\": {}\n }\n ]\n }\n }\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 5934, - "length": 1803, - "value": "\"{\"version\": 1,\"body\": {\"items\": [{\"type\": \"box\",\"layout\": \"column\",\"items\": [{\"type\": \"image\",\"metaData\": {\"pixelWidth\": 4000,\"pixelHeight\": 3000},\"width\": {\"type\": \"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 6117, - "length": 3, - "value": "\"\",\"value\": \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 6137, - "length": 1, - "value": "\"},\"height\": {\"type\": \"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 3, - "value": "\"\",\"value\": \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 6190, - "length": 1, - "value": "\"},\"imageStyle\": {\"contentMode\": \"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 6237, - "length": 4, - "value": "\"\"},\"imageUrl\": \"https:\/\/images.unsplash.com\/photo-1579393329936-4bc9bc673651?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format\"},{\"type\": \"box\",\"viewStyle\": {\"padding\": {\"top\": 12,\"right\": 12,\"bottom\": 12,\"left\": 12}},\"layout\": \"column\",\"items\": [{\"type\": \"box\",\"layout\": \"row\",\"items\": [{\"type\": \"box\",\"layout\": \"column\",\"items\": [{\"type\": \"text\",\"text\": \"Notification channel creation guide\",\"maxTextLines\": 3,\"viewStyle\": {\"padding\": {\"top\": 0,\"bottom\": 6,\"left\": 0,\"right\": 0}},\"textStyle\": {\"size\": 16,\"weight\": \"bold\"}},{\"type\": \"text\",\"text\": \"Notification Center is basically a group channel to which a single user, the receiver of a notification, belongs. A notification channel, which is a single group channel dedicated to the Notification Center, must be created for each user.\",\"maxTextLines\": 10,\"textStyle\": {\"size\": 14}}]}]},{\"type\": \"box\",\"layout\": \"column\",\"items\": [{\"type\": \"box\",\"viewStyle\": {\"margin\": {\"top\": 16,\"bottom\": 0,\"left\": 0,\"right\": 0}},\"align\": {\"horizontal\": \"left\",\"vertical\": \"center\"},\"layout\": \"row\",\"action\": {\"type\": \"web\",\"data\": \"www.sendbird.com\"},\"items\": [{\"type\": \"box\",\"viewStyle\": {\"margin\": {\"top\": 0,\"bottom\": 0,\"left\": 12,\"right\": 0}},\"layout\": \"column\",\"items\": [{\"type\": \"text\",\"text\": \"Title\",\"maxTextLines\": 1,\"textStyle\": {\"size\": 16,\"weight\": \"bold\"}},{\"type\": \"text\",\"viewStyle\": {\"margin\": {\"top\": 4,\"bottom\": 0,\"left\": 0,\"right\": 0}},\"text\": \"Hi\",\"maxTextLines\": 1,\"textStyle\": {\"size\": 14}}]}]}]}]}]}]}}\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 8441, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 9740, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 9951, - "length": 19, - "value": "\"TEMPLATE_DOWNLOAD\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 12150, - "length": 3, - "value": "\"SendbirdUIKit.Box\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 14219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 14238, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 13570, - "length": 4, - "value": "\"SendbirdUIKit.Text\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 15328, - "length": 5, - "value": "\"SendbirdUIKit.Image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 17396, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 17415, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 17622, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 17673, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 17687, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 17699, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 17712, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 16776, - "length": 10, - "value": "\"SendbirdUIKit.TextButton\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 11, - "value": "\"SendbirdUIKit.ImageButton\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 25359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29516, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29545, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29516, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29545, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29516, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29545, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 31325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 31471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 31661, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 32262, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 32419, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 32619, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33368, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33432, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33695, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33715, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33934, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34006, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34307, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34316, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34948, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34960, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34970, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34981, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36262, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36273, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36282, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36292, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36380, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36444, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "Dictionary", - "offset": 4336, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5599, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6406, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6412, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6480, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7443, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7456, - "length": 2, - "value": "-8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7465, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7508, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 14134, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 14406, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "StringLiteral", - "offset": 22203, - "length": 21, - "value": "\"Channel must exist!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 22391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23791, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24359, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24602, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 25297, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 25543, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 26301, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 27026, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 27183, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "StringLiteral", - "offset": 28763, - "length": 28, - "value": "\"The index is out of range.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "StringLiteral", - "offset": 29236, - "length": 29, - "value": "\"There are no message cells!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 31575, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 31645, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 31846, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32009, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32181, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32297, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32412, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32424, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 32512, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32649, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32872, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32884, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 32968, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 33409, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 33421, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 33456, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "StringLiteral", - "offset": 33857, - "length": 46, - "value": "\"New messages inserted : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "StringLiteral", - "offset": 33902, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 34016, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 34352, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 34730, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 34861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 34994, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35158, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35355, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35545, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35672, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37101, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37238, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37285, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37294, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 37867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 37984, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 38144, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 38206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 38458, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 39443, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 39544, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 40528, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 40669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 40716, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 40725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 40776, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 41028, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 41298, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 41415, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 41575, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 41637, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 41889, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 42868, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 42969, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 43443, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 43492, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 44266, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 44315, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 45035, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 45084, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 45948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 418, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 732, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 1381, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 1567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 1614, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 1758, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 2357, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 2391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 2545, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 2857, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 3278, - "length": 3, - "value": "6.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 3362, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4146, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4176, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4202, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4229, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4618, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4914, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4922, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4993, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 5069, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 5174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 5275, - "length": 4, - "value": "-0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 5305, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 5359, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 5709, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 6056, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 6217, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 8070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 8122, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "StringLiteral", - "offset": 8390, - "length": 30, - "value": "\" \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "StringLiteral", - "offset": 8419, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "StringLiteral", - "offset": 8423, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 8504, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "StringLiteral", - "offset": 8563, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 8979, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9310, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9355, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9395, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9436, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9553, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9743, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "StringLiteral", - "offset": 9891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 10310, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 10391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 10525, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 10713, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUnknownMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 519, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUnknownMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 681, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUnknownMessageCell.swift", - "kind": "StringLiteral", - "offset": 972, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUnknownMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1291, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationEmptyView.swift", - "kind": "FloatLiteral", - "offset": 417, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationEmptyView.swift", - "kind": "FloatLiteral", - "offset": 572, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/InviteUser\/SBUInviteUserModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 3146, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/InviteUser\/SBUInviteUserModule.Header.swift", - "kind": "StringLiteral", - "offset": 4280, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/InviteUser\/SBUInviteUserModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 5259, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 558, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 879, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1103, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1497, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1596, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1631, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1792, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2249, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2439, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2481, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3565, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3589, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3705, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3719, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3728, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3739, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3838, - "length": 3, - "value": "751" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4916, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 5993, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 6286, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 6738, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 6860, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 7706, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 8080, - "length": 34, - "value": "\"Failed state image configuration\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 8604, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 8663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 8700, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "FloatLiteral", - "offset": 8750, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 9769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 9816, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 9867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 10382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 10429, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 10480, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1715, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "Array", - "offset": 2111, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2721, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4388, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4522, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4694, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4885, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5081, - "length": 67, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5127, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5147, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5304, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5349, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5369, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5630, - "length": 67, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5676, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5696, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5833, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5853, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6024, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6254, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6326, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6698, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7236, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 8409, - "length": 26, - "value": "\"[Request] Next user List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 8529, - "length": 50, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 8544, - "length": 10, - "value": "\" customized users have been added.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8658, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8716, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8988, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9046, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9150, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10513, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10554, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10612, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 10643, - "length": 31, - "value": "\"All members have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10923, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10985, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 11248, - "length": 37, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 11276, - "length": 7, - "value": "\" members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11422, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12087, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12128, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12186, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 12217, - "length": 33, - "value": "\"All operators have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12503, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12565, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 12832, - "length": 41, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 12862, - "length": 9, - "value": "\" operators\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13012, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13746, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13787, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 13876, - "length": 37, - "value": "\"All muted members have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14167, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14229, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 14492, - "length": 37, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 14520, - "length": 7, - "value": "\" members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14666, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15424, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15465, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15523, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 15554, - "length": 42, - "value": "\"All muted participants have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15892, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15954, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 16217, - "length": 37, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 16245, - "length": 7, - "value": "\" members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17090, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17131, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 36, - "value": "\"All banned users have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17532, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17594, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 17853, - "length": 33, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 17879, - "length": 5, - "value": "\" users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18021, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18752, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18793, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18851, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 18882, - "length": 36, - "value": "\"All participants have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19214, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19276, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 19549, - "length": 47, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 19582, - "length": 12, - "value": "\" participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 20115, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 20206, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20243, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20455, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20737, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21018, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21137, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21225, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21362, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21489, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21590, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21684, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "Array", - "offset": 22069, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22408, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 22434, - "length": 36, - "value": "\"[Request] Register user: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 22469, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22873, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 22899, - "length": 42, - "value": "\"[Request] Unregister operator: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 22940, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 23349, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23539, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 23608, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23980, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24211, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24600, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 24702, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24937, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 25038, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25411, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25687, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 1628, - "length": 20, - "value": "\"SendbirdUIKit.SBUUserListViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 1237, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 1333, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 1522, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 1733, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 1942, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2152, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 2553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2613, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2631, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 2759, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3517, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3591, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4039, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4053, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4063, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4075, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4322, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4361, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4785, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 5020, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "FloatLiteral", - "offset": 5031, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 5102, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "FloatLiteral", - "offset": 5141, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6233, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "StringLiteral", - "offset": 6279, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 7353, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUToastManager.swift", - "kind": "StringLiteral", - "offset": 384, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUToastManager.swift", - "kind": "BooleanLiteral", - "offset": 1141, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUToastManager.swift", - "kind": "FloatLiteral", - "offset": 1214, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUToastManager.swift", - "kind": "BooleanLiteral", - "offset": 1265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 930, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1129, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1371, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2418, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2460, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "FloatLiteral", - "offset": 3504, - "length": 4, - "value": "12.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3605, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3616, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3628, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "BooleanLiteral", - "offset": 4236, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "BooleanLiteral", - "offset": 4455, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "BooleanLiteral", - "offset": 5020, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "BooleanLiteral", - "offset": 5078, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 5144, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "StringLiteral", - "offset": 5326, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 5848, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 6145, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 6157, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 6279, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Sequence+SBUIKit.swift", - "kind": "Dictionary", - "offset": 318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Sequence+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 368, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SBUViewModelDelegate.swift", - "kind": "BooleanLiteral", - "offset": 687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "StringLiteral", - "offset": 1080, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "BooleanLiteral", - "offset": 2145, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2749, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2762, - "length": 2, - "value": "-0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2771, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2898, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2977, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "StringLiteral", - "offset": 484, - "length": 25, - "value": "\"SendbirdUIKit.SBUMessageThreadTitleView\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 1417, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 2017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2333, - "length": 27, - "value": "\"Cannot use `init(coder:)`\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 2647, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 3238, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 3793, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4727, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5031, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5250, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5617, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 5667, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6726, - "length": 45, - "value": "\"Unread message count: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6770, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 7056, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8863, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 8959, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10774, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10800, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10975, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 12057, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 12090, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 12093, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12822, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12903, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13032, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13123, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13135, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13225, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13289, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13334, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13840, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 14940, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15703, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15774, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15832, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 17078, - "length": 63, - "value": "\"Fetched : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 17111, - "length": 1, - "value": "\", keepScroll : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 17140, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 17284, - "length": 30, - "value": "\"Fetched empty notifications.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17571, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "Array", - "offset": 18539, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 18780, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21811, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22104, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22208, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22622, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23155, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23310, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23447, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23518, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23530, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23679, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "Array", - "offset": 24496, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 24721, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 24939, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 25459, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 40, - "value": "\"SendbirdUIKit.SBUFeedNotificationChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "Array", - "offset": 8215, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8429, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 8485, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10054, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10159, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10215, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 10424, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10935, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11217, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11243, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11267, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11411, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11567, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11683, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 15768, - "length": 21, - "value": "\"Channel must exist!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 15956, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 16262, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18246, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18445, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19202, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19343, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19634, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 20062, - "length": 28, - "value": "\"The index is out of range.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 20563, - "length": 34, - "value": "\"There are no notification cells!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 22164, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 22981, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23173, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23310, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23449, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24544, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24556, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24591, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24713, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 25295, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 25376, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "Array", - "offset": 665, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "Array", - "offset": 854, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "Array", - "offset": 1042, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "Array", - "offset": 1237, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "Array", - "offset": 1303, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1642, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 622, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 1067, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 1752, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5146, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5194, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5331, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5455, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5480, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5500, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5632, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5657, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5677, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5700, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5788, - "length": 2, - "value": "80" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5905, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5987, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 6071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 6145, - "length": 2, - "value": "80" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 6215, - "length": 2, - "value": "80" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 6284, - "length": 2, - "value": "80" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "BooleanLiteral", - "offset": 6522, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "BooleanLiteral", - "offset": 6658, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "BooleanLiteral", - "offset": 6706, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "BooleanLiteral", - "offset": 6773, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 7389, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 9108, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 9469, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "StringLiteral", - "offset": 1160, - "length": 28, - "value": "\"SendbirdUIKit.SBUCreateChannelTypeSelector\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 439, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 452, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 3077, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 3146, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 7312, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 7381, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 12103, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 12172, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 15654, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 15723, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 17093, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 17162, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 18598, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 18667, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 22053, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 22122, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 26368, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 26437, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 31239, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 31308, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 34792, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 34861, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 36202, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 36271, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 37678, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 37747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 39431, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 39500, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 41117, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 41186, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 41824, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 41870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 42013, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 42082, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 42705, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "Array", - "offset": 1246, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "Array", - "offset": 1334, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "StringLiteral", - "offset": 1810, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 2699, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 2709, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 2717, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 2728, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 3584, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 3634, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 3872, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 3979, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 4222, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 4272, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 4402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "StringLiteral", - "offset": 4681, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "StringLiteral", - "offset": 4714, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "StringLiteral", - "offset": 4717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 5742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 6835, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 306, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 341, - "length": 9, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 306, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 341, - "length": 9, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 306, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 341, - "length": 9, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 577, - "length": 13, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 600, - "length": 7, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 6, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 633, - "length": 5, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1108, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1144, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1182, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1214, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1381, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 577, - "length": 13, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 600, - "length": 7, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 6, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 633, - "length": 5, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 577, - "length": 13, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 600, - "length": 7, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 6, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 633, - "length": 5, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1677, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1677, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1677, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2079, - "length": 12, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2101, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2122, - "length": 13, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2145, - "length": 17, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2241, - "length": 13, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "BooleanLiteral", - "offset": 2706, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2079, - "length": 12, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2101, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2122, - "length": 13, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2145, - "length": 17, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2079, - "length": 12, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2101, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2122, - "length": 13, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2145, - "length": 17, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2241, - "length": 13, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4024, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4060, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4075, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4178, - "length": 14, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4260, - "length": 12, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4341, - "length": 13, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4024, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4060, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4075, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4024, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4060, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4075, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4178, - "length": 14, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4260, - "length": 12, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4341, - "length": 13, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4530, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4545, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4530, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4545, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4530, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4545, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4770, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4770, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4770, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4901, - "length": 10, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4921, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4941, - "length": 15, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4966, - "length": 9, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4985, - "length": 14, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5009, - "length": 19, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5038, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5061, - "length": 15, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5086, - "length": 5, - "value": "9" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5172, - "length": 15, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "BooleanLiteral", - "offset": 5265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "BooleanLiteral", - "offset": 5294, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4901, - "length": 10, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4921, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4941, - "length": 15, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4966, - "length": 9, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4985, - "length": 14, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5009, - "length": 19, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5038, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5061, - "length": 15, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5086, - "length": 5, - "value": "9" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4901, - "length": 10, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4921, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4941, - "length": 15, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4966, - "length": 9, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4985, - "length": 14, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5009, - "length": 19, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5038, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5061, - "length": 15, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5086, - "length": 5, - "value": "9" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5172, - "length": 15, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5452, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 8, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5504, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5452, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 8, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5504, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5646, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5646, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5783, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5798, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5783, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5798, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5959, - "length": 3, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5972, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5988, - "length": 6, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5959, - "length": 3, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5972, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5988, - "length": 6, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6234, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6249, - "length": 5, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6264, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6279, - "length": 3, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6292, - "length": 3, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6234, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6249, - "length": 5, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6264, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6279, - "length": 3, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6292, - "length": 3, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6485, - "length": 9, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6532, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6576, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6655, - "length": 11, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6743, - "length": 15, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6485, - "length": 9, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6532, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6576, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7038, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7052, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7038, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7052, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7547, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7547, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7611, - "length": 10, - "value": "0b00000000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7641, - "length": 10, - "value": "0b00000001" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7671, - "length": 10, - "value": "0b00000010" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7701, - "length": 10, - "value": "0b00000100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7731, - "length": 10, - "value": "0b00000111" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7611, - "length": 10, - "value": "0b00000000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7641, - "length": 10, - "value": "0b00000001" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7671, - "length": 10, - "value": "0b00000010" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7701, - "length": 10, - "value": "0b00000100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7731, - "length": 10, - "value": "0b00000111" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7866, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7880, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7866, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7880, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7866, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7880, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "StringLiteral", - "offset": 8955, - "length": 49, - "value": "\"Data could not be decoded as `String` or `Int`.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 1452, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2129, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2369, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2618, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 4079, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 4341, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 4418, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7373, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7415, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7452, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7494, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7572, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7665, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7679, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7689, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7741, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7753, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7804, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7816, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8025, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8104, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8218, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8320, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8333, - "length": 2, - "value": "-8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8426, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8546, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8585, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8677, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8691, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8801, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8814, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8825, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8910, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 9062, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 9329, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 9885, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 10055, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 10109, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 10191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 10403, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 10532, - "length": 3, - "value": "240" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 10833, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 11002, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 11229, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 11341, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 11489, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 11494, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 11567, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 11745, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 11819, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 11888, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 12073, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 12078, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 12145, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 12222, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 12411, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 12416, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 12491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 13631, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 14266, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "StringLiteral", - "offset": 14389, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 14460, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "StringLiteral", - "offset": 14496, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 14941, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 14953, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 15807, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 16000, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 16642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 17102, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 17763, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 18267, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 18768, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 18898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 18992, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 657, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "FloatLiteral", - "offset": 1226, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 1774, - "length": 31, - "value": "\"[Request] Create open channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2022, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2146, - "length": 143, - "value": "\"[Failed] Create open channel request:\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2265, - "length": 421, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2407, - "length": 62, - "value": "\"[Succeed] Create open channel: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2468, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", - "kind": "IntegerLiteral", - "offset": 517, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", - "kind": "IntegerLiteral", - "offset": 528, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", - "kind": "IntegerLiteral", - "offset": 538, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 872, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "StringLiteral", - "offset": 1616, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "StringLiteral", - "offset": 1738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "StringLiteral", - "offset": 2098, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "BooleanLiteral", - "offset": 2294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "BooleanLiteral", - "offset": 2327, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 3001, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 3323, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "BooleanLiteral", - "offset": 3364, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 3959, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 4359, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 4869, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 5150, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 5249, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "BooleanLiteral", - "offset": 5284, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7246, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7259, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7267, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7353, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7365, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "BooleanLiteral", - "offset": 8699, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 672, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 816, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 873, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 881, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 2130, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2286, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 2341, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 2349, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2457, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2463, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 3659, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 3732, - "length": 15, - "value": "\"No image data\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 3925, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 3931, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 3941, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 3952, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 4424, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 5956, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 5960, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6165, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 6212, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 6218, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6548, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7079, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7319, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7325, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7333, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7492, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7529, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7847, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 8361, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 8688, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9169, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9580, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9870, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9878, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 9894, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9924, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9949, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9983, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 10203, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 10514, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 10789, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 10877, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "Array", - "offset": 10981, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 10993, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 11103, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 11107, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 11373, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 436, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 473, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 637, - "length": 2, - "value": "50" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1310, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1929, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2584, - "length": 2, - "value": "-6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3238, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3920, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4159, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4258, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4293, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5237, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5278, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5326, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5372, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7054, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7138, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7256, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7267, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7279, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7433, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7437, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7442, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 9736, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 10744, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 10899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 11627, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 12222, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 12526, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 12993, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 13133, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 13201, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 13359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 14064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 14081, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16318, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16791, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16831, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16985, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 17088, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 17133, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 19400, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 514, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "BooleanLiteral", - "offset": 548, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 693, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 1288, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 1417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 1460, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 1469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 1516, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "StringLiteral", - "offset": 331, - "length": 16, - "value": "\"SendbirdUIKit.SBUVoiceFileInfo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3302, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3358, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "FloatLiteral", - "offset": 3532, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3586, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "StringLiteral", - "offset": 3830, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3976, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3986, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4005, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7050, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1607, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2318, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2408, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2463, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3019, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3064, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3084, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3805, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3889, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3934, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3954, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4891, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5018, - "length": 47, - "value": "\"[Request] Load channel: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5064, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5364, - "length": 62, - "value": "\"[Failed] Load channel request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5425, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5497, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5909, - "length": 63, - "value": "\"[Failed] Enter channel request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5971, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6231, - "length": 69, - "value": "\"[Succeed] Load channel request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6299, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "Array", - "offset": 6566, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6714, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7128, - "length": 62, - "value": "\"[Failed] Load channel request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7482, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7573, - "length": 35, - "value": "\"[Succeed] Refresh channel request\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8255, - "length": 187, - "value": "\"loadInitialMessages,\nstartingPoint : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8356, - "length": 1, - "value": "\",\ninitialMessages : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8426, - "length": 9163, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9455, - "length": 30, - "value": "\"Prev message already loading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9545, - "length": 69, - "value": "\"[Request] Prev message list from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9613, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 9753, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 9804, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10481, - "length": 40, - "value": "\"Prev message list request is not valid\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10597, - "length": 52, - "value": "\"[Prev message response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10639, - "length": 8, - "value": "\" messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10948, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 11323, - "length": 30, - "value": "\"Next message already loading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 11413, - "length": 65, - "value": "\"[Request] Next message list from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 11477, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 11632, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 11670, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11773, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12080, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12267, - "length": 40, - "value": "\"Next message list request is not valid\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12802, - "length": 52, - "value": "\"[Next message Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12844, - "length": 8, - "value": "\" messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13075, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13178, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13575, - "length": 69, - "value": "\"[Request] Both message list from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13643, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13905, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14186, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14258, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14324, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14373, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14449, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14519, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14717, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14761, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14814, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14904, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 15025, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15123, - "length": 111, - "value": "\"Fetch from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15157, - "length": 5, - "value": "\" limit: prev = \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 1, - "value": "\", next = \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15233, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15625, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16590, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16749, - "length": 43, - "value": "\"Initial message list request is not valid\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16846, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 52, - "value": "\"[Both message response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16953, - "length": 8, - "value": "\" messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 17296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17599, - "length": 276, - "value": "\"[Initial message response] Prev count : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17718, - "length": 1, - "value": "\",\nprevLimit : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17796, - "length": 1, - "value": "\",\nhasPrev : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17859, - "length": 28, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17897, - "length": 268, - "value": "\"[Initial message response] Next count : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18016, - "length": 1, - "value": "\",\nnextLimit : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 1, - "value": "\",\nhasNext : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18149, - "length": 6413, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18196, - "length": 119, - "value": "\"[Initial message response] First : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18269, - "length": 1, - "value": "\", Last : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18314, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18840, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18924, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18969, - "length": 76, - "value": "\"[Failed] Resend failed user message request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19044, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19370, - "length": 62, - "value": "\"[Succeed] Resend failed file message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19431, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19674, - "length": 139, - "value": "\"hasNext : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19720, - "length": 1, - "value": "\". first : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19767, - "length": 1, - "value": "\", last : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19812, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 19907, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20289, - "length": 115, - "value": "\"newTimestamp : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20320, - "length": 1, - "value": "\", lastUpdatedTimestamp : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20373, - "length": 1, - "value": "\", currentTime : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20403, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20631, - "length": 21, - "value": "\"set to \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20897, - "length": 139, - "value": "\"reset timestamp to : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20947, - "length": 1, - "value": "\", startingPoint : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21006, - "length": 11, - "value": "\" currentTime : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21035, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21365, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22275, - "length": 42, - "value": "\"[Request] Message change logs with token\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22540, - "length": 59, - "value": "\"[Request] Message change logs with last updated timestamp\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23094, - "length": 76, - "value": "\"[Request] Changelog added message list from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23169, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 23327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23733, - "length": 51, - "value": "\"Changelog added message list request is not valid\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 55, - "value": "\"[Changelog added response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23944, - "length": 8, - "value": "\" messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24572, - "length": 123, - "value": "\"[Failed] Message change logs request:\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24675, - "length": 181, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24806, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24870, - "length": 209, - "value": "\"[Response]\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24926, - "length": 21, - "value": "\"%d updated messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 24975, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24978, - "length": 1, - "value": "\",\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25009, - "length": 21, - "value": "\"%d deleted messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 25060, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25063, - "length": 5063, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25398, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25996, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26708, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27009, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27556, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27826, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27926, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27961, - "length": 95, - "value": "\"Loaded added messages : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28008, - "length": 1, - "value": "\", hasNext : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28055, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 28675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28785, - "length": 67, - "value": "\"[Failed] Send user message request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 29182, - "length": 57, - "value": "\"[Succeed] Send user message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 29238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 29316, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 30021, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30136, - "length": 133, - "value": "\"[Failed] Send file message request:\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30245, - "length": 8763, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30616, - "length": 57, - "value": "\"[Succeed] Send file message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30672, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 30763, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 31180, - "length": 41, - "value": "\"[Failed] Message list request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 31220, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31256, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31348, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 31437, - "length": 29, - "value": "\"Message list request is nil\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31501, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31526, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31566, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31926, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 23, - "value": "\"SendbirdUIKit.SBUOpenChannelViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 32797, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 32831, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 32861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 33238, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 33557, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 33793, - "length": 32, - "value": "\"Did update message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 33824, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 33894, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 34124, - "length": 35, - "value": "\"Message was deleted: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 34158, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 34232, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 34523, - "length": 55, - "value": "\"Channel was changed, ChannelURL:\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 34577, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 35016, - "length": 54, - "value": "\"Channel was frozen, ChannelURL:\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 35069, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 35517, - "length": 56, - "value": "\"Channel was unfrozen, ChannelURL:\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 35572, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 36050, - "length": 16, - "value": "\"You are muted.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 36538, - "length": 18, - "value": "\"You are unmuted.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 37401, - "length": 17, - "value": "\"You are banned.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Unavailable.swift", - "kind": "Dictionary", - "offset": 1883, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Unavailable.swift", - "kind": "Dictionary", - "offset": 2017, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Unavailable.swift", - "kind": "Dictionary", - "offset": 2156, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Unavailable.swift", - "kind": "Dictionary", - "offset": 2316, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Unavailable.swift", - "kind": "Dictionary", - "offset": 2466, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 292, - "length": 13, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 14, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 339, - "length": 10, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 359, - "length": 8, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 292, - "length": 13, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 14, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 339, - "length": 10, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 359, - "length": 8, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 525, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 544, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 559, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 575, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 662, - "length": 14, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 744, - "length": 12, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 825, - "length": 13, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 525, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 544, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 559, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 575, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "Array", - "offset": 4207, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "StringLiteral", - "offset": 4670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 6139, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 6195, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "FloatLiteral", - "offset": 6428, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6482, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6794, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6804, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6823, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10491, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "StringLiteral", - "offset": 10754, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "StringLiteral", - "offset": 12871, - "length": 32, - "value": "\"[Request] Retry load user list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 13313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/InviteUser\/SBUInviteUserModule.List.swift", - "kind": "StringLiteral", - "offset": 2418, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "IntegerLiteral", - "offset": 602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 629, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "IntegerLiteral", - "offset": 1503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "IntegerLiteral", - "offset": 1511, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "IntegerLiteral", - "offset": 1522, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "IntegerLiteral", - "offset": 1560, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 1775, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 1916, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 2124, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 2852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Moderations\/SBUModerationsViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 3183, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 285, - "length": 31, - "value": "\"LOCAL_CACHING_EMOJI_CONTAINER\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 851, - "length": 39, - "value": "\"[Failed] Emoji Categories: load emoji\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 911, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 1005, - "length": 53, - "value": "\"[Failed] Emoji Categories: enableReactions is false\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 1079, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 1197, - "length": 46, - "value": "\"[Failed] Emoji Categories: Category is empty\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 1506, - "length": 33, - "value": "\"[Failed] Emoji List: load emoji\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 1560, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 1654, - "length": 47, - "value": "\"[Failed] Emoji List: enableReactions is false\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 1722, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 1785, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 1862, - "length": 42, - "value": "\"[Failed] Emoji List: emoji list is empty\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 2207, - "length": 46, - "value": "\"[Failed] Emojis with category id: load emoji\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 2274, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 2368, - "length": 60, - "value": "\"[Failed] Emojis with category id: enableReactions is false\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 2449, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 2568, - "length": 54, - "value": "\"[Warning] Emojis with category id: Category is empty\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 2643, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 2775, - "length": 58, - "value": "\"[Warning] Emojis with category id: Can not find category\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 2854, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "BooleanLiteral", - "offset": 3081, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 3684, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 3814, - "length": 27, - "value": "\"[Request] Load all emojis\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 4341, - "length": 38, - "value": "\"[Succeed] Load all emojis from cache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 4499, - "length": 57, - "value": "\"[Failed] Load all emojis: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 4555, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 4819, - "length": 38, - "value": "\"[Succeed] Load all emojis from cache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 4977, - "length": 53, - "value": "\"[Failed] Load all emojis: EmojiContainer is not set\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 5172, - "length": 27, - "value": "\"[Succeed] Load all emojis\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 2279, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "Array", - "offset": 2356, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 2580, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 2636, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "FloatLiteral", - "offset": 2876, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 2930, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3356, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3364, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3437, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3518, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3528, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3536, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5140, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6113, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6410, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 608, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 1074, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 1824, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 2191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 2565, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 2627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 2644, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 1357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "Array", - "offset": 1759, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "Array", - "offset": 1892, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "Array", - "offset": 2122, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "Array", - "offset": 2297, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 2361, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 2404, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 2846, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 2962, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 3407, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "FloatLiteral", - "offset": 3632, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "FloatLiteral", - "offset": 3859, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4093, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4350, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 6837, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 7013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 7285, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 7380, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 9900, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10876, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 11800, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 11905, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12106, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 12344, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12784, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12952, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13388, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13598, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 14254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 14458, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 14842, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 14953, - "length": 2, - "value": "50" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15559, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15772, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15913, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16107, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16380, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16574, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16767, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16977, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16987, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17074, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 17253, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 17483, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17789, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17906, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 18897, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 19821, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19964, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20054, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20286, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20363, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20603, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21043, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21211, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21647, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21857, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21933, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22456, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22591, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22790, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23372, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23514, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23650, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23863, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 25929, - "length": 30, - "value": "\"listComponent is not set up.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 27372, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 27483, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 28509, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 28513, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 28566, - "length": 37, - "value": "\"The ratio must be in range of 0...1\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 28740, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 28745, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 29995, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 30245, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 30302, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 30655, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 31288, - "length": 62, - "value": "\"[Failed] Exit channel request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 31349, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 31570, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 31639, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 31705, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 32070, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 32492, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 34671, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 35789, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 28, - "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 28, - "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 28, - "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1622, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "Array", - "offset": 1934, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "Array", - "offset": 2009, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2218, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2264, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2767, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2772, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2909, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3442, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "Array", - "offset": 3541, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3581, - "length": 21, - "value": "\"[Request] User List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3645, - "length": 26, - "value": "\"[Request] Next user List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3785, - "length": 50, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3800, - "length": 10, - "value": "\" customized users have been added.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3937, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4095, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4276, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4334, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4492, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4897, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5000, - "length": 29, - "value": "\"All users have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5274, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5408, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5723, - "length": 33, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5749, - "length": 5, - "value": "\" users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5990, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 6334, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6425, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 6548, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6822, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7047, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7335, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7364, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8351, - "length": 119, - "value": "\"[Request] Create channel with users,\nUsers: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8454, - "length": 351, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8520, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8679, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8815, - "length": 138, - "value": "\"[Failed] Create channel request:\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8929, - "length": 877, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9083, - "length": 57, - "value": "\"[Succeed] Create channel: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9136, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9139, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9644, - "length": 24, - "value": "\"Selected user: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9667, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 258, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "BooleanLiteral", - "offset": 487, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "StringLiteral", - "offset": 600, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 707, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 729, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "StringLiteral", - "offset": 1066, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "StringLiteral", - "offset": 1220, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1614, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1624, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1632, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 2048, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 2148, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 2209, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UITextField+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 412, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1506, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1597, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2316, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2506, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2632, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3008, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1338, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1588, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "FloatLiteral", - "offset": 2111, - "length": 3, - "value": "4.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 3129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 3327, - "length": 2, - "value": "80" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 3364, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 3408, - "length": 2, - "value": "64" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 3420, - "length": 2, - "value": "68" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 4063, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 4907, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 5391, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 5426, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6656, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6664, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6675, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6791, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6903, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6922, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6998, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 7011, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 7022, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 7124, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 7137, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 7373, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 7450, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 7530, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 7605, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 7682, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 7830, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8214, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8325, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8405, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8515, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8589, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8778, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8912, - "length": 3, - "value": "-24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9045, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9179, - "length": 3, - "value": "-24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9312, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9446, - "length": 3, - "value": "-24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9582, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9719, - "length": 3, - "value": "-24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9850, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9982, - "length": 3, - "value": "-24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 10322, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 10467, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 10518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "FloatLiteral", - "offset": 10619, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 10659, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 10918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 11067, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 11128, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 11180, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 11716, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 12093, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 12144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 12187, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 12222, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "FloatLiteral", - "offset": 12322, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 12684, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 12736, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 12778, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 12813, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "FloatLiteral", - "offset": 12854, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 13054, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 13110, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/ViewParams\/SBUQuoteMessageInputViewParams.swift", - "kind": "StringLiteral", - "offset": 1246, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 390, - "length": 21, - "value": "\"[Failed] Save image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 1028, - "length": 51, - "value": "\"[Failed] Save image: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 1078, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 1345, - "length": 24, - "value": "\"[Succeed] Image saved.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 1834, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 3279, - "length": 20, - "value": "\"[Failed] Save file\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 3813, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 4112, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 4210, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 4317, - "length": 26, - "value": "\"[Succeed] File is saved.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 4707, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 4812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 4935, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "FloatLiteral", - "offset": 1310, - "length": 4, - "value": "0.65" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1883, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2090, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3524, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 3603, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4260, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4022, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "FloatLiteral", - "offset": 4252, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4306, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4710, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4720, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4728, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4739, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5409, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5836, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6264, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7960, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8388, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUnknownMessageCell.swift", - "kind": "StringLiteral", - "offset": 852, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUnknownMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1271, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 748, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1129, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1289, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2094, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2105, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2763, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2767, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2827, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 3046, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 3514, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 363, - "length": 25, - "value": "\"com.sendbird.cache.file\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 488, - "length": 10, - "value": "\"template\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 532, - "length": 14, - "value": "\"user-profile\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 577, - "length": 10, - "value": "\"reaction\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 613, - "length": 5, - "value": "\"web\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 29, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 757, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 922, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 1203, - "length": 49, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 1235, - "length": 1, - "value": "\".queue.diskcache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 1937, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 3334, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 3726, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 4545, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 4577, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 4959, - "length": 39, - "value": "\"Could not remove cache path: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 4997, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 5297, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 5338, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 5429, - "length": 20, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 5447, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 12, - "value": "\"voice_temp\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 6265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 6403, - "length": 59, - "value": "\"[Failed] Create directory : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 6461, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 7046, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 7078, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 7253, - "length": 51, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 7285, - "length": 1, - "value": "\".queue.memorycache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "IntegerLiteral", - "offset": 7517, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "IntegerLiteral", - "offset": 7522, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "IntegerLiteral", - "offset": 7529, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "IntegerLiteral", - "offset": 7637, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 8901, - "length": 7, - "value": "\"image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1559, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1614, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "Array", - "offset": 1740, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3604, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3762, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 4875, - "length": 32, - "value": "\"All channels have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4963, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4969, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5145, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5152, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5337, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 5435, - "length": 45, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 5468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 5470, - "length": 8, - "value": "\" channels\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5658, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 6179, - "length": 60, - "value": "\"[Request] Leave channel, ChannelURL: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 6238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6274, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6280, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6426, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6433, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6606, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 6759, - "length": 68, - "value": "\"[Succeed] Leave channel request, ChannelURL: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 6826, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7280, - "length": 154, - "value": "\"[Request]\nChannel push status: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7358, - "length": 4, - "value": "\"on\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7365, - "length": 5, - "value": "\"off\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7371, - "length": 1, - "value": "\",\nChannelURL: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7418, - "length": 1577, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7460, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7466, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7637, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7644, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7829, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7994, - "length": 66, - "value": "\"[Succeed] Channel push status, ChannelURL: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 8059, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1434, - "length": 28, - "value": "\"SendbirdUIKit.SBUGroupChannelListViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9005, - "length": 166, - "value": "\"source: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9055, - "length": 1, - "value": "\",\nfromEvent: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9100, - "length": 1, - "value": "\",\ndelete size : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9155, - "length": 411, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9329, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9576, - "length": 157, - "value": "\"source: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9626, - "length": 1, - "value": "\",\nfromEvent: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9671, - "length": 1, - "value": "\",\nchannel size : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9717, - "length": 404, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 10131, - "length": 157, - "value": "\"source: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 10181, - "length": 1, - "value": "\",\nfromEvent: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 10226, - "length": 1, - "value": "\",\nchannel size : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 10272, - "length": 788, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "Array", - "offset": 6782, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "Array", - "offset": 7012, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 8703, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 9036, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 9688, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 14312, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 14767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 14934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 15606, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 606, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 657, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 682, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", - "kind": "StringLiteral", - "offset": 200, - "length": 24, - "value": "\"SendbirdUIKit.SBUUserMessageCellParams\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 479, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 691, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 907, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 1185, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 1227, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 1447, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 1831, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 1888, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 2595, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 2750, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 3612, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 3954, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 4141, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 4289, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 4390, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 4495, - "length": 2, - "value": "-2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 4589, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 4829, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 4941, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 5061, - "length": 3, - "value": "-10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 5159, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 5493, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 5735, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 5848, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 5946, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 6111, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 6215, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 6330, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 6421, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 6516, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 6667, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "FloatLiteral", - "offset": 6940, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 7032, - "length": 3, - "value": "249" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 7311, - "length": 3, - "value": "751" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "StringLiteral", - "offset": 8167, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 8567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 9063, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 9106, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 9232, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 9282, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "StringLiteral", - "offset": 9739, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 10189, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 10723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "StringLiteral", - "offset": 11384, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", - "kind": "StringLiteral", - "offset": 712, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", - "kind": "IntegerLiteral", - "offset": 826, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", - "kind": "IntegerLiteral", - "offset": 961, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 1290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1014, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1376, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1416, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1634, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1670, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "IntegerLiteral", - "offset": 1801, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1824, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "IntegerLiteral", - "offset": 2006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "StringLiteral", - "offset": 2251, - "length": 23, - "value": "\"Failed to decode JSON\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "StringLiteral", - "offset": 2607, - "length": 33, - "value": "\"Failed to decode JSON: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "StringLiteral", - "offset": 2639, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Data+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 312, - "length": 28, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Data+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 335, - "length": 1, - "value": "\".mov\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.Header.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4750, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4755, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1049, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 1138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "StringLiteral", - "offset": 1237, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1288, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1317, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "FloatLiteral", - "offset": 1359, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1684, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1775, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 1806, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1877, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1944, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 2070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2341, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2380, - "length": 3, - "value": "136" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2532, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2552, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2575, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2705, - "length": 3, - "value": "-12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2731, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2843, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2856, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2894, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2906, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 3331, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 3334, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 3747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 3799, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 4238, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 4277, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 4286, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 4361, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 5340, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 5452, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 5701, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "FloatLiteral", - "offset": 5854, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 6008, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "FloatLiteral", - "offset": 6161, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 6476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 6990, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/MessageSearch\/SBUMessageSearchViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 2815, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 1259, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 1936, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 2331, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 2577, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2706, - "length": 27, - "value": "\"Cannot use `init(coder:)`\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4001, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 7949, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8807, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10335, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 11337, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15522, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 16278, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17500, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 18316, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 18598, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 19005, - "length": 6, - "value": "\"file\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19239, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19407, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19903, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19984, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20113, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20125, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20204, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20216, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20668, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 21150, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 21183, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 21186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22138, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22209, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22267, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22875, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23009, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23619, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 24280, - "length": 58, - "value": "\"Fetched : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 24308, - "length": 1, - "value": "\", keepScroll : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 24337, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 24484, - "length": 25, - "value": "\"Fetched empty messages.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 24717, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 27281, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 27587, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 28131, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 28867, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 29347, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 29826, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 30968, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 31023, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 31141, - "length": 24, - "value": "\"This channel is frozen\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 31355, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 32482, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 33533, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 34369, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 34861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 34975, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 35098, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 35169, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 35181, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 35399, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 35411, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 35675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 35749, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 36495, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 36721, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 36927, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 39910, - "length": 18, - "value": "[\"public.content\"]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 40129, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 40436, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 41229, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 41675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 41845, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 42418, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 42678, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 43638, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 45805, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 46429, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 46755, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 47028, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 47733, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 48645, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 49150, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 52018, - "length": 50, - "value": "\"[Request] Delete message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 52067, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 52473, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 52538, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 57171, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 57437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 6345, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 6527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 7319, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7348, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7565, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7575, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7586, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7597, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7632, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7666, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7841, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8187, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 8472, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8502, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8716, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9018, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9786, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 10478, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 10575, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 10668, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 10756, - "length": 2, - "value": "87" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 10866, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11370, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11622, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11844, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11882, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 12657, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 13083, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 13460, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 13811, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 14265, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 16072, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 16105, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 16135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 16306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 16404, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 17184, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 17265, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 18750, - "length": 60, - "value": "\"Message input view changed mode to \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 19801, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 19839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 20228, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 20265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 20407, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 20454, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 20491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 23933, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 23962, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 23986, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 24013, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 24181, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 24497, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 24785, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 24863, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25218, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25301, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25515, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25527, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25877, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25889, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25970, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25982, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26140, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26148, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26159, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26307, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26316, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26486, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26561, - "length": 2, - "value": "75" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26634, - "length": 2, - "value": "75" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26735, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26748, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26756, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26767, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 30992, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31029, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 31137, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 31253, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31289, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31397, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31402, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31413, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 31627, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 31655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 31699, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 31741, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31779, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 32000, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 32035, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 33346, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 33402, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 33444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 33612, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 33656, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 34369, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 36169, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "Array", - "offset": 36698, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 37700, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 37816, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 38115, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 38696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 38955, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 39253, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 39347, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 39394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 39850, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 39970, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 39975, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 40200, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 40553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2347, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2445, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2541, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3003, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3194, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3405, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3614, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3812, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 4215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4293, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 4423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 4464, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 4512, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 4559, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4606, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 5624, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 5780, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6205, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6219, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6229, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6241, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6488, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6527, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6602, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 7233, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 7376, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 7427, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 7802, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "FloatLiteral", - "offset": 7813, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 7884, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "FloatLiteral", - "offset": 7923, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 9999, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "FloatLiteral", - "offset": 10052, - "length": 3, - "value": "6.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "FloatLiteral", - "offset": 10107, - "length": 3, - "value": "6.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 10175, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "StringLiteral", - "offset": 10221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 11013, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 11025, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 11385, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 11700, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 11853, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "StringLiteral", - "offset": 12208, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "StringLiteral", - "offset": 13022, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 13125, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 13168, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 13186, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 13190, - "length": 2, - "value": "99" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 13322, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 13341, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "StringLiteral", - "offset": 13387, - "length": 5, - "value": "\"99+\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 13448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 13641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 14713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 17547, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "Array", - "offset": 8258, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8472, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 8528, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10083, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10188, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10244, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10329, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10335, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10463, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10469, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 10604, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10658, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 11166, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11413, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11437, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11581, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11737, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11862, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 15922, - "length": 21, - "value": "\"Channel must exist!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 16110, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18705, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18881, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19084, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 20069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 20172, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 20600, - "length": 28, - "value": "\"The index is out of range.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 21010, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 21016, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 21178, - "length": 34, - "value": "\"There are no notification cells!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 22771, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23520, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23536, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23691, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24594, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24786, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24888, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24923, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 25062, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 25254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 25511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26157, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26169, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26204, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26908, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "IntegerLiteral", - "offset": 2663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "BooleanLiteral", - "offset": 2728, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "BooleanLiteral", - "offset": 2786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "StringLiteral", - "offset": 3174, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "StringLiteral", - "offset": 3207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "StringLiteral", - "offset": 3210, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "IntegerLiteral", - "offset": 3592, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "BooleanLiteral", - "offset": 3674, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "BooleanLiteral", - "offset": 3774, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPermissionManager.swift", - "kind": "Dictionary", - "offset": 2371, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPermissionManager.swift", - "kind": "BooleanLiteral", - "offset": 8341, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPermissionManager.swift", - "kind": "BooleanLiteral", - "offset": 8392, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 1222, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 2006, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 2782, - "length": 2, - "value": "55" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 2910, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 3100, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 3511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 3901, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "FloatLiteral", - "offset": 4621, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 4724, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 4746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 4766, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 4789, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 5136, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 7136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 7447, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 7759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "StringLiteral", - "offset": 8365, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 8424, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 8461, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "FloatLiteral", - "offset": 8511, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "StringLiteral", - "offset": 10400, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 10451, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 10480, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "FloatLiteral", - "offset": 10522, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "StringLiteral", - "offset": 1463, - "length": 19, - "value": "\"SendbirdUIKit.SBUMessageStateView\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "StringLiteral", - "offset": 1463, - "length": 19, - "value": "\"SendbirdUIKit.SBUMessageStateView\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUFileMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2518, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUFileMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3214, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUFileMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4045, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5949, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Array+SBUIKit.swift", - "kind": "Array", - "offset": 2057, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Array+SBUIKit.swift", - "kind": "Array", - "offset": 2404, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Array+SBUIKit.swift", - "kind": "Array", - "offset": 2745, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 562, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 851, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1984, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1997, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2005, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2016, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2111, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2149, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2161, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2796, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/CreateChannel\/SBUCreateChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 4143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 263, - "length": 11, - "value": "\"reactions\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 306, - "length": 15, - "value": "\"enable_og_tag\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 371, - "length": 33, - "value": "\"use_last_messege_on_super_group\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 439, - "length": 18, - "value": "\"use_last_seen_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 500, - "length": 26, - "value": "\"enable_message_threading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 580, - "length": 37, - "value": "\"allow_group_channel_create_from_sdk\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 671, - "length": 37, - "value": "\"allow_group_channel_invite_from_sdk\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 760, - "length": 35, - "value": "\"allow_operators_to_edit_operators\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 846, - "length": 34, - "value": "\"allow_operators_to_ban_operators\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 924, - "length": 27, - "value": "\"allow_super_group_channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1004, - "length": 36, - "value": "\"allow_group_channel_leave_from_sdk\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1094, - "length": 37, - "value": "\"allow_group_channel_update_from_sdk\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1197, - "length": 49, - "value": "\"allow_only_operator_sdk_to_update_group_channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1288, - "length": 25, - "value": "\"allow_broadcast_channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1346, - "length": 19, - "value": "\"message_search_v3\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1438, - "length": 28, - "value": "\"allow_user_update_from_sdk\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "BooleanLiteral", - "offset": 4169, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 3263, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.Header.swift", - "kind": "StringLiteral", - "offset": 4433, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 5450, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "FloatLiteral", - "offset": 414, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 598, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 947, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 1189, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 1236, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "FloatLiteral", - "offset": 1972, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2538, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2580, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2618, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2658, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2698, - "length": 2, - "value": "31" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2922, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2973, - "length": 2, - "value": "51" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3024, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3155, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3197, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "FloatLiteral", - "offset": 3238, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "FloatLiteral", - "offset": 3279, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 603, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", - "kind": "StringLiteral", - "offset": 203, - "length": 27, - "value": "\"SendbirdUIKit.SBUUnknownMessageCellParams\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 1094, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 1350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 1530, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 1587, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 1928, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 2227, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 2380, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 2790, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "FloatLiteral", - "offset": 5807, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "FloatLiteral", - "offset": 6240, - "length": 4, - "value": "12.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 7979, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 8087, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 8236, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 8544, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 8872, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 9020, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 9090, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 9325, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 9412, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 10059, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 10377, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 10491, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 10658, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 10873, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 10926, - "length": 6, - "value": "\"name\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 12, - "value": "\"created_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 11049, - "length": 12, - "value": "\"updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 11117, - "length": 13, - "value": "\"ui_template\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 11153, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 11202, - "length": 17, - "value": "\"color_variables\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 11242, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 11356, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 11548, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 11808, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 11869, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 12386, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 12569, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 12654, - "length": 14, - "value": "\"template_key\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 12737, - "length": 20, - "value": "\"template_variables\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 12780, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 12884, - "length": 36, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 12916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 12919, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 13497, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 13670, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 13818, - "length": 33, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 13847, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 13850, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 14109, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 14167, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 14277, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 14318, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 14459, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 14510, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 14515, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 14519, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 14582, - "length": 7, - "value": "\"light\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 14627, - "length": 6, - "value": "\"dark\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 14671, - "length": 9, - "value": "\"default\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 14991, - "length": 5, - "value": "\"\\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 15004, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 15283, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 15498, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 15808, - "length": 23, - "value": "\"\\{([^{}\\\"\\n]+)\\}\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 15854, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 16100, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 16141, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 16271, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 16486, - "length": 10, - "value": "\"{\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 16494, - "length": 1, - "value": "\"}\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 16560, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 17044, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 17115, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 17162, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 17167, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 17171, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 17222, - "length": 7, - "value": "\"light\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 17404, - "length": 6, - "value": "\"dark\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 17583, - "length": 9, - "value": "\"default\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 18033, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 18086, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20355, - "length": 12, - "value": "\"created_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20381, - "length": 12, - "value": "\"updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20355, - "length": 12, - "value": "\"created_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20381, - "length": 12, - "value": "\"updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20625, - "length": 12, - "value": "\"updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20691, - "length": 12, - "value": "\"theme_mode\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20625, - "length": 12, - "value": "\"updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20691, - "length": 12, - "value": "\"theme_mode\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 20858, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 21003, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 21069, - "length": 11, - "value": "\"templates\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Moderations\/SBUModerationsViewModel.Deprecated.swift", - "kind": "StringLiteral", - "offset": 683, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 466, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 949, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 961, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 1098, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 1112, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 1122, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 1134, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "BooleanLiteral", - "offset": 1754, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 2260, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 2464, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 2506, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 2590, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "FloatLiteral", - "offset": 3479, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 3548, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4626, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4651, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4671, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4694, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4837, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4848, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4887, - "length": 3, - "value": "134" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5025, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5035, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5075, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5185, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5255, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5337, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5470, - "length": 2, - "value": "-6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5552, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5672, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5684, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5786, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5799, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5837, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5849, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5951, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5964, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6003, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6015, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6359, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6535, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6538, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6780, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6783, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7266, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7269, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7399, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 7966, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8148, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8260, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8576, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "FloatLiteral", - "offset": 8584, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8744, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8752, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8757, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8978, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "FloatLiteral", - "offset": 9131, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9285, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "FloatLiteral", - "offset": 9438, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 10006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 11407, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11475, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 11522, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 12712, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 12752, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 12822, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 13042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 13266, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 13389, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 13491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 13528, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 14518, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 14728, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1185, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "Array", - "offset": 1294, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2493, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2538, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2558, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2735, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2780, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2800, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3376, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3959, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3999, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4233, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4240, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4425, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 4523, - "length": 45, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4556, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 4558, - "length": 8, - "value": "\" channels\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4637, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "Array", - "offset": 6774, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "Array", - "offset": 8061, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1061, - "length": 27, - "value": "\"SendbirdUIKit.SBUOpenChannelListViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8905, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9330, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9533, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9667, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9806, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9976, - "length": 21, - "value": "\"Channel was deleted\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10066, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelList\/SBUChannelListViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 4243, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelList\/SBUChannelListViewController.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 4414, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelList\/SBUChannelListViewController.Deprecated.swift", - "kind": "StringLiteral", - "offset": 4579, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelList\/SBUChannelListViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 5103, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelList\/SBUChannelListViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 9057, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "Array", - "offset": 2278, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 2460, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 2588, - "length": 4, - "value": "56.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 2625, - "length": 4, - "value": "48.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 2660, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 2696, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 3744, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 4485, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "BooleanLiteral", - "offset": 4716, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 5778, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 5881, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 6203, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 6228, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 6372, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 6409, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 6461, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 6753, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 7108, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 7600, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 7650, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 7709, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 7772, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "BooleanLiteral", - "offset": 7954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "BooleanLiteral", - "offset": 8032, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 8999, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 9822, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 9908, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 10366, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 10893, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 10914, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 10979, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "Array", - "offset": 11324, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 11668, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 11680, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 12011, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 13346, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 13358, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 11, - "value": "\"SBUConfig\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 2361, - "length": 56, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 2393, - "length": 1, - "value": "\".queue.diskcache.config\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "IntegerLiteral", - "offset": 2490, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 2533, - "length": 23, - "value": "\"sbu_config_updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 2581, - "length": 19, - "value": "\"sbu_config_config\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 3266, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 3630, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 4927, - "length": 47, - "value": "\"Failed to save config to disk cache: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 4973, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 5590, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 5982, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 6577, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 6609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 7089, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 7121, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 7588, - "length": 33, - "value": "\"Could not remove path: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 7620, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 7920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 7961, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 8052, - "length": 20, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 8070, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 8916, - "length": 69, - "value": "\"No last update time value file cached in the file path: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 8984, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "IntegerLiteral", - "offset": 9014, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "IntegerLiteral", - "offset": 9261, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 9422, - "length": 34, - "value": "\"No last update time value cached\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "IntegerLiteral", - "offset": 9485, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 10022, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 10031, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 10101, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 10183, - "length": 47, - "value": "\"Error writing to file: lastUpdatedAtKey value\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/NotificationSettings\/SBUGroupChannelPushSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1928, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/NotificationSettings\/SBUGroupChannelPushSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2122, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/NotificationSettings\/SBUGroupChannelPushSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 744, - "length": 36, - "value": "\"SendbirdUIKit.SBUGroupChannelPushSettingsViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 539, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 571, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "BooleanLiteral", - "offset": 726, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 1029, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 1060, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 1092, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "StringLiteral", - "offset": 648, - "length": 6, - "value": "\"spin\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "StringLiteral", - "offset": 709, - "length": 64, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "StringLiteral", - "offset": 741, - "length": 1, - "value": "\".animation.key.\"" - }, + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", "kind": "StringLiteral", - "offset": 772, - "length": 1, + "offset": 421, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "StringLiteral", - "offset": 648, - "length": 6, - "value": "\"spin\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "IntegerLiteral", - "offset": 1781, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "Array", - "offset": 1811, - "length": 20, - "value": "[0.5, 0.1, 0.2, 0.1]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "IntegerLiteral", - "offset": 1957, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "FloatLiteral", - "offset": 1963, - "length": 5, - "value": "-10.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "IntegerLiteral", - "offset": 2050, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "FloatLiteral", - "offset": 2186, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "IntegerLiteral", - "offset": 2260, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "IntegerLiteral", - "offset": 2265, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", "kind": "IntegerLiteral", - "offset": 2414, + "offset": 679, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4375, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "Dictionary", - "offset": 5437, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 7148, - "length": 4, - "value": "true" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 7326, + "offset": 14687, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7672, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7685, - "length": 2, - "value": "-8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7694, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7737, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7870, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7882, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8180, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8193, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 9515, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 12393, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 17873, - "length": 21, - "value": "\"Channel must exist!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18061, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "IntegerLiteral", - "offset": 19678, + "offset": 14731, "length": 1, - "value": "0" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 20359, + "offset": 14762, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 20606, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", + "kind": "FloatLiteral", + "offset": 15162, + "length": 3, + "value": "0.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "IntegerLiteral", - "offset": 20672, + "offset": 15227, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 21702, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "IntegerLiteral", - "offset": 21971, + "offset": 15238, "length": 1, - "value": "0" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23056, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", + "kind": "FloatLiteral", + "offset": 15280, + "length": 3, + "value": "0.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "IntegerLiteral", - "offset": 23836, + "offset": 15322, "length": 1, - "value": "0" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 23990, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 25884, - "length": 28, - "value": "\"The index is out of range.\"" + "offset": 15363, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "IntegerLiteral", - "offset": 26241, + "offset": 15586, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26247, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 26404, - "length": 29, - "value": "\"There are no message cells!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 28770, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 28823, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 29005, + "offset": 15635, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 29728, + "offset": 16406, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 29921, + "offset": 18115, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 29966, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 30111, + "offset": 18155, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 30238, + "offset": 51413, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 31379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 31508, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", + "kind": "StringLiteral", + "offset": 341, + "length": 11, + "value": "\"templates\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 31551, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", + "kind": "StringLiteral", + "offset": 440, + "length": 11, + "value": "\"templates\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 31560, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", + "kind": "StringLiteral", + "offset": 3545, + "length": 58, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 31607, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", + "kind": "StringLiteral", + "offset": 3577, "length": 1, - "value": "0" + "value": "\".queue.diskcache.template\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", "kind": "IntegerLiteral", - "offset": 32363, + "offset": 3676, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 32633, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", + "kind": "StringLiteral", + "offset": 3715, + "length": 30, + "value": "\"sbu_template_list_updated_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", "kind": "BooleanLiteral", - "offset": 32750, + "offset": 4664, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32910, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Common.swift", "kind": "BooleanLiteral", - "offset": 32972, + "offset": 517, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 33224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 34209, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 1301, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "IntegerLiteral", - "offset": 34310, + "offset": 488, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "IntegerLiteral", - "offset": 34784, + "offset": 557, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 34833, - "length": 4, - "value": "true" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "IntegerLiteral", - "offset": 35363, + "offset": 648, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35412, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", + "kind": "FloatLiteral", + "offset": 700, "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 35888, - "length": 1, - "value": "0" + "value": "380.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35937, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", + "kind": "FloatLiteral", + "offset": 750, "length": 5, - "value": "false" + "value": "276.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 36557, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", + "kind": "FloatLiteral", + "offset": 810, + "length": 5, + "value": "294.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7836, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", + "kind": "FloatLiteral", + "offset": 869, + "length": 5, + "value": "274.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7849, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", + "kind": "BooleanLiteral", + "offset": 1114, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "IntegerLiteral", - "offset": 7857, + "offset": 2681, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "IntegerLiteral", - "offset": 7868, + "offset": 2822, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 8703, - "length": 105, - "value": "\"\"" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "BooleanLiteral", - "offset": 8796, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 8803, - "length": 1, - "value": "\".jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 8840, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 9143, - "length": 24, - "value": "\"Failed to get mimeType\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 9270, - "length": 11, - "value": "\"image\/gif\"" + "offset": 2863, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 11320, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", + "kind": "FloatLiteral", + "offset": 3039, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "Dictionary", - "offset": 11552, - "length": 3, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", + "kind": "FloatLiteral", + "offset": 3208, + "length": 4, + "value": "76.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", "kind": "StringLiteral", - "offset": 12386, - "length": 118, - "value": "\"\"" + "offset": 703, + "length": 32, + "value": "\"SendbirdUIKit.SBUGroupChannelSettingsViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUHighlightMessageInfo.swift", "kind": "BooleanLiteral", - "offset": 12479, + "offset": 732, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 12486, - "length": 1, - "value": "\".\"" + "offset": 385, + "length": 21, + "value": "\"notificationSetting\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 12503, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "Dictionary", - "offset": 13277, - "length": 3, - "value": "[]" + "offset": 494, + "length": 21, + "value": "\"notificationSetting\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 13683, - "length": 118, + "offset": 4601, + "length": 55, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 13776, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 13783, + "offset": 4633, "length": 1, - "value": "\".\"" + "value": "\".queue.diskcache.theme\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 13800, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", + "kind": "IntegerLiteral", + "offset": 4729, "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 16475, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 16653, - "length": 105, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 16746, - "length": 5, - "value": "false" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 16753, - "length": 1, - "value": "\".jpg\"" + "offset": 4774, + "length": 45, + "value": "\"sbu_global_notification_settings_updated_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 16970, - "length": 12, - "value": "\"image\/jpeg\"" + "offset": 4847, + "length": 45, + "value": "\"sbu_global_notification_settings_theme_mode\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "BooleanLiteral", - "offset": 17968, - "length": 5, - "value": "false" + "offset": 5799, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUAdminMessageCellParams.swift", "kind": "StringLiteral", - "offset": 18636, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 20459, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 20518, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21124, - "length": 5, - "value": "false" + "offset": 201, + "length": 25, + "value": "\"SendbirdUIKit.SBUAdminMessageCellParams\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21484, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", + "kind": "StringLiteral", + "offset": 614, + "length": 28, + "value": "\"SendbirdUIKit.SBURegisterOperatorViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", "kind": "BooleanLiteral", - "offset": 22062, + "offset": 3060, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUDashboardConfig.swift", "kind": "IntegerLiteral", - "offset": 24204, + "offset": 440, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", + "kind": "StringLiteral", + "offset": 567, + "length": 22, + "value": "\"SendbirdUIKit.SBUInviteUserViewModel\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", "kind": "IntegerLiteral", - "offset": 24433, + "offset": 494, "length": 2, "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 24598, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", "kind": "BooleanLiteral", - "offset": 24684, + "offset": 526, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24816, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", + "kind": "Array", + "offset": 572, "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25007, - "length": 3, - "value": "164" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25060, - "length": 3, - "value": "196" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25194, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", + "kind": "Array", + "offset": 614, "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 25909, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 26029, - "length": 1, - "value": "0" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", "kind": "IntegerLiteral", - "offset": 26134, + "offset": 1161, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", "kind": "IntegerLiteral", - "offset": 26147, + "offset": 1170, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", "kind": "IntegerLiteral", - "offset": 26404, + "offset": 1181, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 26473, - "length": 3, - "value": "196" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "Array", - "offset": 26892, - "length": 2, - "value": "[]" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", "kind": "IntegerLiteral", - "offset": 27405, + "offset": 1191, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", "kind": "BooleanLiteral", - "offset": 27866, + "offset": 1374, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 28044, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.Header.swift", "kind": "BooleanLiteral", - "offset": 28315, + "offset": 5727, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 28752, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 29504, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 30571, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 31540, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 33191, + "offset": 1011, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 243, - "length": 4, - "value": "5381" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 743, - "length": 46, - "value": "\"invalid regex: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "Array", - "offset": 810, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 892, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1076, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "Array", - "offset": 1215, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 1393, - "length": 54, - "value": "\"failed removing regex: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 1446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "Array", - "offset": 1625, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "Array", - "offset": 1744, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1773, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", "kind": "IntegerLiteral", - "offset": 1861, + "offset": 1119, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 2037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2220, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", + "kind": "BooleanLiteral", + "offset": 1712, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", "kind": "IntegerLiteral", - "offset": 2302, + "offset": 1753, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2319, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 2048, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 2545, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 4237, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 4664, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", + "kind": "FloatLiteral", + "offset": 790, "length": 4, - "value": "true" + "value": "64.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", "kind": "BooleanLiteral", - "offset": 7729, + "offset": 4352, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 8533, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/ChannelSettings\/ChannelSettingItem\/SBUChannelSettingItem.swift", "kind": "BooleanLiteral", - "offset": 8583, + "offset": 731, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/ChannelSettings\/ChannelSettingItem\/SBUChannelSettingItem.swift", "kind": "BooleanLiteral", - "offset": 8825, + "offset": 781, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", "kind": "BooleanLiteral", - "offset": 8932, + "offset": 756, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBURegisterOperatorViewController.swift", - "kind": "StringLiteral", - "offset": 2001, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBURegisterOperatorViewController.swift", - "kind": "StringLiteral", - "offset": 2546, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBURegisterOperatorViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", "kind": "BooleanLiteral", - "offset": 3480, - "length": 4, - "value": "true" + "offset": 1439, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBURegisterOperatorViewController.swift", - "kind": "StringLiteral", - "offset": 3530, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", + "kind": "IntegerLiteral", + "offset": 1657, "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBURegisterOperatorViewController.swift", - "kind": "StringLiteral", - "offset": 3926, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" + "value": "24" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", "kind": "BooleanLiteral", - "offset": 458, + "offset": 1492, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 974, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1018, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1038, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1169, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1213, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1233, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1426, - "length": 29, - "value": "\"[Request] Next channel List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", "kind": "BooleanLiteral", - "offset": 1623, + "offset": 1774, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1736, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", + "kind": "FloatLiteral", + "offset": 1990, "length": 4, - "value": "true" + "value": "34.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1800, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", + "kind": "FloatLiteral", + "offset": 2037, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2056, - "length": 29, - "value": "\"[Request] Next channel List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 295, - "length": 27, - "value": "\"SendbirdUIKit.SBUBaseChannelListViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2855, - "length": 26, - "value": "\"Did succeed reconnection\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 3001, - "length": 58, - "value": "\"[Failed] Update user info: \"" + "value": "24.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", "kind": "StringLiteral", - "offset": 3058, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 1659, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 1719, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 1780, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 1835, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 1895, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 1959, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2020, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2131, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2185, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2238, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2289, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2345, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2411, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2466, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2527, - "length": 2, - "value": "15" + "offset": 722, + "length": 24, + "value": "\"SendbirdUIKit.SBUChannelInfoHeaderView\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", "kind": "IntegerLiteral", - "offset": 2582, - "length": 2, - "value": "22" + "offset": 397, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2642, - "length": 2, - "value": "20" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "FloatLiteral", + "offset": 264, + "length": 5, + "value": "258.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "BooleanLiteral", - "offset": 3936, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "FloatLiteral", + "offset": 311, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "Array", - "offset": 10599, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.Header.swift", - "kind": "StringLiteral", - "offset": 1681, - "length": 2, - "value": "\"\"" + "value": "10.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "BooleanLiteral", - "offset": 1893, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "FloatLiteral", + "offset": 354, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "BooleanLiteral", - "offset": 1926, - "length": 5, - "value": "false" + "value": "40.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 2330, + "offset": 1836, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 3263, - "length": 1, - "value": "0" + "offset": 2116, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 4898, + "offset": 2399, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "IntegerLiteral", - "offset": 4915, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 5130, - "length": 2, - "value": "\"\"" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "BooleanLiteral", - "offset": 5410, + "offset": 2843, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 5490, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 5501, - "length": 12, - "value": "\"deprecated\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 5844, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "BooleanLiteral", - "offset": 6115, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 6195, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 6206, - "length": 12, - "value": "\"deprecated\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 6571, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 489, - "length": 6, - "value": "\"%lld\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 564, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 660, - "length": 6, - "value": "1000.0" + "offset": 3179, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "BooleanLiteral", - "offset": 1189, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2058, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2091, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2309, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2488, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2520, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2700, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2733, - "length": 1, - "value": "0" + "offset": 3235, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2920, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "BooleanLiteral", + "offset": 3276, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2955, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "BooleanLiteral", + "offset": 3312, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "BooleanLiteral", - "offset": 6551, + "offset": 3350, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 6651, + "offset": 3409, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 6683, - "length": 1, - "value": "0" + "offset": 3460, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 6717, - "length": 1, - "value": "1" + "offset": 3470, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 7034, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "IntegerLiteral", + "offset": 3482, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 7150, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "IntegerLiteral", + "offset": 3493, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 260, "length": 5, - "value": "false" + "value": "219.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 7256, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 268, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 7743, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 282, + "length": 5, + "value": "209.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 7961, - "length": 3, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 290, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 8006, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 303, "length": 3, - "value": "\" \"" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 8252, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 315, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 8284, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 368, + "length": 5, + "value": "194.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 8474, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 376, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 8507, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 390, + "length": 5, + "value": "169.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 8704, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 398, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 8739, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 411, + "length": 5, + "value": "250.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 8928, - "length": 3, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 419, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 8963, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 433, "length": 3, - "value": "\" \"" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 9608, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 486, + "length": 5, + "value": "116.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 9649, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 494, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 11242, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 508, "length": 4, - "value": "true" + "value": "45.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 11773, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 515, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", - "kind": "BooleanLiteral", - "offset": 718, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 528, + "length": 5, + "value": "221.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", - "kind": "BooleanLiteral", - "offset": 928, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 536, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 550, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", - "kind": "IntegerLiteral", - "offset": 2803, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 603, + "length": 4, + "value": "98.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", - "kind": "IntegerLiteral", - "offset": 3213, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 610, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 460, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 624, "length": 4, - "value": "true" + "value": "17.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 754, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 631, "length": 5, - "value": "10001" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 2008, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 644, "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 2263, - "length": 4, - "value": "true" + "value": "200.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 2605, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 652, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", "kind": "FloatLiteral", - "offset": 3232, + "offset": 666, "length": 3, - "value": "0.5" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 3293, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 719, + "length": 4, + "value": "73.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 3304, - "length": 1, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 726, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", "kind": "FloatLiteral", - "offset": 3342, - "length": 3, - "value": "0.5" + "offset": 740, + "length": 4, + "value": "19.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 3380, - "length": 1, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 747, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 3417, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 760, "length": 5, - "value": "false" + "value": "137.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 5107, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 768, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 5157, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 782, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 5795, - "length": 2, - "value": "10" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 867, + "length": 5, + "value": "168.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 5805, - "length": 2, - "value": "12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 875, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 5817, - "length": 2, - "value": "10" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 889, + "length": 5, + "value": "226.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 5828, - "length": 2, - "value": "12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 897, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "StringLiteral", - "offset": 252, - "length": 17, - "value": "\"SendbirdUIKit.SBUNewMessageInfo\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 910, + "length": 5, + "value": "171.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/URL+SBUKit.swift", - "kind": "BooleanLiteral", - "offset": 326, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 918, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/URL+SBUKit.swift", - "kind": "Dictionary", - "offset": 470, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 932, "length": 3, - "value": "[]" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/URL+SBUKit.swift", - "kind": "BooleanLiteral", - "offset": 636, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 987, "length": 5, - "value": "false" + "value": "105.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/URL+SBUKit.swift", - "kind": "StringLiteral", - "offset": 717, - "length": 7, - "value": "\"https\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 995, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3305, - "length": 1, - "value": "8" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1009, + "length": 5, + "value": "192.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4097, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1017, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4707, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1030, + "length": 5, + "value": "133.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4746, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1038, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4998, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1052, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5509, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1107, "length": 4, - "value": "true" + "value": "37.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5631, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1114, "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5664, - "length": 4, - "value": "true" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "StringLiteral", - "offset": 6152, - "length": 42, - "value": "\"The message is not a type of UserMessage\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1128, + "length": 5, + "value": "156.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 6386, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1136, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIViewController+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 665, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1149, + "length": 5, + "value": "114.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelSettings\/SBUBaseChannelSettingsViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 3161, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1157, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "IntegerLiteral", - "offset": 433, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1171, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 474, - "length": 11, - "value": "\"📕Error\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1226, + "length": 3, + "value": "2.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "IntegerLiteral", - "offset": 735, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1232, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 776, - "length": 13, - "value": "\"📙Warning\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1246, + "length": 5, + "value": "125.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "IntegerLiteral", - "offset": 1033, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1254, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1074, - "length": 10, - "value": "\"📘Info\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1267, + "length": 5, + "value": "105.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1321, - "length": 6, - "value": "\"Main\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1275, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1352, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1289, "length": 3, - "value": "\"-\"" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1413, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1344, "length": 3, - "value": "\"\/\"" + "value": "6.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1426, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1350, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1454, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1364, + "length": 5, + "value": "104.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1468, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1372, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1543, - "length": 25, - "value": "\"yyyy-MM-dd HH:mm:ss.SSS\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1385, + "length": 4, + "value": "88.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1691, - "length": 51, - "value": "\"🎨SBULog \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1392, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1710, - "length": 1, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1406, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1720, - "length": 1, - "value": "\" [%@ %@:%@:%d] \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1494, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 35, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1506, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1827, - "length": 44, - "value": "\"🎨SBULog \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1564, + "length": 5, + "value": "238.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1846, - "length": 1, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1572, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1856, - "length": 1, - "value": "\" [%@ %@:%@:%d]\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1586, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.Header.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1644, + "length": 5, + "value": "224.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1404, - "length": 2, - "value": "-1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1652, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 2398, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1666, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 2637, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1724, "length": 5, - "value": "false" + "value": "189.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 2864, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1732, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 3718, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1746, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 4075, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1804, "length": 4, - "value": "true" + "value": "57.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 4154, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1811, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "IntegerLiteral", - "offset": 318, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1825, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1883, "length": 4, - "value": "1" + "value": "44.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "IntegerLiteral", - "offset": 364, - "length": 10, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1890, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "IntegerLiteral", - "offset": 318, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1904, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1962, "length": 4, - "value": "1" + "value": "22.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "IntegerLiteral", - "offset": 364, - "length": 10, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1969, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "StringLiteral", - "offset": 786, - "length": 6, - "value": "\"none\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1983, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "StringLiteral", - "offset": 824, - "length": 6, - "value": "\"edit\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2041, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "StringLiteral", - "offset": 868, - "length": 13, - "value": "\"quote reply\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2053, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 1820, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2135, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2147, "length": 4, - "value": "true" + "value": "0.55" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 2278, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2202, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 3845, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2214, "length": 4, - "value": "true" + "value": "0.32" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", "kind": "FloatLiteral", - "offset": 4179, + "offset": 2298, "length": 3, - "value": "0.7" + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 6037, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2310, "length": 4, - "value": "true" + "value": "0.88" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 7192, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2365, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 7781, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2377, + "length": 3, + "value": "0.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 8247, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2431, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2443, "length": 4, - "value": "true" + "value": "0.38" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 2462, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2498, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3192, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2510, "length": 4, - "value": "true" + "value": "0.12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4979, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2592, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 5028, - "length": 28, - "value": "\"The index is out of range.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2604, + "length": 4, + "value": "0.88" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5064, - "length": 2, - "value": "-1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2658, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5144, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2670, + "length": 3, + "value": "0.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6129, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2723, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6189, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2735, + "length": 4, + "value": "0.38" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6221, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2789, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 6588, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2801, "length": 4, - "value": "true" + "value": "0.12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6645, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2879, + "length": 5, + "value": "253.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 31, - "value": "\"enableUsingDefaultUserProfile\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2887, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 31, - "value": "\"enableUsingDefaultUserProfile\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2901, + "length": 5, + "value": "170.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 476, - "length": 16, - "value": "\"enableDocument\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2909, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 476, - "length": 16, - "value": "\"enableDocument\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2922, + "length": 5, + "value": "170.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 13, - "value": "\"enablePhoto\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2930, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 656, - "length": 13, - "value": "\"enableVideo\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2944, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 13, - "value": "\"enablePhoto\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2995, + "length": 5, + "value": "246.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 656, - "length": 13, - "value": "\"enableVideo\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3003, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 790, - "length": 13, - "value": "\"enablePhoto\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3017, + "length": 4, + "value": "97.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 834, - "length": 13, - "value": "\"enableVideo\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3024, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 790, - "length": 13, - "value": "\"enablePhoto\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3037, + "length": 4, + "value": "97.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 834, - "length": 13, - "value": "\"enableVideo\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3044, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1123, - "length": 13, - "value": "\"enableOgtag\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3058, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1177, - "length": 23, - "value": "\"enableTypingIndicator\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3109, + "length": 5, + "value": "222.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1235, - "length": 17, - "value": "\"enableReactions\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3117, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 15, - "value": "\"enableMention\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3131, + "length": 4, + "value": "54.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1338, - "length": 20, - "value": "\"enableVoiceMessage\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3138, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1123, - "length": 13, - "value": "\"enableOgtag\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3151, + "length": 4, + "value": "11.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1177, - "length": 23, - "value": "\"enableTypingIndicator\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3158, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1235, - "length": 17, - "value": "\"enableReactions\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3172, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 15, - "value": "\"enableMention\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3223, + "length": 5, + "value": "191.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1338, - "length": 20, - "value": "\"enableVoiceMessage\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3231, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1573, - "length": 23, - "value": "\"enableTypingIndicator\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3245, + "length": 3, + "value": "7.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1642, - "length": 28, - "value": "\"enableMessageReceiptStatus\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3251, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1573, - "length": 23, - "value": "\"enableTypingIndicator\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3264, + "length": 4, + "value": "17.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1642, - "length": 28, - "value": "\"enableMessageReceiptStatus\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3271, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1802, - "length": 21, - "value": "\"enableMessageSearch\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3285, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1802, - "length": 21, - "value": "\"enableMessageSearch\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3336, + "length": 5, + "value": "157.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1946, - "length": 13, - "value": "\"enableOgtag\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3344, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1946, - "length": 13, - "value": "\"enableOgtag\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3358, + "length": 3, + "value": "9.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 1962, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3364, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Dictionary", - "offset": 2342, - "length": 3, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3377, + "length": 4, + "value": "30.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Dictionary", - "offset": 2471, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3384, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3398, "length": 3, - "value": "[]" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 2748, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3484, + "length": 5, + "value": "173.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3492, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 2816, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3506, + "length": 5, + "value": "201.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 2860, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3514, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 2958, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3527, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Dictionary", - "offset": 3927, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3539, "length": 3, - "value": "[]" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Dictionary", - "offset": 3993, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3617, "length": 3, - "value": "[]" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3629, "length": 5, - "value": "false" + "value": "242.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 5064, - "length": 3, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3637, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 5982, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3650, "length": 5, - "value": "false" + "value": "182.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 6009, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3658, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 6037, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3672, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 6137, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 1102, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", "kind": "BooleanLiteral", - "offset": 6197, - "length": 5, - "value": "false" + "offset": 484, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", "kind": "BooleanLiteral", - "offset": 6229, + "offset": 1363, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 6588, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", + "kind": "BooleanLiteral", + "offset": 1512, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", "kind": "BooleanLiteral", - "offset": 8387, + "offset": 2129, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 8540, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", + "kind": "BooleanLiteral", + "offset": 2283, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "IntegerLiteral", - "offset": 8589, + "offset": 1272, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 9005, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "FloatLiteral", + "offset": 1625, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 9757, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "Array", + "offset": 1913, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "IntegerLiteral", - "offset": 9886, - "length": 1, - "value": "2" + "offset": 2729, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 10336, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2755, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 10815, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "FloatLiteral", + "offset": 3095, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 11416, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "BooleanLiteral", + "offset": 8951, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 12167, - "length": 4, - "value": "true" + "offset": 19949, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 12211, + "offset": 20700, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 12660, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "BooleanLiteral", + "offset": 21463, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 12752, - "length": 4, - "value": "true" + "offset": 27041, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 12887, - "length": 4, - "value": "true" + "offset": 36298, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 12987, - "length": 4, - "value": "true" + "offset": 44738, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "StringLiteral", + "offset": 54026, + "length": 23, + "value": "\"SendbirdUIKit.MessageTemplateBaseView\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "FloatLiteral", + "offset": 55971, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 13043, + "offset": 64319, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "StringLiteral", + "offset": 1095, + "length": 23, + "value": "\"SendbirdUIKit.MessageTemplateRenderer\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "IntegerLiteral", + "offset": 68872, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "IntegerLiteral", - "offset": 13100, + "offset": 69108, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "IntegerLiteral", - "offset": 13622, + "offset": 69581, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", "kind": "BooleanLiteral", - "offset": 13891, - "length": 4, - "value": "true" + "offset": 953, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 14035, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", + "kind": "BooleanLiteral", + "offset": 1096, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", "kind": "BooleanLiteral", - "offset": 14103, + "offset": 3879, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUMessageWebViewModel.swift", "kind": "BooleanLiteral", - "offset": 15266, + "offset": 573, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 15343, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUMessageWebViewModel.swift", + "kind": "BooleanLiteral", + "offset": 602, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUStackView.swift", + "kind": "FloatLiteral", + "offset": 512, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", "kind": "StringLiteral", - "offset": 15773, + "offset": 716, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", "kind": "IntegerLiteral", - "offset": 16015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 16394, - "length": 4, - "value": "true" + "offset": 2934, + "length": 2, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 16477, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUUtils.swift", + "kind": "StringLiteral", + "offset": 246, + "length": 15, + "value": "\"Group Channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 17219, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUUtils.swift", + "kind": "StringLiteral", + "offset": 300, + "length": 14, + "value": "\"Open Channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", "kind": "BooleanLiteral", - "offset": 17279, + "offset": 2513, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 17835, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 17885, - "length": 2, - "value": "\"\"" + "offset": 266, + "length": 8, + "value": "\"Cancel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 18021, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 302, + "length": 4, + "value": "\"OK\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 18999, - "length": 18, - "value": "\"[@][{](.*?)([}])\"" + "offset": 337, + "length": 7, + "value": "\"Retry\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 21762, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 374, + "length": 6, + "value": "\"Save\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 21862, - "length": 4, - "value": "\"@{\"" + "offset": 410, + "length": 6, + "value": "\"Copy\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 21891, - "length": 3, - "value": "\"}\"" + "offset": 448, + "length": 8, + "value": "\"Delete\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 22679, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 486, + "length": 6, + "value": "\"Edit\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 22708, - "length": 2, - "value": "\"\"" + "offset": 524, + "length": 8, + "value": "\"Remove\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 22784, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 8, + "value": "\"Camera\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 22819, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 615, + "length": 15, + "value": "\"Photo library\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 24733, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 664, + "length": 7, + "value": "\"Files\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 25650, - "length": 3, - "value": "\" \"" + "offset": 704, + "length": 12, + "value": "\"Loading...\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 26557, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 748, + "length": 8, + "value": "\"Invite\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 27671, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 791, + "length": 12, + "value": "\"Take photo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 28549, - "length": 42, - "value": "\"Mention must have a range to insert into\"" + "offset": 840, + "length": 14, + "value": "\"Choose photo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 28773, - "length": 52, - "value": "\"Mention range is out of bounds for the text length\"" + "offset": 891, + "length": 14, + "value": "\"Remove photo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 29132, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 942, + "length": 14, + "value": "\"View library\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 29466, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 988, + "length": 8, + "value": "\"Search\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 29794, - "length": 3, - "value": "\" \"" + "offset": 1030, + "length": 10, + "value": "\"Settings\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 29925, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1071, + "length": 7, + "value": "\"Reply\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 29971, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1142, + "length": 34, + "value": "\"Are you sure you want to delete?\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 30119, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1227, + "length": 41, + "value": "\"Please allow camera usage from settings\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 30130, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1325, + "length": 34, + "value": "\"Please Allow PhotoLibrary Access\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 30222, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1424, + "length": 60, + "value": "\"PhotoLibrary access required to get your photos and videos\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 30442, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1608, + "length": 45, + "value": "\"Please allow microphone usage from settings\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 30572, - "length": 4, - "value": "\"\n\"" + "offset": 1721, + "length": 11, + "value": "\"Yesterday\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 30653, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1828, + "length": 8, + "value": "\"%lld%@\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 30800, + "offset": 1858, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 30804, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1863, + "length": 7, + "value": "\"years\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 31341, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1873, + "length": 6, + "value": "\"year\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 31411, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1981, + "length": 8, + "value": "\"%lld%@\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 31489, + "offset": 2011, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 31664, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2016, + "length": 6, + "value": "\"days\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 31913, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2025, + "length": 5, + "value": "\"day\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 31929, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2134, + "length": 11, + "value": "\"%lldmonth\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 32012, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2258, + "length": 7, + "value": "\"%lldh\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 32067, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2377, + "length": 7, + "value": "\"%lldm\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 32139, - "length": 2, - "value": "\"\"" + "offset": 2435, + "length": 5, + "value": "\"ago\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 32180, - "length": 3, - "value": "\" \"" + "offset": 2473, + "length": 4, + "value": "\"on\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 32208, - "length": 4, - "value": "\"\n\"" + "offset": 2556, + "length": 10, + "value": "\"Channels\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 9, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2621, + "length": 18, + "value": "\"uploaded a file.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 9, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2709, + "length": 15, + "value": "\"Group Channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 9, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2773, + "length": 14, + "value": "\"(No members)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 802, - "length": 7, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2836, + "length": 11, + "value": "\"Last seen\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 819, - "length": 13, - "value": "2" + "offset": 3143, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 842, - "length": 10, - "value": "3" + "offset": 3182, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 862, - "length": 6, - "value": "4" + "offset": 3212, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 878, - "length": 4, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3226, + "length": 8, + "value": "\"Member\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 802, - "length": 7, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3269, + "length": 17, + "value": "\"%@ is typing...\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 819, - "length": 13, + "offset": 3311, + "length": 1, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 842, - "length": 10, - "value": "3" + "offset": 3351, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 862, - "length": 6, - "value": "4" + "offset": 3381, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 878, - "length": 4, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3395, + "length": 8, + "value": "\"Member\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 802, - "length": 7, + "offset": 3441, + "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 819, - "length": 13, - "value": "2" + "offset": 3471, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 842, - "length": 10, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3485, + "length": 8, + "value": "\"Member\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 862, - "length": 6, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3528, + "length": 25, + "value": "\"%@ and %@ are typing...\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 878, - "length": 4, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3613, + "length": 30, + "value": "\"Several people are typing...\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 3129, - "length": 76, - "value": "\"init(channelURL:startingPoint:messageListParams:) has not been implemented\"" + "offset": 3714, + "length": 13, + "value": "\"File saved.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 6467, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3782, + "length": 27, + "value": "\"Couldn’t download file.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 6714, - "length": 2, - "value": "\"\"" + "offset": 3860, + "length": 23, + "value": "\"Couldn’t open file.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 7773, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" + "offset": 3933, + "length": 17, + "value": "\"uploaded a file\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 7907, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "IntegerLiteral", + "offset": 4059, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 9328, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4081, + "length": 15, + "value": "\"1 new message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 9531, + "offset": 4110, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 9728, - "length": 1, - "value": "0" + "offset": 4114, + "length": 2, + "value": "99" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 9827, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4137, + "length": 23, + "value": "\"\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4146, + "length": 3, + "value": "\" new messages\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 10003, - "length": 1, - "value": "0" + "offset": 4174, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 10130, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4201, + "length": 18, + "value": "\"99+ new messages\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 10297, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4256, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 10577, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4327, + "length": 16, + "value": "\"Channel frozen\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 10733, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4427, + "length": 14, + "value": "\"Open Channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 10891, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4492, + "length": 14, + "value": "\"Participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 11728, + "offset": 4627, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 11797, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4649, + "length": 15, + "value": "\"1 participant\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 11863, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4701, + "length": 23, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 12206, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4710, + "length": 12, + "value": "\" participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 12287, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 44, + "value": "\"SENDBIRD_NOTIFICATION_CHANNEL_NOTIFICATION\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "Array", - "offset": 12397, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5267, + "length": 59, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 12409, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5315, "length": 1, - "value": "1" + "value": "\"_\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 12421, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5325, "length": 1, - "value": "0" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 12439, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5468, + "length": 15, + "value": "\"Notifications\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 12820, - "length": 2, - "value": "\"\"" + "offset": 5569, + "length": 21, + "value": "\"Channel information\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 13168, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5643, + "length": 13, + "value": "\"Change name\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 13412, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5710, + "length": 22, + "value": "\"Change channel image\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 13501, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5788, + "length": 12, + "value": "\"Enter name\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "Array", - "offset": 13882, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5864, + "length": 20, + "value": "\"Enter channel name\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 15971, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5939, + "length": 15, + "value": "\"Notifications\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 16784, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6012, "length": 4, - "value": "true" + "value": "\"On\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 18480, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6075, + "length": 5, + "value": "\"Off\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 18900, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6150, + "length": 15, + "value": "\"Mentions only\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 19171, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6225, + "length": 9, + "value": "\"Members\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6294, + "length": 14, + "value": "\"Participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 19372, + "offset": 6422, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "Array", - "offset": 22654, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6444, + "length": 9, + "value": "\"members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 25003, - "length": 2, + "offset": 6490, + "length": 18, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 25147, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 25202, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6499, + "length": 7, + "value": "\" members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 25628, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6571, + "length": 15, + "value": "\"Leave channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 25947, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6634, + "length": 16, + "value": "\"Delete channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 25983, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6712, + "length": 17, + "value": "\"Delete channel?\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 26097, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6789, + "length": 47, + "value": "\"Once deleted, this channel can't be restored.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 26187, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6884, + "length": 19, + "value": "\"Search in channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 26263, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6961, + "length": 13, + "value": "\"Moderations\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 27186, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7025, + "length": 11, + "value": "\"Operators\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 27289, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 15, + "value": "\"Muted members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 1232, - "length": 30, - "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" + "offset": 7166, + "length": 20, + "value": "\"Muted participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 1232, - "length": 30, - "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" + "offset": 7249, + "length": 14, + "value": "\"Banned users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 1232, - "length": 30, - "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" + "offset": 7319, + "length": 16, + "value": "\"Freeze channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 2196, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7385, + "length": 5, + "value": "\"URL\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 2218, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7488, + "length": 15, + "value": "\"Notifications\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "FloatLiteral", - "offset": 2293, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7567, + "length": 15, + "value": "\"Notifications\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 2322, - "length": 2, - "value": "50" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7636, + "length": 18, + "value": "\"All new messages\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 4085, - "length": 2, - "value": "\"\"" + "offset": 7718, + "length": 15, + "value": "\"Mentions only\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 4721, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7803, + "length": 100, + "value": "\"Turn on push notifications if you wish to be notified when messages are delivered to this channel.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 4776, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7988, + "length": 16, + "value": "\"Type a message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 5299, - "length": 2, - "value": "\"\"" + "offset": 8059, + "length": 37, + "value": "\"Chat is unavailable in this channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 5717, - "length": 2, - "value": "56" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8145, + "length": 15, + "value": "\"You are muted\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "FloatLiteral", - "offset": 6796, - "length": 3, - "value": "1.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8209, + "length": 18, + "value": "\"Reply to message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "FloatLiteral", - "offset": 6843, - "length": 3, - "value": "6.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8336, + "length": 35, + "value": "\"Reply to \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 6962, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8370, + "length": 1, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 7063, - "length": 2, - "value": "56" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8435, + "length": 7, + "value": "\"Photo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 7216, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8498, + "length": 5, + "value": "\"GIF\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 7306, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8561, + "length": 7, + "value": "\"Video\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 7398, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8632, + "length": 10, + "value": "\"(edited)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 7649, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8682, + "length": 16, + "value": "\"System message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 7662, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8745, + "length": 24, + "value": "\"(Unknown message type)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 8104, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8822, + "length": 26, + "value": "\"Can't read this message.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 8167, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8979, + "length": 56, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 8414, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8998, + "length": 7, + "value": "\" replied to \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 8881, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9034, + "length": 1, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 9664, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9078, "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "FloatLiteral", - "offset": 9711, - "length": 3, - "value": "0.2" + "value": "\"You\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 9795, + "offset": 9270, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 9837, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9292, + "length": 9, + "value": "\"1 reply\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 9884, + "offset": 9315, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 9897, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "IntegerLiteral", + "offset": 9319, + "length": 2, + "value": "99" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "FloatLiteral", - "offset": 10059, - "length": 3, - "value": "0.2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9342, + "length": 30, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 10143, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9363, + "length": 7, + "value": "\" replies\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 10185, - "length": 1, - "value": "0" + "offset": 9386, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 10252, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9426, + "length": 13, + "value": "\"99+ replies\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 11105, - "length": 37, - "value": "\"Did receive error: \"" + "offset": 9442, + "length": 30, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 11138, - "length": 2, - "value": "\"\"" + "offset": 9463, + "length": 7, + "value": "\" replies\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 11141, + "offset": 9509, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 809, - "length": 21, - "value": "\"SendbirdUIKit.SBUFileViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 12477, - "length": 5, - "value": "false" + "offset": 9616, + "length": 52, + "value": "\"Couldn't find the original message for this reply.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 12621, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9741, + "length": 21, + "value": "\"Message unavailable\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 12712, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9849, + "length": 18, + "value": "\"(Template error)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 12807, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9929, + "length": 31, + "value": "\"Can't read this notification.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 12900, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10025, + "length": 13, + "value": "\"No channels\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 14620, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10081, + "length": 13, + "value": "\"No messages\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 14760, - "length": 2, - "value": "12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10142, + "length": 18, + "value": "\"No notifications\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 14856, - "length": 3, - "value": "-12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10200, + "length": 10, + "value": "\"No users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 14949, - "length": 2, - "value": "12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10258, + "length": 18, + "value": "\"No muted members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 15026, - "length": 2, - "value": "32" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10329, + "length": 23, + "value": "\"No muted participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 15105, - "length": 2, - "value": "32" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10399, + "length": 17, + "value": "\"No banned users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 15186, - "length": 2, - "value": "32" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10461, + "length": 18, + "value": "\"No results found\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 521, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10516, + "length": 22, + "value": "\"Something went wrong\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 527, + "offset": 10679, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 537, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10701, + "length": 8, + "value": "\"Create\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 548, - "length": 2, - "value": "76" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10746, + "length": 17, + "value": "\"Create \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 882, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10762, "length": 1, - "value": "6" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "Array", - "offset": 1362, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10831, + "length": 13, + "value": "\"New Channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 1392, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10905, + "length": 16, + "value": "\"Select members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 2076, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10981, + "length": 21, + "value": "\"New channel profile\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 2207, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11092, + "length": 8, + "value": "\"Create\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 2732, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11156, + "length": 13, + "value": "\"New channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3050, - "length": 2, - "value": "56" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11237, + "length": 20, + "value": "\"Enter channel name\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3215, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11340, + "length": 14, + "value": "\"Invite users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3221, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11413, + "length": 14, + "value": "\"Select users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 3231, + "offset": 11537, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3242, - "length": 2, - "value": "76" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11559, + "length": 8, + "value": "\"Invite\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3465, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11604, + "length": 17, + "value": "\"Invite \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3475, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11620, + "length": 1, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 3487, + "offset": 11749, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3497, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 3937, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11771, + "length": 10, + "value": "\"Register\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 4008, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11818, + "length": 19, + "value": "\"Register \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4190, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11836, "length": 1, - "value": "0" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4200, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11916, + "length": 7, + "value": "\"(You)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4208, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11961, + "length": 5, + "value": "\"Ban\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4219, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12006, + "length": 7, + "value": "\"Unban\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4437, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12052, + "length": 6, + "value": "\"Mute\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4463, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12099, + "length": 8, + "value": "\"Unmute\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4487, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12161, + "length": 21, + "value": "\"Unregister operator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4514, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12234, + "length": 22, + "value": "\"Register as operator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4813, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12304, + "length": 9, + "value": "\"Members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 5065, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12363, + "length": 11, + "value": "\"Operators\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 6114, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12428, + "length": 15, + "value": "\"Muted members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 6263, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12502, + "length": 20, + "value": "\"Muted Participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 6382, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12584, + "length": 14, + "value": "\"Banned users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 6541, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12651, + "length": 14, + "value": "\"Participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 6696, - "length": 1, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12728, + "length": 11, + "value": "\"(No name)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 6718, - "length": 1, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12778, + "length": 10, + "value": "\"Operator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 7143, - "length": 1, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12872, + "length": 10, + "value": "\"Operator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 7169, - "length": 1, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12931, + "length": 8, + "value": "\"Member\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 7495, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12983, + "length": 9, + "value": "\"User ID\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 7857, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13037, + "length": 9, + "value": "\"Message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 8095, - "length": 1, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13092, + "length": 10, + "value": "\"Register\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 8121, - "length": 1, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13150, + "length": 12, + "value": "\"Unregister\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 8200, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13204, + "length": 6, + "value": "\"Mute\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 8333, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13254, + "length": 8, + "value": "\"Unmute\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 8568, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13303, "length": 5, - "value": "false" + "value": "\"Ban\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 8695, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13384, + "length": 7, + "value": "\"Group\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 8744, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13439, + "length": 13, + "value": "\"Super group\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 213, - "length": 26, - "value": "\"SendbirdUIKit.SBUMenuSheetViewController\"" + "offset": 13499, + "length": 11, + "value": "\"Broadcast\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 331, - "length": 8, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13607, + "length": 3, + "value": "\"@\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 349, - "length": 9, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13722, + "length": 95, + "value": "\"You can mention up to \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 368, - "length": 9, - "value": "3" + "offset": 13793, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 331, - "length": 8, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13796, + "length": 5, + "value": "\" times per message. \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 349, - "length": 9, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13993, + "length": 17, + "value": "\"Reply in thread\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 368, - "length": 9, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14113, + "length": 17, + "value": "\"Reply in thread\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 331, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14177, + "length": 17, + "value": "\"Reply to thread\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14283, "length": 8, - "value": "1" + "value": "\"Thread\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 349, - "length": 9, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14514, + "length": 8, + "value": "\"Cancel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 368, - "length": 9, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14772, + "length": 20, + "value": "\"Channel is frozen.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 12, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14996, + "length": 31, + "value": "\"You're muted by the operator.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 530, - "length": 19, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 15242, + "length": 15, + "value": "\"Voice message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 559, - "length": 19, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 15459, + "length": 15, + "value": "\"Voice message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 588, - "length": 6, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 15715, + "length": 15, + "value": "\"Voice message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 604, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 15846, "length": 15, - "value": "5" + "value": "\"Voice_message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 629, - "length": 19, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 276, + "length": 4, + "value": "18.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 12, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 371, + "length": 4, + "value": "18.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 530, - "length": 19, - "value": "2" + "offset": 583, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 559, - "length": 19, - "value": "3" + "offset": 618, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 588, - "length": 6, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 775, + "length": 4, + "value": "0.2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 604, - "length": 15, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 906, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 629, - "length": 19, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 1049, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 508, - "length": 12, - "value": "1" + "offset": 1268, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 530, - "length": 19, - "value": "2" + "offset": 1303, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 559, - "length": 19, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 1595, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 588, - "length": 6, - "value": "4" + "offset": 1815, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 604, - "length": 15, - "value": "5" + "offset": 1850, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 2141, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 629, - "length": 19, - "value": "6" + "offset": 2360, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 2548, - "length": 1, - "value": "0" + "offset": 2395, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 3222, - "length": 36, - "value": "\"[Failed] Request record permission\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 2683, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "Dictionary", - "offset": 3737, - "length": 3, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 2899, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 4112, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 2934, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 4507, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 3236, + "length": 4, + "value": "18.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 4843, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 3460, + "length": 2, + "value": "24" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 4884, - "length": 31, - "value": "\"[Failed] Recorder preparation\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 3495, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 5100, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 3657, "length": 4, - "value": "true" + "value": "0.38" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 5172, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 3795, "length": 4, - "value": "true" + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 5263, - "length": 17, - "value": "\"[Failed] Record\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 4017, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 5393, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 4052, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 5599, - "length": 36, - "value": "\"[Failed] Request record permission\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 4214, + "length": 4, + "value": "0.4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 5843, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 4352, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "FloatLiteral", - "offset": 5997, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 4574, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 6004, - "length": 4, - "value": "1000" + "offset": 4609, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 6660, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 4882, "length": 4, - "value": "true" + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 6728, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 5102, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 6985, - "length": 1, - "value": "0" + "offset": 5137, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 7873, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 5439, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 7922, - "length": 73, - "value": "\"[Failed] Audio session preparation error: \"" + "value": "12.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 7994, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 5661, "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 8113, - "length": 5, - "value": "false" + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 8306, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 5696, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 8350, - "length": 5, - "value": "\"m4a\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 5974, + "length": 4, + "value": "12.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 8383, - "length": 30, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 6199, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 8395, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 6234, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 8412, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 6509, + "length": 4, + "value": "11.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 8558, - "length": 28, - "value": "\"[Failed] Create voice file\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 6731, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 8704, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 6766, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 9109, - "length": 74, - "value": "\"[Failed] Audio recorder preparation error: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 7044, + "length": 4, + "value": "11.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 9182, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 7269, "length": 2, - "value": "\"\"" + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 9301, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 7304, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 9378, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 7629, "length": 4, - "value": "true" + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 9404, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 7855, + "length": 2, + "value": "22" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 9449, - "length": 40, - "value": "\"[Succeeded] Audio recorder preparation\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 7890, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 9626, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 8054, "length": 4, - "value": "true" + "value": "0.2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "FloatLiteral", - "offset": 9805, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 9935, + "offset": 8195, "length": 4, - "value": "true" + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 10280, - "length": 4, - "value": "1000" + "offset": 8422, + "length": 2, + "value": "24" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 10775, - "length": 79, - "value": "\"Recorder will be canceled because it is less than the minimum recording time.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 8457, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 11192, - "length": 27, - "value": "\"[Failed] Finish recording\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 8621, + "length": 4, + "value": "0.2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 11516, - "length": 59, - "value": "\"[Failed] Recorder encode error: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 8762, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 11574, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 8989, "length": 2, - "value": "\"\"" + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 2089, - "length": 16, - "value": "\"SendbirdUIKit.SBUVoiceRecorder\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 9024, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 739, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 9188, + "length": 4, + "value": "0.2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 778, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", + "kind": "StringLiteral", + "offset": 421, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 811, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", + "kind": "StringLiteral", + "offset": 471, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", "kind": "StringLiteral", - "offset": 200, - "length": 24, - "value": "\"SendbirdUIKit.SBUFileMessageCellParams\"" + "offset": 522, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUTheme.Deprecated.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", "kind": "FloatLiteral", - "offset": 13002, + "offset": 789, "length": 3, - "value": "0.5" + "value": "0.4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUTheme.Deprecated.swift", - "kind": "FloatLiteral", - "offset": 20612, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", + "kind": "BooleanLiteral", + "offset": 827, "length": 4, - "value": "0.64" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUTheme.Deprecated.swift", - "kind": "FloatLiteral", - "offset": 25798, - "length": 3, - "value": "0.5" + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", + "kind": "BooleanLiteral", + "offset": 1037, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", - "kind": "BooleanLiteral", - "offset": 1044, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 351, + "length": 3, + "value": "136" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 1172, + "offset": 399, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 1262, - "length": 1, - "value": "0" + "offset": 446, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 497, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 1448, + "offset": 546, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 20, - "value": "1" + "offset": 660, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 340, - "length": 17, + "offset": 774, + "length": 1, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 367, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", + "kind": "BooleanLiteral", + "offset": 1002, "length": 4, - "value": "3" + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 381, - "length": 5, - "value": "4" + "offset": 1268, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 396, - "length": 17, - "value": "5" + "offset": 1531, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 423, - "length": 13, - "value": "6" + "offset": 1699, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 20, - "value": "1" + "offset": 228, + "length": 3, + "value": "244" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 340, - "length": 17, - "value": "2" + "offset": 284, + "length": 3, + "value": "240" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 367, - "length": 4, - "value": "3" + "offset": 297, + "length": 3, + "value": "160" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 381, - "length": 5, - "value": "4" + "offset": 350, + "length": 3, + "value": "240" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 396, - "length": 17, - "value": "5" + "offset": 363, + "length": 3, + "value": "160" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 423, - "length": 13, - "value": "6" + "offset": 433, + "length": 3, + "value": "156" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 20, - "value": "1" + "offset": 446, + "length": 3, + "value": "104" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 340, - "length": 17, - "value": "2" + "offset": 515, + "length": 3, + "value": "136" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 367, - "length": 4, - "value": "3" + "offset": 528, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 381, - "length": 5, - "value": "4" + "offset": 600, + "length": 3, + "value": "311" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 396, - "length": 17, - "value": "5" + "offset": 613, + "length": 3, + "value": "207" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 423, - "length": 13, - "value": "6" + "offset": 677, + "length": 3, + "value": "311" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 1964, - "length": 8, - "value": "1" + "offset": 690, + "length": 3, + "value": "207" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 1986, - "length": 7, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 750, + "length": 5, + "value": "144.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 2007, - "length": 6, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 765, + "length": 4, + "value": "38.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 2027, - "length": 7, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 823, + "length": 4, + "value": "40.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 1964, - "length": 8, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 837, + "length": 4, + "value": "40.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 1986, - "length": 7, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 897, + "length": 4, + "value": "38.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 2007, - "length": 6, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 911, + "length": 4, + "value": "38.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 2027, - "length": 7, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 977, + "length": 5, + "value": "144.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 1964, - "length": 8, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 992, + "length": 4, + "value": "38.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 1986, - "length": 7, - "value": "2" + "offset": 1052, + "length": 3, + "value": "244" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 2007, - "length": 6, - "value": "3" + "offset": 1120, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 2027, - "length": 7, - "value": "4" + "offset": 1132, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 3109, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1171, + "length": 42, + "value": "\"https:\/\/static.sendbird.com\/sample\/cover\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 3142, - "length": 29, - "value": "\"[Failed] Player preparation\"" + "offset": 1254, + "length": 10, + "value": "\"sb_uikit\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 3640, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1304, + "length": 20, + "value": "\"com.sendbird.uikit\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 3750, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1378, + "length": 44, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 3787, - "length": 29, - "value": "\"[Failed] Player preparation\"" + "offset": 1398, + "length": 1, + "value": "\".delegate.channel.group\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 3934, - "length": 4, - "value": "1000" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1470, + "length": 43, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 3994, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1490, + "length": 1, + "value": "\".delegate.channel.open\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 4201, - "length": 15, - "value": "\"[Failed] Play\"" + "offset": 1561, + "length": 43, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 5074, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1581, "length": 1, - "value": "0" + "value": "\".delegate.channel.feed\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 5741, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1656, + "length": 41, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 5809, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1676, + "length": 1, + "value": "\".delegate.connection\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 5969, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1734, + "length": 15, + "value": "\"SBUAppVersion\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 6503, - "length": 37, - "value": "\"AVAudioSession Category Playback OK\"" + "offset": 1789, + "length": 11, + "value": "\"audio\/m4a\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 6607, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1849, + "length": 16, + "value": "\"sbu_type=voice\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 6658, - "length": 26, - "value": "\"AVAudioSession is Active\"" + "offset": 1907, + "length": 28, + "value": "\"KEY_VOICE_MESSAGE_DURATION\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 7082, - "length": 66, - "value": "\"[Failed] Audio player preparation: \"" + "offset": 1976, + "length": 27, + "value": "\"KEY_INTERNAL_MESSAGE_TYPE\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 7147, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", + "kind": "IntegerLiteral", + "offset": 580, "length": 2, - "value": "\"\"" + "value": "30" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", + "kind": "IntegerLiteral", + "offset": 771, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", "kind": "BooleanLiteral", - "offset": 7361, + "offset": 802, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", "kind": "BooleanLiteral", - "offset": 7419, - "length": 5, - "value": "false" + "offset": 838, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 7464, - "length": 38, - "value": "\"[Succeeded] Audio player preparation\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", + "kind": "BooleanLiteral", + "offset": 1003, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 7551, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", + "kind": "IntegerLiteral", + "offset": 1142, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", "kind": "FloatLiteral", - "offset": 7730, + "offset": 1794, "length": 3, - "value": "0.1" + "value": "0.4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", "kind": "BooleanLiteral", - "offset": 7858, + "offset": 1845, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 8191, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", "kind": "IntegerLiteral", - "offset": 8265, - "length": 1, - "value": "0" + "offset": 2764, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", "kind": "IntegerLiteral", - "offset": 8463, - "length": 1, - "value": "0" + "offset": 570, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 8786, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", + "kind": "Array", + "offset": 735, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 25, - "value": "\"[Failed] Finish playing\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", + "kind": "BooleanLiteral", + "offset": 484, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 9192, - "length": 57, - "value": "\"[Failed] Player decode error: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", + "kind": "IntegerLiteral", + "offset": 800, + "length": 5, + "value": "10001" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 9248, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", + "kind": "Array", + "offset": 1281, "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 1767, - "length": 14, - "value": "\"SendbirdUIKit.SBUVoicePlayer\"" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", "kind": "BooleanLiteral", - "offset": 2217, - "length": 4, - "value": "true" + "offset": 4082, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", - "kind": "BooleanLiteral", - "offset": 2279, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", + "kind": "StringLiteral", + "offset": 465, + "length": 20, + "value": "\"transform.rotation\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", "kind": "IntegerLiteral", - "offset": 2522, + "offset": 516, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", "kind": "IntegerLiteral", - "offset": 2535, + "offset": 545, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", - "kind": "IntegerLiteral", - "offset": 2543, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", + "kind": "FloatLiteral", + "offset": 587, + "length": 3, + "value": "1.1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", - "kind": "IntegerLiteral", - "offset": 2554, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", + "kind": "FloatLiteral", + "offset": 759, + "length": 5, + "value": "100.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", - "kind": "StringLiteral", - "offset": 3432, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", + "kind": "FloatLiteral", + "offset": 796, + "length": 4, + "value": "64.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", - "kind": "Array", - "offset": 5041, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", + "kind": "IntegerLiteral", + "offset": 434, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", "kind": "BooleanLiteral", - "offset": 5726, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", - "kind": "StringLiteral", - "offset": 6078, - "length": 2, - "value": "\"\"" + "offset": 2566, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", "kind": "BooleanLiteral", - "offset": 6911, + "offset": 4750, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", "kind": "BooleanLiteral", - "offset": 7653, + "offset": 6289, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 3124, - "length": 2, - "value": "30" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", + "kind": "Dictionary", + "offset": 432, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 3644, - "length": 2, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", + "kind": "Dictionary", + "offset": 546, + "length": 3, "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 3978, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", + "kind": "Dictionary", + "offset": 667, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4930, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", + "kind": "Dictionary", + "offset": 787, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", "kind": "BooleanLiteral", - "offset": 5438, - "length": 4, - "value": "true" + "offset": 902, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", "kind": "BooleanLiteral", - "offset": 5768, + "offset": 1235, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", "kind": "BooleanLiteral", - "offset": 5816, + "offset": 1602, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", "kind": "BooleanLiteral", - "offset": 5862, + "offset": 2273, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", "kind": "BooleanLiteral", - "offset": 5903, + "offset": 2831, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", "kind": "BooleanLiteral", - "offset": 6087, + "offset": 387, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6261, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6305, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "BooleanLiteral", + "offset": 332, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", "kind": "StringLiteral", - "offset": 6429, - "length": 67, - "value": "\"\"" + "offset": 221, + "length": 11, + "value": "\"SendbirdUIKit.SBUMenuItem\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6475, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "Array", + "offset": 1440, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6495, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1572, + "length": 5, + "value": "180.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6886, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1608, + "length": 4, + "value": "40.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7177, - "length": 65, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1643, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7221, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1677, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7241, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1712, + "length": 4, + "value": "18.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7345, - "length": 67, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1752, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7391, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1801, + "length": 4, + "value": "15.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7411, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1848, + "length": 4, + "value": "36.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", "kind": "BooleanLiteral", - "offset": 8137, + "offset": 1788, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", "kind": "StringLiteral", - "offset": 8305, - "length": 67, - "value": "\"\"" + "offset": 1296, + "length": 32, + "value": "\"SendbirdUIKit.SBUSelectablePhotoViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", "kind": "StringLiteral", - "offset": 8351, - "length": 1, - "value": "\".\"" + "offset": 537, + "length": 31, + "value": "\"SendbirdUIKit.SBUOpenChannelSettingsViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", "kind": "StringLiteral", - "offset": 8371, - "length": 1, - "value": "\"\"" + "offset": 317, + "length": 21, + "value": "\"com.sendbird.atomic\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8457, - "length": 65, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "BooleanLiteral", + "offset": 934, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "BooleanLiteral", + "offset": 1397, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8521, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2212, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9230, - "length": 20, - "value": "\"Invalid ChannelURL\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2235, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9340, - "length": 20, - "value": "\"Invalid ChannelURL\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2212, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10170, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2235, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10297, - "length": 47, - "value": "\"[Request] Load channel: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2212, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10343, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2235, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 2900, "length": 2, - "value": "\"\"" + "value": "30" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10843, - "length": 69, - "value": "\"[Succeed] Load channel request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", + "kind": "Array", + "offset": 3617, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10911, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", + "kind": "Array", + "offset": 3741, "length": 2, - "value": "\"\"" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 11936, - "length": 4, - "value": "true" + "offset": 4925, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 12237, - "length": 4, - "value": "true" + "offset": 4973, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13339, - "length": 62, - "value": "\"[Failed] Load channel request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5019, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13400, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5060, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13791, + "offset": 5245, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13890, - "length": 4, - "value": "true" + "offset": 5286, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13947, + "offset": 27482, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13987, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 402, + "length": 3, + "value": "164" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 14120, + "offset": 458, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 514, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15072, - "length": 122, - "value": "\"loadInitialNotifications,\nstartingPoint : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15178, - "length": 16754, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 625, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15691, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 681, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15840, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 733, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuCell.swift", "kind": "BooleanLiteral", - "offset": 16020, + "offset": 363, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16093, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", + "kind": "IntegerLiteral", + "offset": 812, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16665, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", + "kind": "StringLiteral", + "offset": 221, + "length": 26, + "value": "\"SendbirdUIKit.SBUEmojiListViewController\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 2025, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 16759, + "offset": 2656, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 17013, + "offset": 3618, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 17104, + "offset": 8553, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17361, - "length": 35, - "value": "\"Prev notification already loading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17456, - "length": 34, - "value": "\"[Request] Prev notification list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 17819, + "offset": 8604, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17992, - "length": 67, - "value": "\"[Prev notification response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", "kind": "StringLiteral", - "offset": 18044, - "length": 13, - "value": "\" notifications\"" + "offset": 305, + "length": 40, + "value": "\"SendbirdUIKit.SBUChatNotificationChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18288, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 1806, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 18393, + "offset": 5922, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18582, - "length": 35, - "value": "\"Next notification already loading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 18773, + "offset": 6463, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 19011, + "offset": 6514, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 13044, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 13079, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 19144, + "offset": 15965, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", "kind": "StringLiteral", - "offset": 19293, - "length": 67, - "value": "\"[Next notification Response] \"" + "offset": 275, + "length": 29, + "value": "\"SendbirdUIKit.SBUGroupChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", "kind": "StringLiteral", - "offset": 19345, - "length": 13, - "value": "\" notifications\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19693, - "length": 4, - "value": "true" + "offset": 275, + "length": 29, + "value": "\"SendbirdUIKit.SBUGroupChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", "kind": "BooleanLiteral", - "offset": 19921, + "offset": 1027, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 21417, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 21465, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", "kind": "BooleanLiteral", - "offset": 23263, + "offset": 3774, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23323, - "length": 104, - "value": "\"First : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", "kind": "StringLiteral", - "offset": 23375, - "length": 1, - "value": "\", Last : \"" + "offset": 683, + "length": 6, + "value": "\"file\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", "kind": "StringLiteral", - "offset": 23426, - "length": 2, - "value": "\"\"" + "offset": 372, + "length": 7, + "value": "\"image\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", "kind": "BooleanLiteral", - "offset": 23467, + "offset": 2189, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", "kind": "BooleanLiteral", - "offset": 24406, + "offset": 5741, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 25482, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1288, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 25790, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1450, + "length": 5, + "value": "270.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 25945, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1492, + "length": 3, + "value": "3.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26094, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1535, "length": 4, - "value": "true" + "value": "20.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26154, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1575, "length": 4, - "value": "true" + "value": "32.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 26766, - "length": 26, - "value": "\"Did succeed reconnection\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1615, + "length": 4, + "value": "32.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 26912, - "length": 58, - "value": "\"[Failed] Update user info: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1657, + "length": 4, + "value": "18.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 26969, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1694, + "length": 4, + "value": "44.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27522, - "length": 38, - "value": "\"Did receive user message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1729, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27559, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1769, + "length": 4, + "value": "40.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27615, - "length": 38, - "value": "\"Did receive file message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1804, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27652, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1838, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27709, - "length": 39, - "value": "\"Did receive admin message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1873, + "length": 4, + "value": "18.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27747, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1913, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27993, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1954, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", "kind": "BooleanLiteral", - "offset": 28019, + "offset": 2819, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28642, - "length": 58, - "value": "\"messageCollection addedNotifications : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", "kind": "StringLiteral", - "offset": 28699, + "offset": 2877, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 29035, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 2934, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", "kind": "BooleanLiteral", - "offset": 29126, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 29421, - "length": 60, - "value": "\"messageCollection updatedNotifications : \"" + "offset": 3967, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", "kind": "StringLiteral", - "offset": 29480, + "offset": 4019, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 29685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 29817, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 4070, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 29848, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUDebouncer.swift", + "kind": "FloatLiteral", + "offset": 332, + "length": 3, + "value": "0.3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUDebouncer.swift", "kind": "StringLiteral", - "offset": 30083, - "length": 60, - "value": "\"messageCollection deletedNotifications : \"" + "offset": 205, + "length": 12, + "value": "\"SendbirdUIKit.SBUDebouncer\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30142, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1140, "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 30346, - "length": 4, - "value": "true" + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30538, - "length": 34, - "value": "\"messageCollection changedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", + "kind": "Array", + "offset": 1411, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30914, - "length": 34, - "value": "\"messageCollection deletedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", + "kind": "Array", + "offset": 1487, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 31195, - "length": 36, - "value": "\"messageCollection didDetectHugeGap\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", + "kind": "Array", + "offset": 1798, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 31570, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", + "kind": "BooleanLiteral", + "offset": 2266, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 31649, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", + "kind": "BooleanLiteral", + "offset": 2312, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 31659, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", + "kind": "StringLiteral", + "offset": 1047, + "length": 26, + "value": "\"SendbirdUIKit.SBUBaseSelectUserViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", "kind": "BooleanLiteral", - "offset": 31921, + "offset": 590, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4116, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4129, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", + "kind": "BooleanLiteral", + "offset": 1360, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4212, - "length": 2, - "value": "-4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", + "kind": "BooleanLiteral", + "offset": 1954, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", "kind": "IntegerLiteral", - "offset": 4226, + "offset": 459, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.OpenChannel.swift", "kind": "BooleanLiteral", - "offset": 4285, + "offset": 1349, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4445, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", + "kind": "Array", + "offset": 721, "length": 2, - "value": "20" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", "kind": "BooleanLiteral", - "offset": 4512, + "offset": 767, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", + "kind": "BooleanLiteral", + "offset": 947, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", "kind": "StringLiteral", - "offset": 4597, - "length": 13, - "value": "\"searchField\"" + "offset": 340, + "length": 23, + "value": "\"SendbirdUIKit.SBUSuggestedMentionList\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4752, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", + "kind": "StringLiteral", + "offset": 429, "length": 2, - "value": "20" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "BooleanLiteral", - "offset": 4806, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUMessageCache.swift", + "kind": "IntegerLiteral", + "offset": 257, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "StringLiteral", - "offset": 5657, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUMessageCache.swift", + "kind": "Array", + "offset": 370, "length": 2, - "value": "\"\"" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "StringLiteral", - "offset": 9133, - "length": 13, - "value": "\"searchField\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUMessageCache.swift", + "kind": "IntegerLiteral", + "offset": 466, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "StringLiteral", - "offset": 10085, - "length": 14, - "value": "\"cancelButton\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", + "kind": "BooleanLiteral", + "offset": 1721, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 10157, + "offset": 1928, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 652, - "length": 5, - "value": "false" + "offset": 2403, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 771, + "offset": 2573, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 1887, + "offset": 2705, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 1910, + "offset": 4961, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", - "kind": "IntegerLiteral", - "offset": 3127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", - "kind": "StringLiteral", - "offset": 3462, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", + "kind": "BooleanLiteral", + "offset": 5183, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", - "kind": "StringLiteral", - "offset": 3528, - "length": 30, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", + "kind": "BooleanLiteral", + "offset": 6214, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 3539, - "length": 1, - "value": "\"\"" + "offset": 244, + "length": 5541, + "value": "\"{\n \"version\": \"1\",\n \"body\": {\n \"items\": [\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"items\": [\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"items\": [\n {\n \"type\": \"image\",\n \"imageUrl\": \"https:\/\/dxstmhyqfqr1o.cloudfront.net\/notifications\/preset-notification-channel-cover.png\",\n \"imageStyle\": {\n \"contentMode\": \"aspectFill\"\n },\n \"viewStyle\": {},\n \"metaData\": {\n \"pixelWidth\": \"168\",\n \"pixelHeight\": \"168\"\n }\n },\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"viewStyle\": {\n \"radius\": \"8\",\n \"padding\": {\n \"top\": \"12\",\n \"bottom\": \"12\",\n \"left\": \"12\",\n \"right\": \"12\"\n }\n },\n \"items\": [\n {\n \"type\": \"text\",\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n },\n \"viewStyle\": {},\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"text\": \"Hello tez\",\n \"textStyle\": {\n \"color\": \"#ffbdb8bd\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"1\"\n },\n {\n \"type\": \"text\",\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n },\n \"viewStyle\": {},\n \"width\": {\n \"type\": \"fixed\",\n \"value\": \"1\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"text\": \"Your order #123123 has been shipped.\",\n \"textStyle\": {\n \"color\": \"#ffbdb8bd\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"1\"\n },\n {\n \"type\": \"textButton\",\n \"viewStyle\": {\n \"backgroundColor\": \"#E0E0E0\",\n \"padding\": {\n \"top\": \"10\",\n \"bottom\": \"10\",\n \"left\": \"20\",\n \"right\": \"20\"\n }\n },\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"text\": \"Check status\",\n \"textStyle\": {\n \"color\": \"#742DDD\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"5\",\n \"action\": {\n \"type\": \"web\",\n \"data\": \"https:\/\/naver.com\"\n }\n }\n ],\n \"height\": {\n \"type\": \"fixed\",\n \"value\": \"300\"\n },\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n }\n }\n ],\n \"viewStyle\": {}\n }\n ],\n \"viewStyle\": {}\n }\n ]\n }\n }\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 3557, - "length": 1, - "value": "\"\"" + "offset": 9951, + "length": 19, + "value": "\"TEMPLATE_DOWNLOAD\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 3652, - "length": 61, - "value": "\"UserId:%@, Nickname:%@, ProfileURL:%@, Operator:%d Muted:%d\"" + "offset": 12150, + "length": 3, + "value": "\"SendbirdUIKit.Box\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 3769, - "length": 2, - "value": "\"\"" + "offset": 13570, + "length": 4, + "value": "\"SendbirdUIKit.Text\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 3804, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", - "kind": "Array", - "offset": 4168, - "length": 2, - "value": "[]" + "offset": 15328, + "length": 5, + "value": "\"SendbirdUIKit.Image\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 193, - "length": 7, - "value": "\"SendbirdUIKit.SBUUser\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", - "kind": "BooleanLiteral", - "offset": 672, - "length": 4, - "value": "true" + "offset": 16776, + "length": 10, + "value": "\"SendbirdUIKit.TextButton\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 1129, - "length": 54, - "value": "\"(Message template error)\nCan’t read this message.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", - "kind": "FloatLiteral", - "offset": 1389, - "length": 4, - "value": "16.0" + "offset": 17749, + "length": 11, + "value": "\"SendbirdUIKit.ImageButton\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", - "kind": "BooleanLiteral", - "offset": 1433, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", + "kind": "IntegerLiteral", + "offset": 25359, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 1921, - "length": 2, - "value": "20" + "offset": 29516, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2009, - "length": 3, - "value": "-20" + "offset": 29545, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2098, + "offset": 29516, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2110, + "offset": 29545, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2245, + "offset": 29516, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2258, + "offset": 29545, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2266, + "offset": 31661, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2277, + "offset": 32619, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 3145, - "length": 2, - "value": "30" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", + "kind": "Dictionary", + "offset": 4336, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 3673, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", + "kind": "BooleanLiteral", + "offset": 31846, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4007, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", + "kind": "FloatLiteral", + "offset": 418, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 4959, - "length": 5, - "value": "false" + "offset": 682, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 5467, + "offset": 732, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 5802, - "length": 5, - "value": "false" + "offset": 899, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 5850, - "length": 5, - "value": "false" + "offset": 1381, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 5896, - "length": 5, - "value": "false" + "offset": 1567, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 5937, + "offset": 1614, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 6121, - "length": 5, - "value": "false" + "offset": 1758, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 6524, + "offset": 2357, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6815, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6859, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6879, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6983, - "length": 66, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", + "kind": "BooleanLiteral", + "offset": 2391, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7028, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", + "kind": "IntegerLiteral", + "offset": 2545, + "length": 2, + "value": "40" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7048, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", + "kind": "BooleanLiteral", + "offset": 8070, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 7783, + "offset": 8122, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7951, - "length": 66, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUnknownMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 519, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7996, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/QuickReply\/Views\/SBUQuickReplyView.swift", + "kind": "IntegerLiteral", + "offset": 962, "length": 1, - "value": "\".\"" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8016, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/QuickReply\/Views\/SBUQuickReplyView.swift", + "kind": "IntegerLiteral", + "offset": 1160, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8102, - "length": 65, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 558, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8146, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 879, "length": 1, - "value": "\".\"" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8166, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 1103, "length": 1, - "value": "\"\"" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8856, - "length": 20, - "value": "\"Invalid ChannelURL\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 1497, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8966, - "length": 20, - "value": "\"Invalid ChannelURL\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 1596, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 9796, + "offset": 1631, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 10405, + "offset": 1792, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10591, - "length": 69, - "value": "\"[Succeed] Load channel request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 2249, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10659, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 2288, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 6286, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1715, "length": 2, - "value": "\"\"" + "value": "20" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", + "kind": "Array", + "offset": 2111, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", "kind": "BooleanLiteral", - "offset": 11465, - "length": 4, - "value": "true" + "offset": 2721, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", "kind": "BooleanLiteral", - "offset": 11910, - "length": 4, - "value": "true" + "offset": 2767, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", "kind": "StringLiteral", - "offset": 12823, - "length": 62, - "value": "\"[Failed] Load channel request: \"" + "offset": 1628, + "length": 20, + "value": "\"SendbirdUIKit.SBUUserListViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12884, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", + "kind": "IntegerLiteral", + "offset": 1237, "length": 2, - "value": "\"\"" + "value": "56" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13333, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", + "kind": "IntegerLiteral", + "offset": 1333, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", + "kind": "IntegerLiteral", + "offset": 1522, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13489, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", + "kind": "IntegerLiteral", + "offset": 1733, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13529, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", + "kind": "IntegerLiteral", + "offset": 1942, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", "kind": "IntegerLiteral", - "offset": 13662, + "offset": 2152, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14329, - "length": 122, - "value": "\"loadInitialNotifications,\nstartingPoint : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", + "kind": "IntegerLiteral", + "offset": 930, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 15760, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", + "kind": "IntegerLiteral", + "offset": 1129, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14950, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", + "kind": "IntegerLiteral", + "offset": 1371, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15083, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", + "kind": "IntegerLiteral", + "offset": 2418, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15261, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", + "kind": "IntegerLiteral", + "offset": 2460, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15334, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", + "kind": "StringLiteral", + "offset": 484, + "length": 25, + "value": "\"SendbirdUIKit.SBUMessageThreadTitleView\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 2017, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 15906, + "offset": 2647, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 16000, + "offset": 3238, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 16254, + "offset": 3793, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 16345, - "length": 4, - "value": "true" + "offset": 8863, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", "kind": "StringLiteral", - "offset": 16611, - "length": 35, - "value": "\"Prev notification already loading\"" + "offset": 246, + "length": 40, + "value": "\"SendbirdUIKit.SBUFeedNotificationChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16706, - "length": 34, - "value": "\"[Request] Prev notification list\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", + "kind": "BooleanLiteral", + "offset": 8485, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 17069, + "offset": 23173, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17242, - "length": 67, - "value": "\"[Prev notification response] \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", + "kind": "Array", + "offset": 665, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17294, - "length": 13, - "value": "\" notifications\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", + "kind": "Array", + "offset": 854, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17538, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", + "kind": "Array", + "offset": 1042, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", + "kind": "Array", + "offset": 1237, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 622, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", "kind": "BooleanLiteral", - "offset": 17643, + "offset": 1067, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17832, - "length": 35, - "value": "\"Next notification already loading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", "kind": "BooleanLiteral", - "offset": 18023, + "offset": 1752, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", + "kind": "StringLiteral", + "offset": 1160, + "length": 28, + "value": "\"SendbirdUIKit.SBUCreateChannelTypeSelector\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", "kind": "BooleanLiteral", - "offset": 18261, + "offset": 41824, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", "kind": "BooleanLiteral", - "offset": 18394, + "offset": 41870, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 67, - "value": "\"[Next notification Response] \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18595, - "length": 13, - "value": "\" notifications\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 321, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18710, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 341, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18938, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 306, "length": 5, - "value": "false" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 20434, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 321, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21496, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 341, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21556, - "length": 104, - "value": "\"First : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21608, - "length": 1, - "value": "\", Last : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 321, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21659, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 341, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21703, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 577, + "length": 13, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22645, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 600, + "length": 7, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 23724, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 617, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 24032, - "length": 1, - "value": "0" + "offset": 633, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 24187, - "length": 1, - "value": "0" + "offset": 577, + "length": 13, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24336, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 600, + "length": 7, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24396, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 617, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3040, - "length": 35, - "value": "\"SendbirdUIKit.SBUFeedNotificationChannelViewModel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 633, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24959, - "length": 26, - "value": "\"Did succeed reconnection\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 577, + "length": 13, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25105, - "length": 58, - "value": "\"[Failed] Update user info: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 600, + "length": 7, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25162, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 617, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25714, - "length": 43, - "value": "\"Did receive user notification: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 633, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25756, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 1677, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25812, - "length": 43, - "value": "\"Did receive file notification: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 1677, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25854, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 1677, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25911, - "length": 44, - "value": "\"Did receive admin notification: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2079, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25954, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2101, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26200, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2122, + "length": 13, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26226, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2145, + "length": 17, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 26868, - "length": 58, - "value": "\"notificationCollection addedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2241, + "length": 13, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 26925, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2079, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27261, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2101, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27352, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2122, + "length": 13, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27661, - "length": 65, - "value": "\"notificationCollection updatedNotifications : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2145, + "length": 17, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27725, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2079, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27930, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2101, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 28076, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2122, + "length": 13, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 28107, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2145, + "length": 17, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28356, - "length": 65, - "value": "\"notificationCollection deletedNotifications : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2241, + "length": 13, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28420, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4024, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 28624, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28827, - "length": 39, - "value": "\"notificationCollection deletedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4060, + "length": 5, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 29453, - "length": 41, - "value": "\"notificationCollection didDetectHugeGap\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4075, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 29833, - "length": 1, - "value": "0" + "offset": 4091, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 29912, - "length": 1, - "value": "2" + "offset": 4178, + "length": 14, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 29922, - "length": 1, - "value": "0" + "offset": 4260, + "length": 12, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 30184, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4341, + "length": 13, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "Dictionary", - "offset": 816, - "length": 3, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4024, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "StringLiteral", - "offset": 1189, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1392, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4060, "length": 5, - "value": "false" + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "StringLiteral", - "offset": 1494, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4075, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1750, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4091, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "StringLiteral", - "offset": 1852, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4024, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1991, - "length": 1, - "value": "0" + "offset": 4041, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "StringLiteral", - "offset": 4585, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4060, + "length": 5, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 4731, - "length": 1, - "value": "0" + "offset": 4075, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 5065, - "length": 1, - "value": "0" + "offset": 4091, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "Array", - "offset": 5137, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4178, + "length": 14, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "StringLiteral", - "offset": 7136, - "length": 3, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4260, + "length": 12, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 55038, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4341, + "length": 13, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 55718, - "length": 4, - "value": "0.64" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4530, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 61277, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4545, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 61953, - "length": 4, - "value": "0.64" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4530, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 67438, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4545, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 68114, - "length": 4, - "value": "0.64" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4530, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 73884, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4545, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 74649, - "length": 4, - "value": "0.64" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4770, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 85843, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4770, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 96072, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4770, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 97170, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4901, + "length": 10, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 98230, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4921, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 118464, - "length": 4, - "value": "0.12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4941, + "length": 15, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 123491, - "length": 4, - "value": "0.36" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4966, + "length": 9, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 128501, - "length": 4, - "value": "0.36" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4985, + "length": 14, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 133531, - "length": 4, - "value": "0.12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5009, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 173728, - "length": 2, - "value": "18" + "offset": 5038, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 174448, - "length": 2, - "value": "18" + "offset": 5061, + "length": 15, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 176138, - "length": 2, - "value": "14" + "offset": 5086, + "length": 5, + "value": "9" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 176373, - "length": 2, - "value": "12" + "offset": 5172, + "length": 15, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 177154, - "length": 2, - "value": "14" + "offset": 4901, + "length": 10, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 177668, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 178703, - "length": 11, - "value": "\"#e0000000\"" + "offset": 4921, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 178765, - "length": 11, - "value": "\"#70000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4941, + "length": 15, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 178825, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4966, + "length": 9, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 179366, - "length": 11, - "value": "\"#e0ffffff\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4985, + "length": 14, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 179428, - "length": 11, - "value": "\"#70ffffff\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5009, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 179488, - "length": 11, - "value": "\"#e0ffffff\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5038, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 179603, - "length": 1, + "offset": 5061, + "length": 15, "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 179782, - "length": 2, - "value": "12" + "offset": 5086, + "length": 5, + "value": "9" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 179947, - "length": 2, - "value": "14" + "offset": 4901, + "length": 10, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 180183, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4921, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 180250, - "length": 11, - "value": "\"#70000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4941, + "length": 15, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 180315, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4966, + "length": 9, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 181135, - "length": 1, - "value": "8" + "offset": 4985, + "length": 14, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 181329, - "length": 2, - "value": "12" + "offset": 5009, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 181696, - "length": 2, - "value": "14" + "offset": 5038, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 182201, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5061, + "length": 15, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 182267, - "length": 11, - "value": "\"#70000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5086, + "length": 5, + "value": "9" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 182340, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5172, + "length": 15, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 364, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5452, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 574, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5469, + "length": 8, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1005, - "length": 2, - "value": "12" + "offset": 5487, + "length": 7, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1096, - "length": 1, - "value": "1" + "offset": 5504, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1127, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5452, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1356, - "length": 1, - "value": "0" + "offset": 5469, + "length": 8, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1378, - "length": 1, - "value": "0" + "offset": 5487, + "length": 7, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1398, - "length": 1, - "value": "0" + "offset": 5504, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1421, - "length": 1, - "value": "0" + "offset": 5646, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1595, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5646, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1610, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5783, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1650, - "length": 2, - "value": "48" + "offset": 5798, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1662, - "length": 2, - "value": "48" + "offset": 5783, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "StringLiteral", - "offset": 2796, - "length": 11, - "value": "\"image\/gif\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5798, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "StringLiteral", - "offset": 3454, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5959, + "length": 3, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 4854, - "length": 1, + "offset": 5972, + "length": 6, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "StringLiteral", - "offset": 4905, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 5283, - "length": 1, - "value": "2" + "offset": 5988, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 343, - "length": 4, + "offset": 5959, + "length": 3, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 349, - "length": 5, + "offset": 5972, + "length": 6, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 356, - "length": 3, + "offset": 5988, + "length": 6, "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 343, - "length": 4, + "offset": 6234, + "length": 5, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 349, + "offset": 6249, "length": 5, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 356, - "length": 3, + "offset": 6264, + "length": 5, "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 343, - "length": 4, + "offset": 6279, + "length": 3, + "value": "4" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6292, + "length": 3, + "value": "5" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6234, + "length": 5, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 349, + "offset": 6249, "length": 5, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 356, - "length": 3, + "offset": 6264, + "length": 5, "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 609, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6279, "length": 3, - "value": "8.0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 3635, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6292, "length": 3, - "value": "2.0" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 3805, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6485, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 3896, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6532, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 3985, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6576, + "length": 7, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4076, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6655, + "length": 11, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4188, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6743, + "length": 15, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4303, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6485, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4465, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6532, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4555, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6576, + "length": 7, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4643, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7038, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4735, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7052, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4847, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7038, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4962, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7052, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6250, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7547, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6315, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7547, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6380, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7611, + "length": 10, + "value": "0b00000000" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6445, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7641, + "length": 10, + "value": "0b00000001" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6572, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7671, + "length": 10, + "value": "0b00000010" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6700, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7701, + "length": 10, + "value": "0b00000100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 702, - "length": 2, - "value": "12" + "offset": 7731, + "length": 10, + "value": "0b00000111" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 753, - "length": 1, - "value": "7" + "offset": 7611, + "length": 10, + "value": "0b00000000" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 872, - "length": 2, - "value": "16" + "offset": 7641, + "length": 10, + "value": "0b00000001" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 918, - "length": 2, - "value": "10" + "offset": 7671, + "length": 10, + "value": "0b00000010" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 968, - "length": 2, - "value": "16" + "offset": 7701, + "length": 10, + "value": "0b00000100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1017, - "length": 1, + "offset": 7731, + "length": 10, + "value": "0b00000111" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7866, + "length": 4, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "StringLiteral", - "offset": 1076, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7880, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 1317, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7866, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 1373, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7880, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 1414, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7866, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 1450, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7880, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "BooleanLiteral", - "offset": 1488, + "offset": 1452, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "IntegerLiteral", - "offset": 1606, + "offset": 2129, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", + "kind": "IntegerLiteral", + "offset": 2369, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", + "kind": "IntegerLiteral", + "offset": 2618, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "BooleanLiteral", - "offset": 1831, - "length": 5, - "value": "false" + "offset": 4079, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "BooleanLiteral", - "offset": 2097, + "offset": 4341, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "BooleanLiteral", - "offset": 2601, + "offset": 4418, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "BooleanLiteral", - "offset": 2955, + "offset": 13631, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 3137, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 3633, + "offset": 657, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "IntegerLiteral", - "offset": 3786, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", "kind": "IntegerLiteral", - "offset": 4004, + "offset": 508, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", "kind": "IntegerLiteral", - "offset": 4201, + "offset": 517, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", "kind": "IntegerLiteral", - "offset": 4433, + "offset": 528, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", "kind": "IntegerLiteral", - "offset": 5017, + "offset": 538, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", "kind": "IntegerLiteral", - "offset": 5250, + "offset": 872, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 7563, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 7889, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "StringLiteral", + "offset": 1616, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", "kind": "StringLiteral", - "offset": 4628, + "offset": 1738, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", "kind": "StringLiteral", - "offset": 240, - "length": 13, - "value": "\"E, MMM yyyy\"" + "offset": 2098, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 14, - "value": "\"MMM dd, yyyy\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 3001, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 334, - "length": 11, - "value": "\"E, MMM dd\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 3323, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 376, - "length": 8, - "value": "\"MMM dd\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "BooleanLiteral", + "offset": 3364, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 9, - "value": "\"hh:mm a\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 3959, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 7, - "value": "\"hh:mm\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 4359, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 495, - "length": 12, - "value": "\"yyyy\/MM\/dd\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 4869, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 545, - "length": 14, - "value": "\"yyyyMMddhhmm\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 5150, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 599, - "length": 16, - "value": "\"yyyyMMddhhmmss\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 5249, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 651, - "length": 16, - "value": "\"MMM dd hh:mm a\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "BooleanLiteral", + "offset": 5284, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 707, - "length": 22, - "value": "\"MMM dd, yyyy hh:mm a\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", + "kind": "BooleanLiteral", + "offset": 6548, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 1197, + "offset": 396, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 1245, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 436, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 1284, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 473, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 1752, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 637, "length": 2, - "value": "\"\"" + "value": "50" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 2030, + "offset": 1310, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 2040, + "offset": 1929, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 2048, - "length": 1, - "value": "0" + "offset": 2584, + "length": 2, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 2059, + "offset": 3238, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 6374, + "offset": 3920, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 6702, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "FloatLiteral", - "offset": 6804, - "length": 4, - "value": "0.75" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 8805, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 4159, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 9486, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 4258, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 10071, + "offset": 4293, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 10405, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 13359, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 11061, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", + "kind": "IntegerLiteral", + "offset": 514, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", "kind": "BooleanLiteral", - "offset": 11552, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 12008, - "length": 37, - "value": "\"Did receive error: \"" + "offset": 548, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 12041, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", + "kind": "IntegerLiteral", + "offset": 693, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", "kind": "StringLiteral", - "offset": 12044, - "length": 2, - "value": "\"\"" + "offset": 331, + "length": 16, + "value": "\"SendbirdUIKit.SBUVoiceFileInfo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 13034, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1607, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13901, + "offset": 2147, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "Dictionary", - "offset": 14190, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 15425, + "offset": 2199, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 16134, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 2318, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 16677, + "offset": 2463, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", - "kind": "IntegerLiteral", - "offset": 889, - "length": 4, - "value": "1000" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", + "kind": "StringLiteral", + "offset": 1489, + "length": 23, + "value": "\"SendbirdUIKit.SBUOpenChannelViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 939, - "length": 6, - "value": "600000" + "offset": 292, + "length": 13, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 1076, - "length": 5, - "value": "11025" + "offset": 315, + "length": 14, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 1118, - "length": 1, - "value": "1" + "offset": 339, + "length": 10, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 1222, - "length": 5, - "value": "12000" + "offset": 359, + "length": 8, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 527, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 292, + "length": 13, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 3323, - "length": 1, - "value": "0" + "offset": 315, + "length": 14, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 3441, - "length": 1, - "value": "0" + "offset": 339, + "length": 10, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 3543, - "length": 1, - "value": "0" + "offset": 359, + "length": 8, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 3701, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 3864, - "length": 69, - "value": "\"[Failed] SendbirdChat initialize failed.: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 525, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 3932, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 544, + "length": 5, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 4435, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 559, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 5749, - "length": 72, - "value": "\"[Check] Connection status : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 575, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 5820, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 662, + "length": 14, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 5992, - "length": 75, - "value": "\"currentUser: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 744, + "length": 12, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 6066, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 825, + "length": 13, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 34, - "value": "\"[Request] Connection to Sendbird\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 6903, - "length": 63, - "value": "\"[Failed] Connection to Sendbird: CurrentUser value is not set\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 525, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 7544, - "length": 71, - "value": "\"[Failed] Connection to Sendbird: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 544, + "length": 5, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 7611, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 559, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 7614, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 575, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 7779, - "length": 97, - "value": "\"[Warning] Connection to Sendbird: Succeed but error was occurred: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", + "kind": "BooleanLiteral", + "offset": 426, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", "kind": "StringLiteral", - "offset": 7875, + "offset": 562, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 8097, - "length": 34, - "value": "\"[Succeed] Connection to Sendbird\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 8860, - "length": 58, - "value": "\"[Request] Register pending push token to Sendbird server\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 9087, - "length": 57, - "value": "\"[Failed] Register pending push token to Sendbird server\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 9208, - "length": 58, - "value": "\"[Succeed] Register pending push token to Sendbird server\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", + "kind": "IntegerLiteral", + "offset": 602, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", "kind": "BooleanLiteral", - "offset": 9812, + "offset": 629, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 9977, - "length": 52, - "value": "\"[Failed] Load global notification channel settings\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 10339, - "length": 29, - "value": "\"[Failed] Load template list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 10613, - "length": 63, - "value": "\"[Failed] Connection to Sendbird: CurrentUser value is not set\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 10829, - "length": 33, - "value": "\"[Failed] Connection to Sendbird\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 11705, - "length": 58, - "value": "\"[Request] Register pending push token to Sendbird server\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 57, - "value": "\"[Failed] Register pending push token to Sendbird server\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 12033, - "length": 58, - "value": "\"[Succeed] Register pending push token to Sendbird server\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 12418, - "length": 37, - "value": "\"[Request] Disconnection to Sendbird\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 12543, - "length": 37, - "value": "\"[Succeed] Disconnection to Sendbird\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 14757, - "length": 28, - "value": "\"[Request] Update user info\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", + "kind": "BooleanLiteral", + "offset": 2852, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", "kind": "StringLiteral", - "offset": 15575, - "length": 58, - "value": "\"[Failed] Update user info: \"" + "offset": 285, + "length": 31, + "value": "\"LOCAL_CACHING_EMOJI_CONTAINER\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 15632, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", + "kind": "Array", + "offset": 2356, "length": 2, - "value": "\"\"" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 15821, - "length": 124, - "value": "\"[Succeed]\nUpdate user info: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 1357, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 15925, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "Array", + "offset": 1759, "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 15929, - "length": 2296, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 16608, - "length": 10, - "value": "\"\"" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 16617, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "Array", + "offset": 1892, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 16740, - "length": 28, - "value": "\"CFBundleShortVersionString\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "Array", + "offset": 2122, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 16795, - "length": 10, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "Array", + "offset": 2297, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 16804, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 2361, + "length": 2, + "value": "56" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 16854, - "length": 7, - "value": "\"0.0.0\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 2404, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 17580, + "offset": 2846, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 17678, - "length": 50, - "value": "\"[Request] Register push token to Sendbird server\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 17957, - "length": 42, - "value": "\"[Succeed] APNs push token is registered.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 18035, + "offset": 2962, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 18096, - "length": 42, - "value": "\"[Response] Push registration is pending.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 18174, + "offset": 3407, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 18235, - "length": 149, - "value": "\"[Failed]\nAPNs registration failed with error: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "FloatLiteral", + "offset": 3632, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 18360, - "length": 1135, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "FloatLiteral", + "offset": 3859, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 18420, + "offset": 4093, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 18486, - "length": 45, - "value": "\"[Failed] Push registration: unknown default\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 4350, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 18567, - "length": 5, - "value": "false" + "offset": 7285, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 19033, - "length": 5, - "value": "false" + "offset": 27372, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 19245, - "length": 5, - "value": "false" + "offset": 29995, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", "kind": "StringLiteral", - "offset": 19313, - "length": 52, - "value": "\"[Request] Unregister push token to Sendbird server\"" + "offset": 239, + "length": 28, + "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", "kind": "StringLiteral", - "offset": 19513, - "length": 147, - "value": "\"[Failed]\nPush unregistration is fail: \"" + "offset": 239, + "length": 28, + "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", "kind": "StringLiteral", - "offset": 19632, - "length": 12452, - "value": "\"\"" + "offset": 239, + "length": 28, + "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 19700, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1622, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 19797, - "length": 43, - "value": "\"[Succeed] Push unregistration is success.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", + "kind": "Array", + "offset": 1934, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", + "kind": "Array", + "offset": 2009, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 19876, - "length": 4, - "value": "true" + "offset": 2218, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 20368, + "offset": 2264, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 20449, - "length": 56, - "value": "\"[Request] Unregister all push token to Sendbird server\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", + "kind": "IntegerLiteral", + "offset": 258, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 20651, - "length": 69, - "value": "\"[Failed] Push unregistration is fail: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", + "kind": "BooleanLiteral", + "offset": 487, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", "kind": "StringLiteral", - "offset": 20719, + "offset": 600, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 20760, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 1338, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 20857, - "length": 43, - "value": "\"[Succeed] Push unregistration is success.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 1588, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 20936, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "FloatLiteral", + "offset": 2111, + "length": 3, + "value": "4.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", "kind": "BooleanLiteral", - "offset": 21209, - "length": 4, - "value": "true" + "offset": 3129, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 22530, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 3327, + "length": 2, + "value": "80" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 23722, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 3364, + "length": 2, + "value": "48" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 23810, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 3408, + "length": 2, + "value": "64" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 25608, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 3420, + "length": 2, + "value": "68" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", "kind": "BooleanLiteral", - "offset": 25889, + "offset": 1883, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 27018, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 27540, + "offset": 748, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 27967, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 1129, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 29393, + "offset": 1289, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 30006, + "offset": 3514, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 32106, - "length": 98, - "value": "\"[Request] Create channel with users,\nUser: \"" + "offset": 363, + "length": 25, + "value": "\"com.sendbird.cache.file\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 32187, - "length": 1, - "value": "\")\"" + "offset": 488, + "length": 10, + "value": "\"template\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 32285, - "length": 2, - "value": "\"\"" + "offset": 532, + "length": 14, + "value": "\"user-profile\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 32314, - "length": 2, - "value": "\"\"" + "offset": 577, + "length": 10, + "value": "\"reaction\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 32380, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", + "kind": "StringLiteral", + "offset": 613, "length": 5, - "value": "false" + "value": "\"web\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 33316, - "length": 138, - "value": "\"[Failed] Create channel request:\n\"" + "offset": 1203, + "length": 49, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 33430, - "length": 1174, - "value": "\"\"" + "offset": 1235, + "length": 1, + "value": "\".queue.diskcache\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 33574, - "length": 59, - "value": "\"[Failed] Create channel request: There is no channel url.\"" + "offset": 7253, + "length": 51, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 33696, - "length": 57, - "value": "\"[Succeed] Create channel: \"" + "offset": 7285, + "length": 1, + "value": "\".queue.memorycache\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 33749, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", + "kind": "IntegerLiteral", + "offset": 7517, "length": 2, - "value": "\"\"" + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 33752, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", + "kind": "IntegerLiteral", + "offset": 7522, + "length": 4, + "value": "1024" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "IntegerLiteral", - "offset": 34572, - "length": 1, - "value": "0" + "offset": 7529, + "length": 4, + "value": "1024" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "IntegerLiteral", - "offset": 1674, + "offset": 7637, "length": 2, - "value": "16" + "value": "30" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", "kind": "IntegerLiteral", - "offset": 1900, - "length": 1, - "value": "0" + "offset": 1559, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", "kind": "IntegerLiteral", - "offset": 1922, - "length": 1, - "value": "0" + "offset": 1614, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", + "kind": "StringLiteral", + "offset": 1434, + "length": 28, + "value": "\"SendbirdUIKit.SBUGroupChannelListViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", "kind": "BooleanLiteral", - "offset": 3054, + "offset": 9036, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "80.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", + "kind": "BooleanLiteral", + "offset": 839, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "IntegerLiteral", - "offset": 3175, - "length": 2, - "value": "46" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", + "kind": "BooleanLiteral", + "offset": 890, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", "kind": "IntegerLiteral", - "offset": 3187, - "length": 2, - "value": "46" + "offset": 915, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 4230, + "offset": 947, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "IntegerLiteral", - "offset": 4683, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "IntegerLiteral", - "offset": 4697, - "length": 3, - "value": "-16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", + "kind": "StringLiteral", + "offset": 200, + "length": 24, + "value": "\"SendbirdUIKit.SBUUserMessageCellParams\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", "kind": "IntegerLiteral", - "offset": 4707, - "length": 2, - "value": "16" + "offset": 479, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", "kind": "IntegerLiteral", - "offset": 4947, + "offset": 691, "length": 1, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", "kind": "IntegerLiteral", - "offset": 5800, + "offset": 907, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "BooleanLiteral", - "offset": 6477, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", + "kind": "IntegerLiteral", + "offset": 1185, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", "kind": "BooleanLiteral", - "offset": 6647, + "offset": 1227, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "StringLiteral", - "offset": 7274, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", + "kind": "IntegerLiteral", + "offset": 1447, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "BooleanLiteral", - "offset": 7512, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", + "kind": "IntegerLiteral", + "offset": 1831, + "length": 2, + "value": "56" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "Array", - "offset": 1365, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", + "kind": "IntegerLiteral", + "offset": 1888, "length": 2, - "value": "[]" + "value": "26" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", "kind": "StringLiteral", - "offset": 2948, + "offset": 712, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 826, "length": 2, - "value": "\"\"" + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 3680, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 961, "length": 2, - "value": "\"\"" + "value": "15" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", "kind": "BooleanLiteral", - "offset": 5229, - "length": 4, - "value": "true" + "offset": 1290, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 5960, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", + "kind": "IntegerLiteral", + "offset": 1049, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", "kind": "BooleanLiteral", - "offset": 6370, - "length": 4, - "value": "true" + "offset": 1138, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", "kind": "StringLiteral", - "offset": 6649, - "length": 37, - "value": "\"Did receive error: \"" + "offset": 1237, + "length": 20, + "value": "\"transform.rotation\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 6682, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", + "kind": "IntegerLiteral", + "offset": 1288, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 6685, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", + "kind": "IntegerLiteral", + "offset": 1317, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8440, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", + "kind": "FloatLiteral", + "offset": 1359, + "length": 3, + "value": "1.1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 8766, + "offset": 1259, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 9434, + "offset": 1936, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 9489, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 10105, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", "kind": "IntegerLiteral", - "offset": 713, + "offset": 2331, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 719, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 2577, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 729, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 4001, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "FloatLiteral", - "offset": 740, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 10335, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "Array", - "offset": 930, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 11337, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "Array", - "offset": 968, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 15522, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "Array", - "offset": 1755, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 15549, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 2084, + "offset": 20668, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 2123, + "offset": 7319, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 2282, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "IntegerLiteral", + "offset": 7348, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 2329, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "IntegerLiteral", + "offset": 7565, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2587, - "length": 2, - "value": "56" + "offset": 7575, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2670, + "offset": 7586, "length": 2, - "value": "16" + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2680, + "offset": 7597, "length": 2, - "value": "19" + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2692, + "offset": 7632, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2702, + "offset": 7666, "length": 2, - "value": "19" + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2797, - "length": 2, - "value": "16" + "offset": 7841, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 3129, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "IntegerLiteral", + "offset": 8187, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 3196, - "length": 5, - "value": "false" + "offset": 8472, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3747, + "offset": 8502, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3757, + "offset": 8716, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3765, + "offset": 9018, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3776, + "offset": 9786, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3844, - "length": 1, - "value": "0" + "offset": 10478, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3912, - "length": 1, - "value": "0" + "offset": 10575, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "FloatLiteral", - "offset": 3937, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "IntegerLiteral", + "offset": 10668, + "length": 2, + "value": "38" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3993, + "offset": 10756, "length": 2, - "value": "60" + "value": "87" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 4037, - "length": 4, - "value": "true" + "offset": 10866, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 4162, - "length": 1, - "value": "0" + "offset": 11370, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 5689, - "length": 1, - "value": "0" + "offset": 11622, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 6212, + "offset": 11827, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 6280, - "length": 1, - "value": "0" + "offset": 11844, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 6292, + "offset": 11864, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 6316, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 6536, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 6819, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "IntegerLiteral", + "offset": 11882, + "length": 3, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7178, + "offset": 13083, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7315, + "offset": 13460, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7319, + "offset": 13811, "length": 1, - "value": "9" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7355, + "offset": 14265, "length": 2, - "value": "41" + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 7367, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "StringLiteral", + "offset": 16072, "length": 2, - "value": "44" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 7384, - "length": 2, - "value": "10" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 16105, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 7389, - "length": 2, - "value": "99" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 16135, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 7426, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 16306, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 16404, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 17184, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 17265, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "StringLiteral", + "offset": 18750, + "length": 60, + "value": "\"Message input view changed mode to \"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "StringLiteral", + "offset": 18809, "length": 2, - "value": "49" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 7438, + "offset": 2347, "length": 2, - "value": "44" + "value": "56" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 7492, + "offset": 2445, "length": 2, - "value": "57" + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 7504, + "offset": 2541, "length": 2, - "value": "44" + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 7725, - "length": 1, - "value": "0" + "offset": 3194, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 8705, + "offset": 3405, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 10123, + "offset": 3614, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 10180, + "offset": 3812, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 10623, - "length": 4, - "value": "true" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 10717, + "offset": 8528, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 10790, + "offset": 24786, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "StringLiteral", - "offset": 228, - "length": 26, - "value": "\"SendbirdUIKit.SBUReactionsViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUGlobals.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 1925, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardListView.swift", + "kind": "FloatLiteral", + "offset": 295, "length": 5, - "value": "false" + "value": "258.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardListView.swift", "kind": "IntegerLiteral", - "offset": 2041, - "length": 3, - "value": "100" + "offset": 548, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2772, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardListView.swift", + "kind": "IntegerLiteral", + "offset": 750, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "BooleanLiteral", - "offset": 2824, + "offset": 1222, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "IntegerLiteral", - "offset": 2943, + "offset": 2006, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "IntegerLiteral", - "offset": 3033, - "length": 4, - "value": "1000" + "offset": 2782, + "length": 2, + "value": "55" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3088, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", + "kind": "IntegerLiteral", + "offset": 2828, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "IntegerLiteral", - "offset": 3576, + "offset": 2910, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "BooleanLiteral", - "offset": 3977, + "offset": 3100, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "BooleanLiteral", - "offset": 4018, - "length": 4, - "value": "true" + "offset": 3511, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", + "kind": "BooleanLiteral", + "offset": 3901, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "StringLiteral", - "offset": 4193, - "length": 67, - "value": "\"\"" + "offset": 1463, + "length": 19, + "value": "\"SendbirdUIKit.SBUMessageStateView\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "StringLiteral", - "offset": 4239, - "length": 1, - "value": "\".\"" + "offset": 1463, + "length": 19, + "value": "\"SendbirdUIKit.SBUMessageStateView\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", + "kind": "BooleanLiteral", + "offset": 562, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", + "kind": "BooleanLiteral", + "offset": 851, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 4259, - "length": 1, - "value": "\"\"" + "offset": 263, + "length": 11, + "value": "\"reactions\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 5395, - "length": 67, - "value": "\"\"" + "offset": 306, + "length": 15, + "value": "\"enable_og_tag\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 5441, - "length": 1, - "value": "\".\"" + "offset": 371, + "length": 33, + "value": "\"use_last_messege_on_super_group\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 5461, - "length": 1, - "value": "\"\"" + "offset": 439, + "length": 18, + "value": "\"use_last_seen_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6052, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 500, + "length": 26, + "value": "\"enable_message_threading\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6504, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 580, + "length": 37, + "value": "\"allow_group_channel_create_from_sdk\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6881, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 671, + "length": 37, + "value": "\"allow_group_channel_invite_from_sdk\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7127, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 760, + "length": 35, + "value": "\"allow_operators_to_edit_operators\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7846, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 846, + "length": 34, + "value": "\"allow_operators_to_ban_operators\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 8848, - "length": 47, - "value": "\"[Request] Load channel: \"" + "offset": 924, + "length": 27, + "value": "\"allow_super_group_channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 8894, - "length": 2, - "value": "\"\"" + "offset": 1004, + "length": 36, + "value": "\"allow_group_channel_leave_from_sdk\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 9342, - "length": 69, - "value": "\"[Succeed] Load channel request: \"" + "offset": 1094, + "length": 37, + "value": "\"allow_group_channel_update_from_sdk\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 9410, - "length": 2, - "value": "\"\"" + "offset": 1197, + "length": 49, + "value": "\"allow_only_operator_sdk_to_update_group_channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10477, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 1288, + "length": 25, + "value": "\"allow_broadcast_channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 11391, - "length": 62, - "value": "\"[Failed] Load channel request: \"" + "offset": 1346, + "length": 19, + "value": "\"message_search_v3\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 11452, - "length": 2, - "value": "\"\"" + "offset": 1438, + "length": 28, + "value": "\"allow_user_update_from_sdk\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11853, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", + "kind": "FloatLiteral", + "offset": 414, "length": 4, - "value": "true" + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", "kind": "BooleanLiteral", - "offset": 11892, - "length": 5, - "value": "false" + "offset": 598, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", "kind": "BooleanLiteral", - "offset": 12121, - "length": 5, - "value": "false" + "offset": 947, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", "kind": "BooleanLiteral", - "offset": 12161, + "offset": 1189, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", "kind": "BooleanLiteral", - "offset": 12651, + "offset": 1236, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 13205, - "length": 4, - "value": "true" + "offset": 400, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 13244, - "length": 4, - "value": "true" + "offset": 603, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13283, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", "kind": "StringLiteral", - "offset": 14449, - "length": 187, - "value": "\"loadInitialMessages,\nstartingPoint : \"" + "offset": 203, + "length": 27, + "value": "\"SendbirdUIKit.SBUUnknownMessageCellParams\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", "kind": "StringLiteral", - "offset": 14550, - "length": 1, - "value": "\",\ninitialMessages : \"" + "offset": 20355, + "length": 12, + "value": "\"created_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", "kind": "StringLiteral", - "offset": 14620, - "length": 7153, - "value": "\"\"" + "offset": 20381, + "length": 12, + "value": "\"updated_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14773, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", + "kind": "StringLiteral", + "offset": 20355, + "length": 12, + "value": "\"created_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", "kind": "StringLiteral", - "offset": 15469, - "length": 30, - "value": "\"Prev message already loading\"" + "offset": 20381, + "length": 12, + "value": "\"updated_at\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", + "kind": "StringLiteral", + "offset": 20625, + "length": 12, + "value": "\"updated_at\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", + "kind": "StringLiteral", + "offset": 20691, + "length": 12, + "value": "\"theme_mode\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", "kind": "StringLiteral", - "offset": 15559, - "length": 69, - "value": "\"[Request] Prev message list from : \"" + "offset": 20625, + "length": 12, + "value": "\"updated_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", "kind": "StringLiteral", - "offset": 15627, + "offset": 20691, + "length": 12, + "value": "\"theme_mode\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", + "kind": "Array", + "offset": 20858, "length": 2, - "value": "\"\"" + "value": "[]" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", + "kind": "IntegerLiteral", + "offset": 466, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 15668, - "length": 4, - "value": "true" + "offset": 2260, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 15836, + "offset": 2464, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 15878, + "offset": 2506, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16081, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 16555, + "offset": 2590, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 16603, + "offset": 13266, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 16837, - "length": 40, - "value": "\"Prev message list request is not valid\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1185, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16920, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", + "kind": "Array", + "offset": 1294, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", "kind": "StringLiteral", - "offset": 17016, - "length": 52, - "value": "\"[Prev message response] \"" + "offset": 1061, + "length": 27, + "value": "\"SendbirdUIKit.SBUOpenChannelListViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 17058, - "length": 8, - "value": "\" messages\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "Array", + "offset": 2278, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17399, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "IntegerLiteral", + "offset": 2460, + "length": 2, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17599, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "FloatLiteral", + "offset": 2588, "length": 4, - "value": "true" + "value": "56.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17659, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "FloatLiteral", + "offset": 2625, + "length": 4, + "value": "48.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 17811, - "length": 30, - "value": "\"Next message already loading\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "FloatLiteral", + "offset": 2660, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 17901, - "length": 65, - "value": "\"[Request] Next message list from : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "FloatLiteral", + "offset": 2696, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 17965, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "IntegerLiteral", + "offset": 3744, "length": 2, - "value": "\"\"" + "value": "1" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "IntegerLiteral", + "offset": 4485, + "length": 2, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", "kind": "BooleanLiteral", - "offset": 18006, + "offset": 8032, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "IntegerLiteral", - "offset": 18178, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "StringLiteral", + "offset": 249, + "length": 11, + "value": "\"SBUConfig\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "StringLiteral", + "offset": 2361, + "length": 56, + "value": "\"\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "StringLiteral", + "offset": 2393, "length": 1, - "value": "0" + "value": "\".queue.diskcache.config\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", "kind": "IntegerLiteral", - "offset": 18216, + "offset": 2490, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18415, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "StringLiteral", + "offset": 2533, + "length": 23, + "value": "\"sbu_config_updated_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18795, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "StringLiteral", + "offset": 2581, + "length": 19, + "value": "\"sbu_config_config\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 19002, - "length": 40, - "value": "\"Next message list request is not valid\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "BooleanLiteral", + "offset": 3630, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/NotificationSettings\/SBUGroupChannelPushSettingsViewModel.swift", "kind": "StringLiteral", - "offset": 19134, - "length": 52, - "value": "\"[Next message Response] \"" + "offset": 744, + "length": 36, + "value": "\"SendbirdUIKit.SBUGroupChannelPushSettingsViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", "kind": "StringLiteral", - "offset": 19176, - "length": 8, - "value": "\" messages\"" + "offset": 648, + "length": 6, + "value": "\"spin\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19509, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", + "kind": "StringLiteral", + "offset": 648, + "length": 6, + "value": "\"spin\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 19691, - "length": 4, - "value": "true" + "offset": 4659, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 20102, - "length": 69, - "value": "\"[Request] Both message list from : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "kind": "Dictionary", + "offset": 5721, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", "kind": "StringLiteral", - "offset": 20170, + "offset": 892, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", "kind": "BooleanLiteral", - "offset": 20449, - "length": 4, - "value": "true" + "offset": 458, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20582, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 27, + "value": "\"SendbirdUIKit.SBUBaseChannelListViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 20854, - "length": 1, - "value": "0" + "offset": 1659, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 20926, - "length": 1, - "value": "2" + "offset": 1719, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 20992, - "length": 1, - "value": "2" + "offset": 1780, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21041, - "length": 1, - "value": "0" + "offset": 1835, + "length": 2, + "value": "24" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21117, - "length": 1, - "value": "2" + "offset": 1895, + "length": 2, + "value": "32" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21187, - "length": 1, - "value": "2" + "offset": 1959, + "length": 2, + "value": "48" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21328, - "length": 1, - "value": "0" + "offset": 2020, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21425, - "length": 1, - "value": "0" + "offset": 2131, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21564, - "length": 1, - "value": "0" + "offset": 2185, + "length": 2, + "value": "38" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21685, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 21783, - "length": 166, - "value": "\"Fetch from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 21832, - "length": 1, - "value": "\",\nlimit: prev = \"" + "offset": 2238, + "length": 2, + "value": "60" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 21888, - "length": 1, - "value": "\",\nnext = \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2289, + "length": 2, + "value": "28" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 21933, - "length": 2499, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2345, + "length": 2, + "value": "40" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21980, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2411, + "length": 2, + "value": "36" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22402, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2466, + "length": 2, + "value": "40" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22478, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2527, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23433, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2582, + "length": 2, + "value": "22" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 23592, - "length": 43, - "value": "\"Initial message list request is not valid\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2642, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "BooleanLiteral", - "offset": 23689, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 23754, - "length": 52, - "value": "\"[Both message response] \"" + "offset": 3936, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 23796, - "length": 8, - "value": "\" messages\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "Array", + "offset": 10599, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", "kind": "IntegerLiteral", - "offset": 24139, + "offset": 2330, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24442, - "length": 276, - "value": "\"[Initial message response] Prev count : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24561, - "length": 1, - "value": "\",\nprevLimit : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24639, - "length": 1, - "value": "\",\nhasPrev : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24702, - "length": 28, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24740, - "length": 268, - "value": "\"[Initial message response] Next count : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24859, - "length": 1, - "value": "\",\nnextLimit : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24933, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "kind": "IntegerLiteral", + "offset": 3263, "length": 1, - "value": "\",\nhasNext : \"" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24992, - "length": 37, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "kind": "BooleanLiteral", + "offset": 5410, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 25039, - "length": 161, - "value": "\"[Initial message response] First : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "kind": "BooleanLiteral", + "offset": 6115, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 25127, - "length": 1, - "value": "\",\nLast : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "kind": "BooleanLiteral", + "offset": 1189, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 25184, - "length": 1636, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "kind": "BooleanLiteral", + "offset": 11242, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", "kind": "BooleanLiteral", - "offset": 25304, - "length": 5, - "value": "false" + "offset": 11773, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", "kind": "BooleanLiteral", - "offset": 25376, + "offset": 718, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 25806, - "length": 67, - "value": "\"[Failed] Send user message request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", + "kind": "BooleanLiteral", + "offset": 928, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 25872, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", + "kind": "BooleanLiteral", + "offset": 460, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 26263, - "length": 57, - "value": "\"[Succeed] Send user message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", + "kind": "IntegerLiteral", + "offset": 754, + "length": 5, + "value": "10001" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", "kind": "StringLiteral", - "offset": 26319, - "length": 2, - "value": "\"\"" + "offset": 252, + "length": 17, + "value": "\"SendbirdUIKit.SBUNewMessageInfo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", "kind": "BooleanLiteral", - "offset": 26397, + "offset": 1332, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 26830, - "length": 133, - "value": "\"[Failed] Send file message request:\n\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", + "kind": "IntegerLiteral", + "offset": 1404, + "length": 2, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 26939, - "length": 2825, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", + "kind": "IntegerLiteral", + "offset": 318, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 27370, - "length": 57, - "value": "\"[Succeed] Send file message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", + "kind": "IntegerLiteral", + "offset": 364, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 27426, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", + "kind": "IntegerLiteral", + "offset": 318, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27517, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", + "kind": "IntegerLiteral", + "offset": 364, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", "kind": "BooleanLiteral", - "offset": 28037, + "offset": 1820, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", "kind": "BooleanLiteral", - "offset": 28121, + "offset": 2278, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 28166, - "length": 76, - "value": "\"[Failed] Resend failed user message request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", + "kind": "BooleanLiteral", + "offset": 3845, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 28241, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", + "kind": "FloatLiteral", + "offset": 4179, + "length": 3, + "value": "0.7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 28627, - "length": 62, - "value": "\"[Succeed] Resend failed file message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", + "kind": "BooleanLiteral", + "offset": 6037, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 28688, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", + "kind": "BooleanLiteral", + "offset": 7192, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", "kind": "BooleanLiteral", - "offset": 28775, + "offset": 7781, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", "kind": "BooleanLiteral", - "offset": 29416, - "length": 5, - "value": "false" + "offset": 8247, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 29782, - "length": 193, - "value": "\"hasNext : \"" + "offset": 288, + "length": 31, + "value": "\"enableUsingDefaultUserProfile\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 29843, - "length": 1, - "value": "\",\nfirst : \"" + "offset": 288, + "length": 31, + "value": "\"enableUsingDefaultUserProfile\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 29902, - "length": 1, - "value": "\",\nlast : \"" + "offset": 476, + "length": 16, + "value": "\"enableDocument\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 29959, - "length": 298, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "IntegerLiteral", - "offset": 30069, - "length": 1, - "value": "0" + "offset": 476, + "length": 16, + "value": "\"enableDocument\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30267, - "length": 169, - "value": "\"newTimestamp : \"" + "offset": 612, + "length": 13, + "value": "\"enablePhoto\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30313, - "length": 1, - "value": "\",\nlastUpdatedTimestamp : \"" + "offset": 656, + "length": 13, + "value": "\"enableVideo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30378, - "length": 1, - "value": "\",\ncurrentTime : \"" + "offset": 612, + "length": 13, + "value": "\"enablePhoto\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30420, - "length": 499, - "value": "\"\"" + "offset": 656, + "length": 13, + "value": "\"enableVideo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30663, - "length": 21, - "value": "\"set to \"" + "offset": 790, + "length": 13, + "value": "\"enablePhoto\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30683, - "length": 2, - "value": "\"\"" + "offset": 834, + "length": 13, + "value": "\"enableVideo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30929, - "length": 194, - "value": "\"reset timestamp to : \"" + "offset": 790, + "length": 13, + "value": "\"enablePhoto\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30994, - "length": 1, - "value": "\",\nstartingPoint : \"" + "offset": 834, + "length": 13, + "value": "\"enableVideo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 31065, - "length": 1, - "value": "\",\ncurrentTime : \"" + "offset": 1123, + "length": 13, + "value": "\"enableOgtag\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 31107, - "length": 3949, - "value": "\"\"" + "offset": 1177, + "length": 23, + "value": "\"enableTypingIndicator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31485, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", + "kind": "StringLiteral", + "offset": 1235, + "length": 17, + "value": "\"enableReactions\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31792, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 15, + "value": "\"enableMention\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 32562, - "length": 42, - "value": "\"[Request] Message change logs with token\"" + "offset": 1338, + "length": 20, + "value": "\"enableVoiceMessage\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 32827, - "length": 59, - "value": "\"[Request] Message change logs with last updated timestamp\"" + "offset": 1123, + "length": 13, + "value": "\"enableOgtag\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 33381, - "length": 76, - "value": "\"[Request] Changelog added message list from : \"" + "offset": 1177, + "length": 23, + "value": "\"enableTypingIndicator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 33456, - "length": 2, - "value": "\"\"" + "offset": 1235, + "length": 17, + "value": "\"enableReactions\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "IntegerLiteral", - "offset": 33626, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 15, + "value": "\"enableMention\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 33727, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", + "kind": "StringLiteral", + "offset": 1338, + "length": 20, + "value": "\"enableVoiceMessage\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 34189, - "length": 51, - "value": "\"Changelog added message list request is not valid\"" + "offset": 1573, + "length": 23, + "value": "\"enableTypingIndicator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 34375, - "length": 55, - "value": "\"[Changelog added response] \"" + "offset": 1642, + "length": 28, + "value": "\"enableMessageReceiptStatus\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 34420, - "length": 8, - "value": "\" messages\"" + "offset": 1573, + "length": 23, + "value": "\"enableTypingIndicator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 35066, - "length": 123, - "value": "\"[Failed] Message change logs request:\n\"" + "offset": 1642, + "length": 28, + "value": "\"enableMessageReceiptStatus\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 35169, - "length": 181, - "value": "\"\"" + "offset": 1802, + "length": 21, + "value": "\"enableMessageSearch\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 35300, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", + "kind": "StringLiteral", + "offset": 1802, + "length": 21, + "value": "\"enableMessageSearch\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 35364, - "length": 209, - "value": "\"[Response]\n\"" + "offset": 1946, + "length": 13, + "value": "\"enableOgtag\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 35420, - "length": 21, - "value": "\"%d updated messages\"" + "offset": 1946, + "length": 13, + "value": "\"enableOgtag\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "kind": "Array", + "offset": 1962, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 35472, - "length": 1, - "value": "\",\n\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "kind": "Dictionary", + "offset": 2342, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 35503, - "length": 21, - "value": "\"%d deleted messages\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "kind": "Dictionary", + "offset": 2471, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", "kind": "IntegerLiteral", - "offset": 35554, + "offset": 2748, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", "kind": "StringLiteral", - "offset": 35557, - "length": 22044, + "offset": 2816, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 35892, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 36490, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "kind": "StringLiteral", + "offset": 2860, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", "kind": "BooleanLiteral", - "offset": 37202, + "offset": 2958, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 37299, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 37503, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 37973, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 38059, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 38094, - "length": 95, - "value": "\"Loaded added messages : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 38141, - "length": 1, - "value": "\", hasNext : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", "kind": "StringLiteral", - "offset": 38188, + "offset": 6588, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 38398, - "length": 24, - "value": "\"[Request] Start typing\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 38605, - "length": 22, - "value": "\"[Request] End typing\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "IntegerLiteral", - "offset": 39547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 39552, - "length": 1, + "offset": 418, + "length": 9, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 40172, - "length": 1, - "value": "0" + "offset": 418, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 40989, - "length": 1, - "value": "0" + "offset": 418, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 40994, - "length": 1, + "offset": 802, + "length": 7, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 41144, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 42019, - "length": 42, - "value": "\"Couldn't retrieve thread list.: \"" + "offset": 819, + "length": 13, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 42060, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 842, + "length": 10, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42096, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 862, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42163, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 878, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42188, - "length": 5, - "value": "false" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 42277, - "length": 41, - "value": "\"Response of retrieve thread list is nil\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 802, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42353, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 819, + "length": 13, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42378, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 842, + "length": 10, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42418, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 862, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42778, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 878, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 43003, - "length": 5, - "value": "false" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 43288, - "length": 1, - "value": "0" + "offset": 802, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 43449, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 43841, - "length": 4, - "value": "true" + "offset": 819, + "length": 13, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 1722, - "length": 25, - "value": "\"SendbirdUIKit.SBUMessageThreadViewModel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 842, + "length": 10, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 45468, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 862, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 45511, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 878, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 45541, - "length": 5, - "value": "false" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", "kind": "BooleanLiteral", - "offset": 45939, + "offset": 13501, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 46258, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", "kind": "StringLiteral", - "offset": 46562, - "length": 32, - "value": "\"Did update message: \"" + "offset": 1232, + "length": 30, + "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", "kind": "StringLiteral", - "offset": 46593, - "length": 2, - "value": "\"\"" + "offset": 1232, + "length": 30, + "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", "kind": "StringLiteral", - "offset": 46790, - "length": 32, - "value": "\"Did update message: \"" + "offset": 1232, + "length": 30, + "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 46821, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "kind": "IntegerLiteral", + "offset": 2196, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 46895, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "kind": "IntegerLiteral", + "offset": 2218, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 47824, - "length": 63, - "value": "\"Did update message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "kind": "FloatLiteral", + "offset": 2293, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 47886, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "kind": "IntegerLiteral", + "offset": 2322, "length": 2, - "value": "\"\"" + "value": "50" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", "kind": "StringLiteral", - "offset": 48494, - "length": 48, - "value": "\"Did update message: \"" + "offset": 809, + "length": 21, + "value": "\"SendbirdUIKit.SBUFileViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 48541, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "kind": "IntegerLiteral", + "offset": 521, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 48749, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "kind": "IntegerLiteral", + "offset": 527, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 49139, - "length": 35, - "value": "\"Message was deleted: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "kind": "IntegerLiteral", + "offset": 537, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 49173, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "kind": "IntegerLiteral", + "offset": 548, "length": 2, - "value": "\"\"" + "value": "76" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 49497, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "kind": "IntegerLiteral", + "offset": 882, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", "kind": "StringLiteral", - "offset": 49826, - "length": 55, - "value": "\"Channel was changed, ChannelURL:\"" + "offset": 213, + "length": 26, + "value": "\"SendbirdUIKit.SBUMenuSheetViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 49880, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 331, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 50328, - "length": 54, - "value": "\"Channel was frozen, ChannelURL:\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 50381, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 50830, - "length": 56, - "value": "\"Channel was unfrozen, ChannelURL:\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 331, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 50885, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 51363, - "length": 16, - "value": "\"You are muted.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 51851, - "length": 18, - "value": "\"You are unmuted.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 331, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 52718, - "length": 17, - "value": "\"You are banned.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 54746, - "length": 53, - "value": "\"messageCollection addedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 54798, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 55418, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 530, + "length": 19, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 55486, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 559, + "length": 19, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 55845, - "length": 55, - "value": "\"messageCollection updatedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 588, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 55899, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 15, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 56441, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 629, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 56730, - "length": 55, - "value": "\"messageCollection deletedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 56784, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 530, + "length": 19, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 57312, - "length": 34, - "value": "\"messageCollection changedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 559, + "length": 19, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 57570, - "length": 34, - "value": "\"messageCollection deletedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 588, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.Header.swift", - "kind": "StringLiteral", - "offset": 6460, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 15, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "Array", - "offset": 1083, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 629, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "StringLiteral", - "offset": 1925, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "StringLiteral", - "offset": 3020, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 530, + "length": 19, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "BooleanLiteral", - "offset": 3963, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 559, + "length": 19, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", "kind": "IntegerLiteral", - "offset": 4083, - "length": 1, - "value": "0" + "offset": 588, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", "kind": "IntegerLiteral", - "offset": 4093, - "length": 1, - "value": "0" + "offset": 604, + "length": 15, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", "kind": "IntegerLiteral", - "offset": 4101, - "length": 1, - "value": "0" + "offset": 629, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", "kind": "IntegerLiteral", - "offset": 4112, + "offset": 2548, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", "kind": "StringLiteral", - "offset": 5943, - "length": 22, - "value": "\"Not a group channel.\"" + "offset": 2089, + "length": 16, + "value": "\"SendbirdUIKit.SBUVoiceRecorder\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 6322, + "offset": 739, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 6412, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "StringLiteral", - "offset": 6691, - "length": 37, - "value": "\"Did receive error: \"" + "offset": 778, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "StringLiteral", - "offset": 6724, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", + "kind": "IntegerLiteral", + "offset": 811, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", "kind": "StringLiteral", - "offset": 6727, - "length": 2, - "value": "\"\"" + "offset": 200, + "length": 24, + "value": "\"SendbirdUIKit.SBUFileMessageCellParams\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "BooleanLiteral", - "offset": 8441, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUTheme.Deprecated.swift", + "kind": "FloatLiteral", + "offset": 20612, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "BooleanLiteral", - "offset": 9457, - "length": 5, - "value": "false" + "value": "0.64" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", "kind": "StringLiteral", - "offset": 9512, + "offset": 341, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Deprecated.swift", - "kind": "StringLiteral", - "offset": 3900, - "length": 26, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 20, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Deprecated.swift", - "kind": "StringLiteral", - "offset": 3921, - "length": 4, - "value": "\"Cell\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 340, + "length": 17, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 1248, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 367, "length": 4, - "value": "true" + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2952, - "length": 10, - "value": "1" + "offset": 381, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2972, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3234, - "length": 13, - "value": "\"quote_reply\"" + "offset": 396, + "length": 17, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3234, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 423, "length": 13, - "value": "\"quote_reply\"" + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3882, - "length": 28, - "value": "\"Cannot decode SBUReplyType\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 20, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 4330, - "length": 28, - "value": "\"Cannot decode SBUReplyType\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 340, + "length": 17, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2952, - "length": 10, - "value": "1" + "offset": 367, + "length": 4, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2972, - "length": 6, - "value": "2" + "offset": 381, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2952, - "length": 10, - "value": "1" + "offset": 396, + "length": 17, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2972, - "length": 6, - "value": "2" + "offset": 423, + "length": 13, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4622, - "length": 6, + "offset": 310, + "length": 20, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4705, - "length": 6, + "offset": 340, + "length": 17, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 5453, - "length": 40, - "value": "\"Cannot decode SBUThreadReplySelectType\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 367, + "length": 4, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 5999, - "length": 40, - "value": "\"Cannot decode SBUThreadReplySelectType\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 381, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4622, - "length": 6, - "value": "1" + "offset": 396, + "length": 17, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4705, - "length": 6, - "value": "2" + "offset": 423, + "length": 13, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4622, - "length": 6, + "offset": 1964, + "length": 8, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4705, - "length": 6, + "offset": 1986, + "length": 7, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2202, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2007, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2624, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2027, + "length": 7, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2903, - "length": 67, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 1964, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2949, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 1986, + "length": 7, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2969, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2007, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3830, - "length": 67, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2027, + "length": 7, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3876, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 1964, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3896, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 1986, + "length": 7, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4841, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2007, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 4968, - "length": 47, - "value": "\"[Request] Load channel: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2027, + "length": 7, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5014, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 3640, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "StringLiteral", - "offset": 5498, - "length": 69, - "value": "\"[Succeed] Load channel request: \"" + "offset": 1767, + "length": 14, + "value": "\"SendbirdUIKit.SBUVoicePlayer\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5566, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 3124, "length": 2, - "value": "\"\"" + "value": "30" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "Array", - "offset": 6336, + "offset": 3644, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6472, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 3978, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 6859, - "length": 4, - "value": "true" + "offset": 4930, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7637, - "length": 62, - "value": "\"[Failed] Load channel request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5768, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7698, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5816, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 8077, - "length": 4, - "value": "true" + "offset": 5862, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 8176, - "length": 4, - "value": "true" + "offset": 5903, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 8233, + "offset": 6087, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 8462, + "offset": 6886, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 8494, - "length": 4, - "value": "true" + "offset": 23263, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8892, - "length": 187, - "value": "\"loadInitialMessages,\nstartingPoint : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4116, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8993, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4129, "length": 1, - "value": "\",\ninitialMessages : \"" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9063, - "length": 16761, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4212, + "length": 2, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9785, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4226, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", "kind": "BooleanLiteral", - "offset": 9918, - "length": 5, - "value": "false" + "offset": 4285, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4445, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", "kind": "BooleanLiteral", - "offset": 10098, + "offset": 4512, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "StringLiteral", + "offset": 4597, + "length": 13, + "value": "\"searchField\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4752, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", "kind": "BooleanLiteral", - "offset": 10171, + "offset": 4806, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUUser.swift", "kind": "BooleanLiteral", - "offset": 10684, + "offset": 652, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUUser.swift", "kind": "BooleanLiteral", - "offset": 10905, + "offset": 771, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUUser.swift", "kind": "BooleanLiteral", - "offset": 10989, + "offset": 1887, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUUser.swift", "kind": "BooleanLiteral", - "offset": 11356, + "offset": 1910, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11437, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUUser.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 7, + "value": "\"SendbirdUIKit.SBUUser\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "Array", - "offset": 11582, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 3145, "length": 2, - "value": "[]" + "value": "30" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "Array", - "offset": 11656, + "offset": 3673, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "IntegerLiteral", - "offset": 11876, + "offset": 4007, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12605, - "length": 30, - "value": "\"Prev message already loading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12695, - "length": 29, - "value": "\"[Request] Prev message list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13043, + "offset": 4959, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13201, - "length": 52, - "value": "\"[Prev message response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13243, - "length": 8, - "value": "\" messages\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5802, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13460, + "offset": 5850, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13550, - "length": 4, - "value": "true" + "offset": 5896, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13745, - "length": 30, - "value": "\"Next message already loading\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5937, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13913, - "length": 4, - "value": "true" + "offset": 6121, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 14141, + "offset": 6524, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 14274, + "offset": 21496, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "StringLiteral", - "offset": 14413, - "length": 52, - "value": "\"[Next message Response] \"" + "offset": 3040, + "length": 35, + "value": "\"SendbirdUIKit.SBUFeedNotificationChannelViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 8, - "value": "\" messages\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", + "kind": "Dictionary", + "offset": 816, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", "kind": "BooleanLiteral", - "offset": 14672, + "offset": 1750, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "FloatLiteral", + "offset": 74139, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "FloatLiteral", + "offset": 74904, "length": 4, - "value": "true" + "value": "0.64" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14761, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "FloatLiteral", + "offset": 98715, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "FloatLiteral", + "offset": 134016, "length": 4, - "value": "true" + "value": "0.12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15483, - "length": 24, - "value": "\"[Request] Start typing\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 174213, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15682, - "length": 22, - "value": "\"[Request] End typing\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 174933, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 16624, - "length": 1, - "value": "0" + "offset": 176623, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 16629, - "length": 1, - "value": "1" + "offset": 176858, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 17248, - "length": 1, - "value": "0" + "offset": 177639, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 18020, - "length": 1, - "value": "0" + "offset": 178153, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 18025, + "offset": 180088, "length": 1, - "value": "1" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 18175, - "length": 1, - "value": "0" + "offset": 180267, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19343, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 180432, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "StringLiteral", - "offset": 1303, - "length": 24, - "value": "\"SendbirdUIKit.SBUGroupChannelViewModel\"" + "offset": 180668, + "length": 11, + "value": "\"#e0000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20019, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "StringLiteral", + "offset": 180735, + "length": 11, + "value": "\"#70000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20319, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "StringLiteral", + "offset": 180800, + "length": 11, + "value": "\"#e0000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20540, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 181620, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20634, - "length": 53, - "value": "\"messageCollection addedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 181814, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20686, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 182181, "length": 2, - "value": "\"\"" + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21005, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "StringLiteral", + "offset": 182686, + "length": 11, + "value": "\"#e0000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21086, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "StringLiteral", + "offset": 182752, + "length": 11, + "value": "\"#70000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21495, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "StringLiteral", + "offset": 182825, + "length": 11, + "value": "\"#e0000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", "kind": "BooleanLiteral", - "offset": 21795, + "offset": 364, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", "kind": "BooleanLiteral", - "offset": 22016, + "offset": 574, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22118, - "length": 55, - "value": "\"messageCollection updatedMessages : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22172, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 343, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22351, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 349, "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22468, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 356, + "length": 3, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22499, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 343, "length": 4, - "value": "true" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22782, - "length": 55, - "value": "\"messageCollection deletedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 5, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22836, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 356, + "length": 3, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23013, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 343, "length": 4, - "value": "true" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23234, - "length": 34, - "value": "\"messageCollection changedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 5, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23581, - "length": 34, - "value": "\"messageCollection deletedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 356, + "length": 3, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23809, - "length": 36, - "value": "\"messageCollection didDetectHugeGap\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "FloatLiteral", + "offset": 609, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "IntegerLiteral", - "offset": 24151, - "length": 1, - "value": "0" + "offset": 702, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "IntegerLiteral", - "offset": 24230, + "offset": 753, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "IntegerLiteral", - "offset": 24240, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24500, - "length": 5, - "value": "false" + "offset": 872, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25449, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "kind": "IntegerLiteral", + "offset": 918, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25475, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "kind": "IntegerLiteral", + "offset": 968, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 1984, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "kind": "IntegerLiteral", + "offset": 1017, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "StringLiteral", - "offset": 2479, + "offset": 1076, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 4140, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 4566, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 5248, + "offset": 1317, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 7814, + "offset": 1373, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 8186, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 8236, - "length": 4, - "value": "true" + "offset": 1414, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 8478, - "length": 4, - "value": "true" + "offset": 1450, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 8585, + "offset": 1488, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "IntegerLiteral", - "offset": 339, - "length": 2, - "value": "16" + "offset": 1606, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 432, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "kind": "BooleanLiteral", + "offset": 1831, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 570, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "kind": "BooleanLiteral", + "offset": 2097, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 1183, + "offset": 2601, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3022, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 240, + "length": 13, + "value": "\"E, MMM yyyy\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3036, - "length": 3, - "value": "-16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 288, + "length": 14, + "value": "\"MMM dd, yyyy\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3046, - "length": 2, - "value": "13" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 334, + "length": 11, + "value": "\"E, MMM dd\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3058, - "length": 2, - "value": "12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 376, + "length": 8, + "value": "\"MMM dd\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3135, - "length": 2, - "value": "31" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 9, + "value": "\"hh:mm a\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3208, - "length": 2, - "value": "51" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 7, + "value": "\"hh:mm\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3273, - "length": 2, - "value": "24" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 495, + "length": 12, + "value": "\"yyyy\/MM\/dd\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3285, - "length": 2, - "value": "24" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 545, + "length": 14, + "value": "\"yyyyMMddhhmm\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3421, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 599, + "length": 16, + "value": "\"yyyyMMddhhmmss\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3435, - "length": 3, - "value": "-16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 651, + "length": 16, + "value": "\"MMM dd hh:mm a\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "FloatLiteral", - "offset": 3448, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 707, + "length": 22, + "value": "\"MMM dd, yyyy hh:mm a\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "FloatLiteral", - "offset": 3502, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "kind": "IntegerLiteral", + "offset": 1245, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 4344, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "kind": "IntegerLiteral", + "offset": 1284, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 4894, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 889, "length": 4, - "value": "true" + "value": "1000" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 4939, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 939, + "length": 6, + "value": "600000" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 4989, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 1076, "length": 5, - "value": "false" + "value": "11025" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 5041, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 1118, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 5327, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 1222, "length": 5, - "value": "false" + "value": "12000" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SendbirdUI.swift", "kind": "BooleanLiteral", - "offset": 5384, + "offset": 527, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SendbirdUI.swift", "kind": "BooleanLiteral", - "offset": 5431, + "offset": 17687, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SendbirdUI.swift", "kind": "BooleanLiteral", - "offset": 5482, + "offset": 21316, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 1007, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 1239, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 2170, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 2572, - "length": 1, - "value": "8" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SendbirdUI.swift", + "kind": "BooleanLiteral", + "offset": 22637, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", "kind": "IntegerLiteral", - "offset": 5125, + "offset": 1674, "length": 2, - "value": "18" + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", "kind": "IntegerLiteral", - "offset": 5137, + "offset": 1900, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", "kind": "IntegerLiteral", - "offset": 5223, + "offset": 1922, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5295, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "kind": "BooleanLiteral", + "offset": 3054, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5306, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "80.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", "kind": "IntegerLiteral", - "offset": 5375, - "length": 1, - "value": "0" + "offset": 3175, + "length": 2, + "value": "46" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", "kind": "IntegerLiteral", - "offset": 5386, - "length": 1, - "value": "0" + "offset": 3187, + "length": 2, + "value": "46" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", "kind": "IntegerLiteral", - "offset": 5478, + "offset": 713, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", "kind": "IntegerLiteral", - "offset": 5491, + "offset": 719, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", "kind": "IntegerLiteral", - "offset": 5499, + "offset": 729, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5510, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "kind": "FloatLiteral", + "offset": 740, + "length": 3, + "value": "0.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5588, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "kind": "Array", + "offset": 930, "length": 2, - "value": "32" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5600, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "kind": "Array", + "offset": 968, "length": 2, - "value": "32" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5677, - "length": 2, - "value": "32" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "kind": "StringLiteral", + "offset": 228, + "length": 26, + "value": "\"SendbirdUIKit.SBUReactionsViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", "kind": "IntegerLiteral", - "offset": 5689, - "length": 2, - "value": "32" + "offset": 2041, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", "kind": "BooleanLiteral", - "offset": 6857, + "offset": 2772, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9742, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "kind": "BooleanLiteral", + "offset": 2824, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", "kind": "IntegerLiteral", - "offset": 9767, + "offset": 2943, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9793, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "kind": "BooleanLiteral", + "offset": 3088, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", "kind": "IntegerLiteral", - "offset": 9742, + "offset": 3576, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9767, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "kind": "BooleanLiteral", + "offset": 12651, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9793, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "kind": "StringLiteral", + "offset": 1722, + "length": 25, + "value": "\"SendbirdUIKit.SBUMessageThreadViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9742, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "BooleanLiteral", + "offset": 1248, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 9767, - "length": 1, + "offset": 2952, + "length": 10, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 9793, - "length": 1, + "offset": 2972, + "length": 6, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "StringLiteral", - "offset": 3612, - "length": 2, - "value": "\"\"" + "offset": 3234, + "length": 13, + "value": "\"quote_reply\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "FloatLiteral", - "offset": 744, - "length": 4, - "value": "34.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "StringLiteral", + "offset": 3234, + "length": 13, + "value": "\"quote_reply\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 823, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 2952, + "length": 10, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 1226, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 2972, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1273, - "length": 1, - "value": "0" + "offset": 2952, + "length": 10, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1279, - "length": 1, - "value": "0" + "offset": 2972, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1450, - "length": 1, - "value": "0" + "offset": 4622, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1456, - "length": 1, - "value": "0" + "offset": 4705, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1466, - "length": 1, - "value": "6" + "offset": 4622, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1477, - "length": 1, - "value": "6" + "offset": 4705, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 4622, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 4705, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 1693, + "offset": 2202, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 2172, + "offset": 2624, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2490, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "kind": "StringLiteral", + "offset": 1303, + "length": 24, + "value": "\"SendbirdUIKit.SBUGroupChannelViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", "kind": "IntegerLiteral", - "offset": 2581, - "length": 1, - "value": "0" + "offset": 339, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", "kind": "IntegerLiteral", - "offset": 2674, - "length": 1, - "value": "0" + "offset": 432, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", "kind": "IntegerLiteral", - "offset": 2769, + "offset": 570, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", "kind": "BooleanLiteral", - "offset": 2896, + "offset": 1183, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3038, + "offset": 1007, "length": 1, - "value": "5" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3307, + "offset": 1239, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 3398, - "length": 5, - "value": "false" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3572, + "offset": 2170, "length": 1, "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "FloatLiteral", - "offset": 3724, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3875, + "offset": 2572, "length": 1, - "value": "5" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 4003, + "offset": 9742, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 4095, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 4170, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "FloatLiteral", - "offset": 4347, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "FloatLiteral", - "offset": 4500, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 4589, - "length": 2, - "value": "12" + "offset": 9767, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 5253, + "offset": 9793, "length": 1, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 5325, + "offset": 9742, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 5437, + "offset": 9767, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "StringLiteral", - "offset": 5633, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "StringLiteral", - "offset": 6488, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 6746, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 6758, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 7348, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 7458, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 7553, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 7565, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 7619, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 7746, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7758, - "length": 2, - "value": "40" + "offset": 9793, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7809, + "offset": 9742, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7991, - "length": 2, - "value": "40" + "offset": 9767, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 8003, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 8580, - "length": 5, - "value": "false" + "offset": 9793, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 8942, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "kind": "FloatLiteral", + "offset": 744, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "StringLiteral", - "offset": 8991, - "length": 2, - "value": "\"\"" + "value": "34.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", "kind": "BooleanLiteral", - "offset": 9372, + "offset": 823, "length": 5, "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 10091, - "length": 6, - "value": "100000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 2845, - "length": 2, - "value": "\"\"" } ] } \ No newline at end of file diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.private.swiftinterface b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.private.swiftinterface index 6b346ac20..599c9c47e 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.private.swiftinterface +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) +// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name SendbirdUIKit // swift-module-flags-ignorable: -enable-bare-slash-regex import AVFAudio @@ -83,9 +83,9 @@ import simd @_Concurrency.MainActor(unsafe) public var stackView: SendbirdUIKit.SBUStackView @_Concurrency.MainActor(unsafe) public var fileImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var fileNameLabel: UIKit.UILabel - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with fileType: Swift.String, fileName: Swift.String, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) open func configure(with messageFileType: SendbirdUIKit.SBUMessageFileType, fileName: Swift.String, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) open func addHighlight(keyword: Swift.String, toAttributedString attributedString: Foundation.NSMutableAttributedString, highlightTextColor: UIKit.UIColor) @@ -134,8 +134,8 @@ extension SendbirdUIKit.SBUBaseChannelModule { @objc @_Concurrency.MainActor(unsafe) public var newMessageInfoView: UIKit.UIView? @objc @_Concurrency.MainActor(unsafe) public var scrollBottomView: UIKit.UIView? @objc @_Concurrency.MainActor(unsafe) public var userProfileView: UIKit.UIView? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelModuleListDataSource? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get @@ -206,8 +206,8 @@ extension SendbirdUIKit.SBUConfig { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } @objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUBaseMessageCell : SendbirdUIKit.SBUTableViewCell, SendbirdUIKit.SBUMessageCellProtocol { @@ -251,7 +251,7 @@ public protocol SBUOpenChannelListModuleHeaderDelegate : SendbirdUIKit.SBUBaseCh extension SendbirdUIKit.SBUOpenChannelListModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelListModule.Header { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUOpenChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate? { get set } @@ -260,7 +260,7 @@ extension SendbirdUIKit.SBUOpenChannelListModule { @available(*, unavailable, renamed: "SBUOpenChannelListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUOpenChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUOpenChannelListTheme) @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUOpenChannelListTheme? = nil) } } @@ -273,7 +273,7 @@ public protocol SBUCommonDelegate : AnyObject { @objc deinit } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUParentMessageInfoReactionView : SendbirdUIKit.SBUMessageReactionView { - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(maxWidth: CoreFoundation.CGFloat, useReaction: Swift.Bool, reactions: [SendbirdChatSDK.Reaction]) @_Concurrency.MainActor(unsafe) override open func getCellSize(count: Swift.Int) -> CoreFoundation.CGSize @_Concurrency.MainActor(unsafe) @objc override open func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int @@ -299,8 +299,8 @@ extension SendbirdUIKit.SBUMessageSearchModule { } @objc @_Concurrency.MainActor(unsafe) public var resultCell: SendbirdUIKit.SBUMessageSearchResultCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageSearchTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageSearchModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageSearchModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageSearchModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageSearchModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var resultList: [SendbirdChatSDK.BaseMessage] { @objc get } @@ -309,7 +309,7 @@ extension SendbirdUIKit.SBUMessageSearchModule { @available(*, unavailable, renamed: "SBUMessageSearchModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageSearchModuleListDelegate, dataSource: any SendbirdUIKit.SBUMessageSearchModuleListDataSource, theme: SendbirdUIKit.SBUMessageSearchTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageSearchModuleListDelegate, dataSource: SendbirdUIKit.SBUMessageSearchModuleListDataSource, theme: SendbirdUIKit.SBUMessageSearchTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageSearchTheme? = nil) @@ -349,18 +349,18 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageThreadModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? + @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? @objc @_Concurrency.MainActor(unsafe) public var mentionManager: SendbirdUIKit.SBUMentionManager? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleInputDelegate, dataSource: any SendbirdUIKit.SBUMessageThreadModuleInputDataSource, parentMessage: SendbirdChatSDK.BaseMessage?, mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleInputDelegate, dataSource: SendbirdUIKit.SBUMessageThreadModuleInputDataSource, parentMessage: SendbirdChatSDK.BaseMessage?, mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -407,11 +407,11 @@ public protocol SBUGroupChannelModuleHeaderDelegate : SendbirdUIKit.SBUBaseChann } extension SendbirdUIKit.SBUGroupChannelModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func onTapLeftBarButton() @_Concurrency.MainActor(unsafe) @objc override open func onTapRightBarButton() @@ -557,11 +557,11 @@ public protocol SBUGroupChannelSettingsViewModelDelegate : SendbirdUIKit.SBUBase @available(*, deprecated, renamed: "SBUGroupChannelSettingsViewModel") public typealias SBUChannelSettingsViewModel = SendbirdUIKit.SBUGroupChannelSettingsViewModel @objc open class SBUGroupChannelSettingsViewModel : SendbirdUIKit.SBUBaseChannelSettingsViewModel { - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String?) override public func updateChannel(channelName: Swift.String? = nil, coverImage: UIKit.UIImage? = nil) @@ -594,15 +594,15 @@ public protocol SBURegisterOperatorViewModelDelegate : SendbirdUIKit.SBUBaseSele public protocol SBURegisterOperatorViewModelDataSource : SendbirdUIKit.SBUBaseSelectUserViewModelDataSource { } @objc open class SBURegisterOperatorViewModel : SendbirdUIKit.SBUBaseSelectUserViewModel { - weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBURegisterOperatorViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBURegisterOperatorViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: (any SendbirdUIKit.SBURegisterOperatorViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBURegisterOperatorViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: SendbirdUIKit.SBURegisterOperatorViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBURegisterOperatorViewModelDataSource? = nil) public func registerAsOperators() public func registerAsOperators(users: [SendbirdUIKit.SBUUser]) public func registerAsOperators(userIds: [Swift.String]) @@ -635,15 +635,15 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.OpenChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleInputDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelModuleInputDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleInputDelegate, dataSource: SendbirdUIKit.SBUOpenChannelModuleInputDataSource, theme: SendbirdUIKit.SBUChannelTheme) @objc @_Concurrency.MainActor(unsafe) open func updateStyles(overlaid: Swift.Bool = false) @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @_Concurrency.MainActor(unsafe) @objc override open func pickVideoFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -677,8 +677,8 @@ extension SendbirdUIKit.SBUBaseSelectUserModule { } @objc @_Concurrency.MainActor(unsafe) public var userCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseSelectUserModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseSelectUserModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseSelectUserModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseSelectUserModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var userList: [SendbirdUIKit.SBUUser]? { @objc get } @@ -713,15 +713,15 @@ public protocol SBUInviteUserViewModelDelegate : SendbirdUIKit.SBUBaseSelectUser public protocol SBUInviteUserViewModelDataSource : SendbirdUIKit.SBUBaseSelectUserViewModelDataSource { } @objc open class SBUInviteUserViewModel : SendbirdUIKit.SBUBaseSelectUserViewModel { - weak public var delegate: (any SendbirdUIKit.SBUInviteUserViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUInviteUserViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUInviteUserViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUInviteUserViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: (any SendbirdUIKit.SBUInviteUserViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUInviteUserViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: SendbirdUIKit.SBUInviteUserViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUInviteUserViewModelDataSource? = nil) public func inviteUsers() public func invite(users: [SendbirdUIKit.SBUUser]) public func invite(userIds: [Swift.String]) @@ -737,9 +737,9 @@ public protocol SBUInviteUserViewModelDataSource : SendbirdUIKit.SBUBaseSelectUs get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(timestamp: Swift.Int64) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -754,11 +754,11 @@ public protocol SBURegisterOperatorModuleListDataSource : SendbirdUIKit.SBUBaseS } extension SendbirdUIKit.SBURegisterOperatorModule { @_inheritsConvenienceInitializers @objc(SBURegisterOperatorModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBURegisterOperatorModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBURegisterOperatorModuleListDataSource? { get set } @@ -767,7 +767,7 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @available(*, unavailable, renamed: "SBURegisterOperatorModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBURegisterOperatorModuleListDelegate, dataSource: any SendbirdUIKit.SBURegisterOperatorModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBURegisterOperatorModuleListDelegate, dataSource: SendbirdUIKit.SBURegisterOperatorModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } @@ -791,29 +791,27 @@ open class SBUModerationsViewModel { public var channelType: SendbirdChatSDK.ChannelType { get } - public init(channel: SendbirdChatSDK.BaseChannel, delegate: (any SendbirdUIKit.SBUModerationsViewModelDelegate)? = nil) - public init(channelURL: Swift.String, channelType: SendbirdChatSDK.ChannelType, delegate: (any SendbirdUIKit.SBUModerationsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel, delegate: SendbirdUIKit.SBUModerationsViewModelDelegate? = nil) + public init(channelURL: Swift.String, channelType: SendbirdChatSDK.ChannelType, delegate: SendbirdUIKit.SBUModerationsViewModelDelegate? = nil) public func loadChannel(channelURL: Swift.String) public func freezeChannel(_ completionHandler: ((Swift.Bool) -> Swift.Void)? = nil) public func unfreezeChannel(_ completionHandler: ((Swift.Bool) -> Swift.Void)? = nil) @objc deinit } -@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUView : UIKit.UIView { +@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUView : UIKit.UIView, SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) @objc dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "init(frame:)") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() @objc deinit } -extension SendbirdUIKit.SBUView : SendbirdUIKit.SBUViewLifeCycle { - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupActions() -} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUMessageReactionView : SendbirdUIKit.SBUView, UIKit.UICollectionViewDelegate, UIKit.UICollectionViewDataSource, UIKit.UICollectionViewDelegateFlowLayout { @_Concurrency.MainActor(unsafe) public var collectionView: UIKit.UICollectionView { get @@ -839,9 +837,9 @@ extension SendbirdUIKit.SBUView : SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "MessageReactionView()") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func hasMoreEmoji(at indexPath: Foundation.IndexPath) -> Swift.Bool @_Concurrency.MainActor(unsafe) open func configure(maxWidth: CoreFoundation.CGFloat, useReaction: Swift.Bool, reactions: [SendbirdChatSDK.Reaction]) @_Concurrency.MainActor(unsafe) open func getCellSize(count: Swift.Int) -> CoreFoundation.CGSize @@ -926,11 +924,11 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var fileMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? @objc @_Concurrency.MainActor(unsafe) public var unknownMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? @objc @_Concurrency.MainActor(unsafe) public var customMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelModuleListDataSource? { get set } @@ -940,7 +938,7 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var isOverlaid: Swift.Bool { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @objc @_Concurrency.MainActor(unsafe) open func updateLayouts() @@ -996,9 +994,9 @@ extension SendbirdUIKit.SBUOpenChannelModule { get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?) @objc deinit @@ -1021,8 +1019,8 @@ extension SendbirdUIKit.SBUBaseChannelListModule { } @objc @_Concurrency.MainActor(unsafe) public var channelCell: SendbirdUIKit.SBUBaseChannelCell? @objc @_Concurrency.MainActor(unsafe) public var customCell: SendbirdUIKit.SBUBaseChannelCell? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelListModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelListModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelListModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelListModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannelList: [SendbirdChatSDK.BaseChannel]? { @objc get } @@ -1120,11 +1118,11 @@ public protocol SBUCreateChannelModuleHeaderDataSource : SendbirdUIKit.SBUBaseSe } extension SendbirdUIKit.SBUCreateChannelModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource? { get set } @@ -1133,7 +1131,7 @@ extension SendbirdUIKit.SBUCreateChannelModule { @available(*, unavailable, renamed: "SBUCreateChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -1147,7 +1145,7 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUEmptyView : SendbirdUIKit.SBUView { @_Concurrency.MainActor(unsafe) public var type: SendbirdUIKit.EmptyViewType - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUEmptyViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUEmptyViewDelegate? @_Concurrency.MainActor(unsafe) public var statusImageView: UIKit.UIImageView { get set @@ -1173,10 +1171,10 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { @available(*, unavailable, renamed: "SBUEmptyView.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateTopAnchorConstraint(constant: CoreFoundation.CGFloat) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func reloadData(_ type: SendbirdUIKit.EmptyViewType) @_Concurrency.MainActor(unsafe) open func updateViews() @objc @_Concurrency.MainActor(unsafe) open func onClickRetry(_ sender: Any) @@ -1188,8 +1186,8 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { public var openChannel: SendbirdUIKit.SBUConfig.OpenChannel @objc override dynamic public init() @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } open class SBUGroupChannelSettingsModule { public static var HeaderComponent: SendbirdUIKit.SBUGroupChannelSettingsModule.Header.Type @@ -1243,13 +1241,13 @@ extension SendbirdUIKit.SBUChannelInfoHeaderViewDelegate { set _modify } - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUChannelInfoHeaderViewDelegate)?) + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUChannelInfoHeaderViewDelegate?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "SBUChannelInfoHeaderView()") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func setupInfoButtonStyle() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?, description: Swift.String?) @@ -1283,15 +1281,62 @@ public class SBUChatNotificationChannelModule { @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView @_Concurrency.MainActor(unsafe) public var fileImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var fileNameLabel: UIKit.UILabel - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) public func addHighlight(keyword: Swift.String, toAttributedString attributedString: Foundation.NSMutableAttributedString, highlightTextColor: UIKit.UIColor) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit } +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUCardView : SendbirdUIKit.SBUView { + public struct Metric { + public static var maxWidth: Swift.Double + public static var textMinWidth: Swift.Double + public static var imageSize: Swift.Double + } + @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme + @_Concurrency.MainActor(unsafe) public var imageURL: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var title: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var subtitle: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var text: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var link: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUCardViewParams? { + get + } + @_Concurrency.MainActor(unsafe) public var contentStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var mainInfoStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var titleStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var titleLabel: UIKit.UILabel + @_Concurrency.MainActor(unsafe) public var subtitleLabel: UIKit.UILabel + @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView { + get + set + } + @_Concurrency.MainActor(unsafe) public var descriptionTextView: UIKit.UITextView + @_Concurrency.MainActor(unsafe) public var textLeftConstraint: UIKit.NSLayoutConstraint? + @_Concurrency.MainActor(unsafe) public var textRightConstraint: UIKit.NSLayoutConstraint? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupActions() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUCardViewParams) + @objc @_Concurrency.MainActor(unsafe) public func openURL() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @_hasMissingDesignatedInitializers public class SBUColorSet { public static var primary100: UIKit.UIColor public static var primary200: UIKit.UIColor @@ -1521,8 +1566,8 @@ extension SendbirdUIKit.SBUConfig { public var camera: SendbirdUIKit.SBUConfig.BaseInput.Camera public var gallery: SendbirdUIKit.SBUConfig.BaseInput.Gallery @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.BaseInput { @@ -1538,8 +1583,8 @@ extension SendbirdUIKit.SBUConfig.BaseInput { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.BaseInput { @@ -1555,8 +1600,8 @@ extension SendbirdUIKit.SBUConfig.BaseInput { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } open class SBUGroupChannelModule { @@ -1598,11 +1643,11 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -2053,13 +2098,13 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUCreateOpenChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUCreateOpenChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUCreateOpenChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUCreateOpenChannelTheme? = nil) @@ -2085,10 +2130,10 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { } @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupSizeContraint() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) open func setImage(_ image: UIKit.UIImage?, size: CoreFoundation.CGSize? = nil) @_Concurrency.MainActor(unsafe) open func setFileIcon() @@ -2117,12 +2162,12 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc open func setupViews() - @_Concurrency.MainActor(unsafe) @objc open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc open func setupActions() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() @_Concurrency.MainActor(unsafe) open func configure(model: SendbirdUIKit.SBUMessageWebViewModel) @objc deinit } @@ -2305,7 +2350,7 @@ open class SBUMessageSearchViewModel { public var messageSearchQuery: SendbirdChatSDK.MessageSearchQuery? { get } - public init(channel: SendbirdChatSDK.BaseChannel, params: SendbirdChatSDK.MessageSearchQueryParams? = nil, delegate: (any SendbirdUIKit.SBUMessageSearchViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel, params: SendbirdChatSDK.MessageSearchQueryParams? = nil, delegate: SendbirdUIKit.SBUMessageSearchViewModelDelegate? = nil) open func search(keyword: Swift.String) public func search(keyword: Swift.String, query: SendbirdChatSDK.MessageSearchQuery) public func loadMore() @@ -2463,13 +2508,13 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule { @objc @_Concurrency.MainActor(unsafe) open func inviteUserViewModel(_ viewModel: SendbirdUIKit.SBUInviteUserViewModel, didInviteUserIds userIds: [Swift.String]) @_Concurrency.MainActor(unsafe) @objc override open func baseSelectedUserViewModel(_ viewModel: SendbirdUIKit.SBUBaseSelectUserViewModel, didUpdateSelectedUsers selectedUsers: [SendbirdUIKit.SBUUser]?) } -@objc public protocol SBUViewLifeCycle { - @objc func setupViews() - @objc func setupStyles() - @objc func updateStyles() - @objc func setupLayouts() - @objc func updateLayouts() - @objc func setupActions() +public protocol SBUViewLifeCycle { + func setupViews() + func setupStyles() + func updateStyles() + func setupLayouts() + func updateLayouts() + func setupActions() } public typealias SBUNewNotificationInfoHandler = () -> Swift.Void extension SendbirdUIKit.SBUBaseChannelViewController { @@ -2550,11 +2595,11 @@ public protocol SBUOpenChannelSettingsModuleListDataSource : SendbirdUIKit.SBUBa } extension SendbirdUIKit.SBUOpenChannelSettingsModule { @_inheritsConvenienceInitializers @objc(SBUOpenChannelSettingsModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelSettingsModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource? { get set } @@ -2566,7 +2611,7 @@ extension SendbirdUIKit.SBUOpenChannelSettingsModule { @available(*, unavailable, renamed: "SBUOpenChannelSettingsModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupItems() @_Concurrency.MainActor(unsafe) open func createModerationsItem() -> SendbirdUIKit.SBUChannelSettingItem @@ -2632,13 +2677,13 @@ extension SendbirdUIKit.SBUGroupChannelPushSettingsModule { } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUGroupChannelPushSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUGroupChannelPushSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -2671,7 +2716,7 @@ extension SendbirdUIKit.SBUSelectablePhotoViewDelegate { set _modify } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUSelectablePhotoViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUSelectablePhotoViewDelegate? @objc @_Concurrency.MainActor(unsafe) public var fetchResult: Photos.PHFetchResult @objc @_Concurrency.MainActor(unsafe) public var columnSize: CoreFoundation.CGSize { @objc get @@ -2704,11 +2749,11 @@ public protocol SBUOpenChannelSettingsViewModelDelegate : SendbirdUIKit.SBUBaseC func openChannelSettingsViewModel(_ viewModel: SendbirdUIKit.SBUOpenChannelSettingsViewModel, didDeleteChannel channel: SendbirdChatSDK.OpenChannel) } @objc open class SBUOpenChannelSettingsViewModel : SendbirdUIKit.SBUBaseChannelSettingsViewModel { - weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String?) override public func updateChannel(channelName: Swift.String? = nil, coverImage: UIKit.UIImage? = nil) @@ -2747,8 +2792,8 @@ extension SendbirdUIKit.SBUOpenChannelSettingsViewModel : SendbirdChatSDK.OpenCh set } public init(wrappedValue: T) - public init(from decoder: any Swift.Decoder) throws - public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws } public protocol SBUQuoteMessageInputViewProtocol : SendbirdUIKit.SBUViewLifeCycle { func configure(with configuration: SendbirdUIKit.SBUQuoteMessageInputViewParams) @@ -2856,9 +2901,9 @@ extension SendbirdUIKit.SBUBaseChannelViewModel : SendbirdChatSDK.BaseChannelDel public static var descBottomMargin: CoreFoundation.CGFloat public static var stackSpacing: CoreFoundation.CGFloat } - @_Concurrency.MainActor(unsafe) @objc override open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func configure(model: SendbirdUIKit.SBUMessageWebViewModel) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init(coder: Foundation.NSCoder) @@ -2871,12 +2916,12 @@ extension SendbirdUIKit.SBUBaseChannelViewModel : SendbirdChatSDK.BaseChannelDel @objc deinit } extension SendbirdUIKit.SBUTableViewCell : SendbirdUIKit.SBUViewLifeCycle { - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupActions() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupViews() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupLayouts() + @objc @_Concurrency.MainActor(unsafe) dynamic open func updateLayouts() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupStyles() + @objc @_Concurrency.MainActor(unsafe) dynamic open func updateStyles() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupActions() } public protocol SBUMessageCellProtocol { func configure(with configuration: SendbirdUIKit.SBUBaseMessageCellParams) @@ -2992,6 +3037,7 @@ public protocol SBUMessageCellProtocol { @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapQuotedMessageView quotedMessageView: SendbirdUIKit.SBUQuotedBaseMessageView) @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMentionUser user: SendbirdUIKit.SBUUser) @objc @_Concurrency.MainActor(unsafe) open func groupChannelModuleDidTapThreadInfoView(_ threadInfoView: SendbirdUIKit.SBUThreadInfoView) + @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didSelectQuickReplyOption text: Swift.String) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModule(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, didTapVoiceMessage fileMessage: SendbirdChatSDK.FileMessage, cell: UIKit.UITableViewCell, forRowAt indexPath: Foundation.IndexPath) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModuleDidTapScrollToButton(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModule(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, didScroll scrollView: UIKit.UIScrollView) @@ -3015,8 +3061,8 @@ public protocol SBUMessageCellProtocol { @objc @_Concurrency.MainActor(unsafe) open func voiceMessageInputView(_ inputView: SendbirdUIKit.SBUVoiceMessageInputView, didTapSend voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo) } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelCommonContentView : SendbirdUIKit.SBUCommonContentView { - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -3138,11 +3184,11 @@ public protocol SBUGroupChannelListModuleListDataSource : SendbirdUIKit.SBUBaseC extension SendbirdUIKit.SBUGroupChannelListModule { @_inheritsConvenienceInitializers @objc(SBUGroupChannelListModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelListModule.List { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUGroupChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelListModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelListModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelListModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelListModuleListDataSource? { get set } @@ -3154,7 +3200,7 @@ extension SendbirdUIKit.SBUGroupChannelListModule { @available(*, unavailable, renamed: "SBUGroupChannelListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelListModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelListModuleListDataSource, theme: SendbirdUIKit.SBUGroupChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelListModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelListModuleListDataSource, theme: SendbirdUIKit.SBUGroupChannelListTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUGroupChannelListTheme? = nil) @objc @_Concurrency.MainActor(unsafe) public func leaveContextualAction(with indexPath: Foundation.IndexPath) -> UIKit.UIContextualAction? @@ -3190,7 +3236,7 @@ public class SBUAlertButtonItem { @objc deinit } @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class SBUAlertView : ObjectiveC.NSObject { - public static func show(title: Swift.String, message: Swift.String? = nil, needInputField: Swift.Bool = false, placeHolder: Swift.String? = "", centerYRatio: CoreFoundation.CGFloat? = 1.0, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, confirmButtonItem: SendbirdUIKit.SBUAlertButtonItem, cancelButtonItem: SendbirdUIKit.SBUAlertButtonItem?, delegate: (any SendbirdUIKit.SBUAlertViewDelegate)? = nil, dismissHandler: (() -> Swift.Void)? = nil) + public static func show(title: Swift.String, message: Swift.String? = nil, needInputField: Swift.Bool = false, placeHolder: Swift.String? = "", centerYRatio: CoreFoundation.CGFloat? = 1.0, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, confirmButtonItem: SendbirdUIKit.SBUAlertButtonItem, cancelButtonItem: SendbirdUIKit.SBUAlertButtonItem?, delegate: SendbirdUIKit.SBUAlertViewDelegate? = nil, dismissHandler: (() -> Swift.Void)? = nil) public static func dismiss() @objc deinit } @@ -3234,7 +3280,7 @@ public protocol SBUBaseSelectUserViewModelDataSource : AnyObject { public var joinedUserIds: Swift.Set { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, inviteListType: SendbirdUIKit.ChannelInviteListType, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: (any SendbirdUIKit.SBUBaseSelectUserViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUBaseSelectUserViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, inviteListType: SendbirdUIKit.ChannelInviteListType, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: SendbirdUIKit.SBUBaseSelectUserViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUBaseSelectUserViewModelDataSource? = nil) public func loadChannel(channelURL: Swift.String, type: SendbirdChatSDK.ChannelType) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) public func preLoadNextUserList(indexPath: Foundation.IndexPath) @@ -3296,8 +3342,8 @@ extension SendbirdUIKit.SBUBaseChannelModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleInputDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelModuleInputDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleInputDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelModuleInputDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -3344,9 +3390,9 @@ extension SendbirdUIKit.SBUBaseChannelModule { @_Concurrency.MainActor(unsafe) public var position: SendbirdUIKit.MessagePosition @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() @_Concurrency.MainActor(unsafe) public func setAxis(_ axis: UIKit.NSLayoutConstraint.Axis) @_Concurrency.MainActor(unsafe) public func addArrangedSubview(_ view: UIKit.UIView) @_Concurrency.MainActor(unsafe) public func removeArrangedSubview(_ view: UIKit.UIView) @@ -3430,9 +3476,9 @@ extension SendbirdUIKit.SBUBaseChannelModule { get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -3493,8 +3539,8 @@ extension SendbirdUIKit.SBUConfig { public var channel: SendbirdUIKit.SBUConfig.OpenChannel.Channel @objc override dynamic public init() @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.OpenChannel { @@ -3506,13 +3552,13 @@ extension SendbirdUIKit.SBUConfig.OpenChannel { } public var input: SendbirdUIKit.SBUConfig.OpenChannel.Channel.Input @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.OpenChannel.Channel { @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class Input : SendbirdUIKit.SBUConfig.BaseInput { - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } } @@ -3531,16 +3577,16 @@ public protocol SBUSuggestedMentionListDelegate : AnyObject { get } @_Concurrency.MainActor(unsafe) public var isLimitGuideEnabled: Swift.Bool - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUSuggestedMentionListDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUSuggestedMentionListDelegate? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme @_Concurrency.MainActor(unsafe) public var showsUserId: Swift.Bool { get set } @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func register(userCell: UIKit.UITableViewCell, nib: UIKit.UINib? = nil) @_Concurrency.MainActor(unsafe) public func register(limitGuideCell: UIKit.UITableViewCell, nib: UIKit.UINib? = nil) @_Concurrency.MainActor(unsafe) @objc open func tableView(_ tableView: UIKit.UITableView, numberOfRowsInSection section: Swift.Int) -> Swift.Int @@ -3563,8 +3609,8 @@ extension SendbirdUIKit.SBUConfig { public var channelList: SendbirdUIKit.SBUConfig.GroupChannel.ChannelList public var setting: SendbirdUIKit.SBUConfig.GroupChannel.Setting @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3604,8 +3650,8 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { } public var input: SendbirdUIKit.SBUConfig.GroupChannel.Channel.Input @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3621,8 +3667,8 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3633,13 +3679,13 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel.Channel { @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class Input : SendbirdUIKit.SBUConfig.BaseInput { - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } } @@ -3654,7 +3700,7 @@ extension SendbirdUIKit.SBUConfig.GroupChannel.Channel { final public let type: SendbirdUIKit.SBUMessageTemplate.ActionType final public let data: Swift.String final public let alterData: Swift.String? - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } public enum ActionType : Swift.String, Swift.Decodable { @@ -3700,11 +3746,11 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var customMessageCell: SendbirdUIKit.SBUBaseMessageCell? { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageThreadModuleListDataSource? { get set } @@ -3714,7 +3760,7 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleListDelegate, dataSource: any SendbirdUIKit.SBUMessageThreadModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleListDelegate, dataSource: SendbirdUIKit.SBUMessageThreadModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -3840,11 +3886,11 @@ public protocol SBUInviteUserModuleHeaderDataSource : SendbirdUIKit.SBUBaseSelec } extension SendbirdUIKit.SBUInviteUserModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUInviteUserModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUInviteUserModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUInviteUserModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUInviteUserModuleHeaderDataSource? { get set } @@ -3853,7 +3899,7 @@ extension SendbirdUIKit.SBUInviteUserModule { @available(*, unavailable, renamed: "SBUInviteUserModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUInviteUserModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUInviteUserModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUInviteUserModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUInviteUserModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -4102,6 +4148,32 @@ extension SendbirdUIKit.SBUInviteUserModule { public static func restoreDefaultIcons() @objc deinit } +public protocol SBUQuickReplyViewDelegate : AnyObject { + func quickReplyView(_ view: SendbirdUIKit.SBUQuickReplyView, didSelectOption optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} +@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) public class SBUQuickReplyView : SendbirdUIKit.SBUView, SendbirdUIKit.SBUQuickReplyOptionViewDelegate { + @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView + @_Concurrency.MainActor(unsafe) public var topSpacer: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var options: [Swift.String] { + get + } + @_Concurrency.MainActor(unsafe) public var messageId: Swift.Int64? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUQuickReplyViewParams? { + get + } + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuickReplyViewDelegate? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUQuickReplyViewParams, delegate: SendbirdUIKit.SBUQuickReplyViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) public func createQuickReplyOptionViews(options: [Swift.String]) -> [SendbirdUIKit.SBUQuickReplyOptionView] + @_Concurrency.MainActor(unsafe) public func quickReplyOptionViewDidSelect(_ optionView: SendbirdUIKit.SBUQuickReplyOptionView) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelContentBaseMessageCell : SendbirdUIKit.SBUOpenChannelBaseMessageCell { @objc @_Concurrency.MainActor(unsafe) public var baseStackView: UIKit.UIStackView { @objc get @@ -4163,8 +4235,8 @@ public protocol SBUUserListViewModelDataSource : AnyObject { func userListViewModel(_ viewModel: SendbirdUIKit.SBUUserListViewModel, nextUserListForChannel channel: SendbirdChatSDK.BaseChannel?) -> [SendbirdUIKit.SBUUser]? } @objc open class SBUUserListViewModel : ObjectiveC.NSObject { - weak public var delegate: (any SendbirdUIKit.SBUUserListViewModelDelegate)? - weak public var dataSource: (any SendbirdUIKit.SBUUserListViewModelDataSource)? + weak public var delegate: SendbirdUIKit.SBUUserListViewModelDelegate? + weak public var dataSource: SendbirdUIKit.SBUUserListViewModelDataSource? public var channel: SendbirdChatSDK.BaseChannel? { get } @@ -4186,7 +4258,7 @@ public protocol SBUUserListViewModelDataSource : AnyObject { public var userListType: SendbirdUIKit.ChannelUserListType { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListType: SendbirdUIKit.ChannelUserListType, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, operatorListQuery: SendbirdChatSDK.OperatorListQuery? = nil, mutedMemberListQuery: SendbirdChatSDK.MemberListQuery? = nil, mutedParticipantListQuery: SendbirdChatSDK.MutedUserListQuery? = nil, bannedUserListQuery: SendbirdChatSDK.BannedUserListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: (any SendbirdUIKit.SBUUserListViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUUserListViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListType: SendbirdUIKit.ChannelUserListType, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, operatorListQuery: SendbirdChatSDK.OperatorListQuery? = nil, mutedMemberListQuery: SendbirdChatSDK.MemberListQuery? = nil, mutedParticipantListQuery: SendbirdChatSDK.MutedUserListQuery? = nil, bannedUserListQuery: SendbirdChatSDK.BannedUserListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: SendbirdUIKit.SBUUserListViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUUserListViewModelDataSource? = nil) @objc deinit public func loadChannel(channelURL: Swift.String, type: SendbirdChatSDK.ChannelType) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) @@ -4238,7 +4310,7 @@ extension SendbirdUIKit.SBUBaseChannelListModule { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelListModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelListModuleHeaderDelegate? @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @objc @_Concurrency.MainActor(unsafe) open func onTapLeftBarButton() @@ -4324,7 +4396,7 @@ public protocol SBUThreadInfoViewProtocol : SendbirdUIKit.SBUViewLifeCycle { set _modify } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUThreadInfoViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUThreadInfoViewDelegate? @_Concurrency.MainActor(unsafe) public var threadInfo: SendbirdChatSDK.ThreadInfo? { get } @@ -4339,11 +4411,11 @@ public protocol SBUThreadInfoViewProtocol : SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) final public let repliedUserLimit: Swift.Int @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageCellTheme) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupActions() @_Concurrency.MainActor(unsafe) open func configure(with message: SendbirdChatSDK.BaseMessage, messagePosition: SendbirdUIKit.MessagePosition) @_Concurrency.MainActor(unsafe) open func setupRepliedUsers() @objc @_Concurrency.MainActor(unsafe) open func onTapThreadInfo(sender: UIKit.UITapGestureRecognizer) @@ -4367,7 +4439,7 @@ public protocol SBUMessageThreadTitleViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadTitleViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadTitleViewDelegate? @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme { get set @@ -4377,10 +4449,10 @@ public protocol SBUMessageThreadTitleViewDelegate : AnyObject { get } @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUMessageThreadTitleViewDelegate)? = nil) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUMessageThreadTitleViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @objc @_Concurrency.MainActor(unsafe) open func onTapChannelName(sender: UIKit.UITapGestureRecognizer) @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?, title: Swift.String?) @@ -4514,11 +4586,11 @@ public protocol SBUCreateChannelTypeSelectorProtocol { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "CreateChannelTypeSelectView.init(delegate:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUCreateChannelTypeSelectorDelegate)?) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUCreateChannelTypeSelectorDelegate?) + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func updateStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func show() @_Concurrency.MainActor(unsafe) open func dismiss() @objc @_Concurrency.MainActor(unsafe) open func onClickClose() @@ -4693,8 +4765,8 @@ public enum UserListType : Swift.Hashable { case mutedMembers @available(*, unavailable, renamed: "banned") case bannedMembers - public static func == (a: SendbirdUIKit.UserListType, b: SendbirdUIKit.UserListType) -> Swift.Bool public func hash(into hasher: inout Swift.Hasher) + public static func == (a: SendbirdUIKit.UserListType, b: SendbirdUIKit.UserListType) -> Swift.Bool public var hashValue: Swift.Int { get } @@ -4931,7 +5003,7 @@ public protocol SBUParentMessageInfoViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles() - @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.BaseMessage?, delegate: (any SendbirdUIKit.SBUParentMessageInfoViewDelegate)?, useReaction: Swift.Bool = false, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) + @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.BaseMessage?, delegate: SendbirdUIKit.SBUParentMessageInfoViewDelegate?, useReaction: Swift.Bool = false, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) @_Concurrency.MainActor(unsafe) open func setupActions() @objc @_Concurrency.MainActor(unsafe) open func onTapUserProfileView(sender: UIKit.UITapGestureRecognizer) @objc @_Concurrency.MainActor(unsafe) open func onTapContentView(sender: UIKit.UITapGestureRecognizer) @@ -4950,13 +5022,14 @@ public protocol SBUParentMessageInfoViewDelegate : AnyObject { public static var fileMessageParamsSendBuilder: ((_ params: SendbirdChatSDK.FileMessageCreateParams?) -> Swift.Void)? public static var voiceFileMessageParamsSendBuilder: ((_ params: SendbirdChatSDK.FileMessageCreateParams?) -> Swift.Void)? public static var messageListParamsBuilder: ((_ params: SendbirdChatSDK.MessageListParams?) -> Swift.Void)? + public static var cardViewParamsCollectionBuilder: ((_ messageData: Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams])? @objc deinit } public protocol SBUCreateOpenChannelViewModelDelegate : SendbirdUIKit.SBUCommonViewModelDelegate { func createOpenChannelViewModel(_ viewModel: SendbirdUIKit.SBUCreateOpenChannelViewModel, didCreateChannel channel: SendbirdChatSDK.BaseChannel?) } open class SBUCreateOpenChannelViewModel { - public init(delegate: (any SendbirdUIKit.SBUCreateOpenChannelViewModelDelegate)?) + public init(delegate: SendbirdUIKit.SBUCreateOpenChannelViewModelDelegate?) public func createChannel(channelName: Swift.String, coverImage: UIKit.UIImage?) public func createChannel(params: SendbirdChatSDK.OpenChannelCreateParams) @objc deinit @@ -4967,6 +5040,27 @@ extension SendbirdUIKit.SBUView { @available(*, unavailable, renamed: "updateLayouts()") @_Concurrency.MainActor(unsafe) public func updateAutolayout() } +public protocol SBUQuickReplyOptionViewDelegate : AnyObject { + func quickReplyOptionViewDidSelect(_ optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUQuickReplyOptionView : SendbirdUIKit.SBUView { + @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme + @_Concurrency.MainActor(unsafe) public var selectableStackView: SendbirdUIKit.SBUSelectableStackView + @_Concurrency.MainActor(unsafe) public var textView: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var text: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuickReplyOptionViewDelegate? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupActions() + @objc @_Concurrency.MainActor(unsafe) public func onSelectOption() + @_Concurrency.MainActor(unsafe) public func configure(with optionText: Swift.String, delegate: SendbirdUIKit.SBUQuickReplyOptionViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @objc public protocol SBUQuotedMessageViewDelegate { @objc func didTapQuotedMessageView(_ quotedMessageView: SendbirdUIKit.SBUQuotedBaseMessageView) } @@ -5011,13 +5105,13 @@ extension SendbirdUIKit.SBUView { set } @_Concurrency.MainActor(unsafe) public var mainContainerView: SendbirdUIKit.SBUSelectableStackView - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUQuotedMessageViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuotedMessageViewDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupActions() @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @objc @_Concurrency.MainActor(unsafe) open func didTapQuotedMessageView(sender: UIKit.UITapGestureRecognizer) @objc deinit @@ -5066,7 +5160,7 @@ extension UIKit.UIImage { @objc get @objc set } - @_Concurrency.MainActor(unsafe) public var quotedMessageView: (any UIKit.UIView & SendbirdUIKit.SBUQuotedMessageViewProtocol)? { + @_Concurrency.MainActor(unsafe) public var quotedMessageView: (UIKit.UIView & SendbirdUIKit.SBUQuotedMessageViewProtocol)? { get set } @@ -5077,7 +5171,7 @@ extension UIKit.UIImage { @objc @_Concurrency.MainActor(unsafe) public var threadInfoSpacing: UIKit.UIView { @objc get } - @_Concurrency.MainActor(unsafe) public var threadInfoView: (any UIKit.UIView & SendbirdUIKit.SBUThreadInfoViewProtocol)? { + @_Concurrency.MainActor(unsafe) public var threadInfoView: (UIKit.UIView & SendbirdUIKit.SBUThreadInfoViewProtocol)? { get set } @@ -5130,12 +5224,12 @@ extension SendbirdUIKit.SBUModerationsModule { @objc @_Concurrency.MainActor(unsafe) public var tableView: UIKit.UITableView @objc @_Concurrency.MainActor(unsafe) public var moderationCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUModerationsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUModerationsModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUModerationsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUModerationsModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUModerationsModuleListDelegate, dataSource: any SendbirdUIKit.SBUModerationsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUModerationsModuleListDelegate, dataSource: SendbirdUIKit.SBUModerationsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc deinit @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @@ -5165,15 +5259,15 @@ extension SendbirdUIKit.SBUOpenChannelViewModelDelegate { public func openChannelViewModel(_ viewModel: SendbirdUIKit.SBUOpenChannelViewModel, userDidExit user: SendbirdChatSDK.User, forChannel channel: SendbirdChatSDK.OpenChannel) } @objc open class SBUOpenChannelViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUOpenChannelViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUOpenChannelViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUOpenChannelViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = nil, delegate: (any SendbirdUIKit.SBUOpenChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUOpenChannelViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = nil, delegate: SendbirdUIKit.SBUOpenChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUOpenChannelViewModelDataSource? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) override public func refreshChannel() @@ -5277,6 +5371,17 @@ extension SendbirdUIKit.SBUGroupChannelViewController { get } } +public struct SBUCardViewParams { + public let imageURL: Swift.String? + public let title: Swift.String? + public let subtitle: Swift.String? + public let description: Swift.String? + public let link: Swift.String? + public var hasLink: Swift.Bool { + get + } + public init(imageURL: Swift.String? = nil, title: Swift.String? = nil, subtitle: Swift.String? = nil, description: Swift.String? = nil, link: Swift.String? = nil) +} public protocol SBUUserListModuleListDelegate : SendbirdUIKit.SBUCommonDelegate { func userListModule(_ listComponent: SendbirdUIKit.SBUUserListModule.List, didSelectRowAt indexPath: Foundation.IndexPath) func userListModule(_ listComponent: SendbirdUIKit.SBUUserListModule.List, didDetectPreloadingPosition indexPath: Foundation.IndexPath) @@ -5298,8 +5403,8 @@ extension SendbirdUIKit.SBUUserListModule { @objc @_Concurrency.MainActor(unsafe) public var userCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserListModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUUserListModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserListModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUUserListModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -5312,7 +5417,7 @@ extension SendbirdUIKit.SBUUserListModule { @available(*, unavailable, renamed: "SBUUserListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUUserListModuleListDelegate, dataSource: any SendbirdUIKit.SBUUserListModuleListDataSource, userListType: SendbirdUIKit.ChannelUserListType, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUUserListModuleListDelegate, dataSource: SendbirdUIKit.SBUUserListModuleListDataSource, userListType: SendbirdUIKit.ChannelUserListType, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUUserListTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -5344,11 +5449,11 @@ public protocol SBUInviteUserModuleListDataSource : SendbirdUIKit.SBUBaseSelectU } extension SendbirdUIKit.SBUInviteUserModule { @_inheritsConvenienceInitializers @objc(SBUInviteUserModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUInviteUserModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUInviteUserModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUInviteUserModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUInviteUserModuleListDataSource? { get set } @@ -5357,7 +5462,7 @@ extension SendbirdUIKit.SBUInviteUserModule { @available(*, unavailable, renamed: "SBUInviteUserModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUInviteUserModuleListDelegate, dataSource: any SendbirdUIKit.SBUInviteUserModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUInviteUserModuleListDelegate, dataSource: SendbirdUIKit.SBUInviteUserModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } @@ -5397,11 +5502,11 @@ extension UIKit.UIStackView { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "UserNameView(username:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func updateLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func updateStyles() @_Concurrency.MainActor(unsafe) open func configure(username: Swift.String, isOverlay: Swift.Bool = false) @_Concurrency.MainActor(unsafe) public func setUsernameColor(_ color: UIKit.UIColor) @objc deinit @@ -5460,6 +5565,11 @@ extension SendbirdUIKit.SBUModerationsViewController { public static func loadAllEmojis(completionHandler: @escaping (_ container: SendbirdChatSDK.EmojiContainer?, _ error: SendbirdChatSDK.SBError?) -> Swift.Void) @objc deinit } +public struct SBUQuickReplyViewParams { + public let messageId: Swift.Int64 + public let replyOptions: [Swift.String] + public init(messageId: Swift.Int64, replyOptions: [Swift.String]) +} open class SBUOpenChannelSettingsModule { public static var HeaderComponent: SendbirdUIKit.SBUOpenChannelSettingsModule.Header.Type public static var ListComponent: SendbirdUIKit.SBUOpenChannelSettingsModule.List.Type @@ -5488,8 +5598,8 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule { @objc @_Concurrency.MainActor(unsafe) public var tableView: UIKit.UITableView @objc @_Concurrency.MainActor(unsafe) public var channelInfoView: UIKit.UIView? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelSettingsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelSettingsModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelSettingsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelSettingsModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -5569,7 +5679,7 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule.List : UIKit.UITableViewDat @_Concurrency.MainActor(unsafe) required public init(channelURL: Swift.String, startingPoint: Swift.Int64? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillAppear(_ animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillTransition(to size: CoreFoundation.CGSize, with coordinator: any UIKit.UIViewControllerTransitionCoordinator) + @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillTransition(to size: CoreFoundation.CGSize, with coordinator: UIKit.UIViewControllerTransitionCoordinator) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillDisappear(_ animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLayoutSubviews() @objc deinit @@ -5615,8 +5725,8 @@ public protocol SBUCreateChannelViewModelDataSource : AnyObject { func createChannelViewModel(_ viewModel: SendbirdUIKit.SBUCreateChannelViewModel, nextUserListForChannelType channelType: SendbirdUIKit.ChannelCreationType) -> [SendbirdUIKit.SBUUser]? } open class SBUCreateChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUCreateChannelViewModelDelegate)? - weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelViewModelDataSource)? + weak public var delegate: SendbirdUIKit.SBUCreateChannelViewModelDelegate? + weak public var dataSource: SendbirdUIKit.SBUCreateChannelViewModelDataSource? public var channelType: SendbirdUIKit.ChannelCreationType { get } @@ -5629,7 +5739,7 @@ open class SBUCreateChannelViewModel { public var userListQuery: SendbirdChatSDK.ApplicationUserListQuery? { get } - public init(channelType: SendbirdUIKit.ChannelCreationType = .group, users: [SendbirdUIKit.SBUUser]? = nil, delegate: (any SendbirdUIKit.SBUCreateChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUCreateChannelViewModelDataSource)? = nil) + public init(channelType: SendbirdUIKit.ChannelCreationType = .group, users: [SendbirdUIKit.SBUUser]? = nil, delegate: SendbirdUIKit.SBUCreateChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUCreateChannelViewModelDataSource? = nil) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) public func preLoadNextUserList(indexPath: Foundation.IndexPath) public func resetUserList() @@ -5654,9 +5764,9 @@ open class SBUCreateChannelViewModel { @_Concurrency.MainActor(unsafe) public var imageDownloadTask: Foundation.URLSessionTask? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(urlString: Swift.String, imageSize: CoreFoundation.CGFloat? = SBUMessageProfileView.imageSize) @objc deinit } @@ -5771,9 +5881,9 @@ extension SendbirdUIKit.SBUGroupChannelPushSettingsModule { @_Concurrency.MainActor(unsafe) public var pushTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate)?, dataSource: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource)?, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate?, dataSource: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource?, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil) @@ -5866,7 +5976,7 @@ public protocol SBUGroupChannelListViewModelDelegate : SendbirdUIKit.SBUBaseChan public var channelListQuery: SendbirdChatSDK.GroupChannelListQuery? { get } - public init(delegate: (any SendbirdUIKit.SBUGroupChannelListViewModelDelegate)? = nil, channelListQuery: SendbirdChatSDK.GroupChannelListQuery? = nil) + public init(delegate: SendbirdUIKit.SBUGroupChannelListViewModelDelegate? = nil, channelListQuery: SendbirdChatSDK.GroupChannelListQuery? = nil) @objc deinit override public func initChannelList() override public func loadNextChannelList(reset: Swift.Bool) @@ -6034,7 +6144,8 @@ public class SBUUserMessageCellParams : SendbirdUIKit.SBUBaseMessageCellParams { } final public let useReaction: Swift.Bool final public let withTextView: Swift.Bool - public init(message: SendbirdChatSDK.UserMessage, hideDateView: Swift.Bool, useMessagePosition: Swift.Bool, groupPosition: SendbirdUIKit.MessageGroupPosition = .none, receiptState: SendbirdUIKit.SBUMessageReceiptState = .none, useReaction: Swift.Bool = false, withTextView: Swift.Bool, isThreadMessage: Swift.Bool = false, joinedAt: Swift.Int64 = 0) + final public let shouldHideQuickReply: Swift.Bool + public init(message: SendbirdChatSDK.UserMessage, hideDateView: Swift.Bool, useMessagePosition: Swift.Bool, groupPosition: SendbirdUIKit.MessageGroupPosition = .none, receiptState: SendbirdUIKit.SBUMessageReceiptState = .none, useReaction: Swift.Bool = false, withTextView: Swift.Bool, isThreadMessage: Swift.Bool = false, joinedAt: Swift.Int64 = 0, shouldHideQuickReply: Swift.Bool = true) @objc deinit } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUMessageSearchResultCell : SendbirdUIKit.SBUTableViewCell { @@ -6139,9 +6250,9 @@ extension SendbirdUIKit.SBUBaseSelectUserModule { @_Concurrency.MainActor(unsafe) public var progressTimeLabel: UIKit.UILabel @_Concurrency.MainActor(unsafe) public var statusButton: UIKit.UIButton @_Concurrency.MainActor(unsafe) public var voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo? - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -6420,8 +6531,8 @@ public protocol SBUMessageInputViewDataSource : AnyObject { @_Concurrency.MainActor(unsafe) public var mentionedAttributes: [Foundation.NSAttributedString.Key : Any] { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageInputViewDelegate)? - @_Concurrency.MainActor(unsafe) weak public var datasource: (any SendbirdUIKit.SBUMessageInputViewDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageInputViewDelegate? + @_Concurrency.MainActor(unsafe) weak public var datasource: SendbirdUIKit.SBUMessageInputViewDataSource? @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var overlayTheme: SendbirdUIKit.SBUMessageInputTheme { get set @@ -6438,9 +6549,9 @@ public protocol SBUMessageInputViewDataSource : AnyObject { @_Concurrency.MainActor(unsafe) open func setMode(_ mode: SendbirdUIKit.SBUMessageInputMode, message: SendbirdChatSDK.BaseMessage? = nil) @_Concurrency.MainActor(unsafe) public func startQuoteReplyMode(message: SendbirdChatSDK.BaseMessage) @_Concurrency.MainActor(unsafe) public func endQuoteReplyMode() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @_Concurrency.MainActor(unsafe) public func startEditMode(text: Swift.String) @_Concurrency.MainActor(unsafe) public func endEditMode() @@ -6601,6 +6712,14 @@ extension SendbirdUIKit.SBUChatNotificationChannelModule { @objc @_Concurrency.MainActor(unsafe) public func didSelectRetry() } } +extension SendbirdChatSDK.UserMessage { + public var quickReply: SendbirdUIKit.SBUQuickReplyOptions? { + get + } + public var cardListData: [Swift.String : Any]? { + get + } +} open class SBUCreateOpenChannelModule { public static var HeaderComponent: SendbirdUIKit.SBUCreateOpenChannelModule.Header.Type public static var ProfileInputComponent: SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput.Type @@ -6658,7 +6777,7 @@ open class SBUCreateOpenChannelModule { public var currentRecordAccessStatus: AVFAudio.AVAudioSession.RecordPermission { get } - public func showPermissionAlert(forType permissionType: SendbirdUIKit.SBUPermissionManager.PermissionType, alertViewDelegate: (any SendbirdUIKit.SBUAlertViewDelegate)? = nil, onDismiss: SendbirdUIKit.AlertButtonHandler? = nil) + public func showPermissionAlert(forType permissionType: SendbirdUIKit.SBUPermissionManager.PermissionType, alertViewDelegate: SendbirdUIKit.SBUAlertViewDelegate? = nil, onDismiss: SendbirdUIKit.AlertButtonHandler? = nil) public func requestRecordAcess(onGranted: (() -> Swift.Void)? = nil, onDenied: (() -> Swift.Void)? = nil) public func requestPhotoAccessIfNeeded(completion: @escaping (SendbirdUIKit.SBUPhotoAccessibleStatus) -> Swift.Void) public func requestCameraAccess(for type: AVFoundation.AVMediaType, onGranted: (() -> Swift.Void)? = nil, onDenied: (() -> Swift.Void)? = nil) @@ -6689,6 +6808,30 @@ open class SBUMessageSearchModule { required public init(headerComponent: SendbirdUIKit.SBUMessageSearchModule.Header? = nil, listComponent: SendbirdUIKit.SBUMessageSearchModule.List? = nil) @objc deinit } +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUCardListView : SendbirdUIKit.SBUView { + public struct Metric { + public static var maxWidth: Swift.Double + } + @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView + @_Concurrency.MainActor(unsafe) public var topSpacer: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var items: [SendbirdUIKit.SBUCardViewParams] { + get + } + @_Concurrency.MainActor(unsafe) public var messageId: Swift.Int64? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUCardListViewParams? { + get + } + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUCardListViewParams) + @_Concurrency.MainActor(unsafe) public func createCardViews(items: [SendbirdUIKit.SBUCardViewParams]) -> [SendbirdUIKit.SBUCardView] + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} open class SBUMessageStateViewParams { final public let timestamp: Swift.Int64 final public let sendingState: SendbirdChatSDK.MessageSendingStatus @@ -6717,9 +6860,9 @@ open class SBUMessageStateViewParams { @_Concurrency.MainActor(unsafe) public var timeLabelCustomSize: CoreFoundation.CGSize? @_Concurrency.MainActor(unsafe) public init(sendingState: SendbirdChatSDK.MessageSendingStatus, receiptState: SendbirdUIKit.SBUMessageReceiptState, isQuotedReplyMessage: Swift.Bool = false) @_Concurrency.MainActor(unsafe) public init(isQuotedReplyMessage: Swift.Bool = false) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUMessageStateViewParams) @available(*, deprecated, renamed: "configure(with:)") @_Concurrency.MainActor(unsafe) open func configure(timestamp: Swift.Int64, sendingState: SendbirdChatSDK.MessageSendingStatus, receiptState: SendbirdUIKit.SBUMessageReceiptState?, position: SendbirdUIKit.MessagePosition) @@ -6773,13 +6916,13 @@ extension Foundation.NSArray { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc open func setupViews() - @_Concurrency.MainActor(unsafe) @objc open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func configure(image: UIKit.UIImage?, forMediaType mediaType: Photos.PHAssetMediaType) - @_Concurrency.MainActor(unsafe) @objc open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc open func setupActions() - @_Concurrency.MainActor(unsafe) @objc open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func updateStyles() @objc deinit } open class SBUGroupChannelListModule { @@ -6903,11 +7046,11 @@ public protocol SBURegisterOperatorModuleHeaderDataSource : SendbirdUIKit.SBUBas } extension SendbirdUIKit.SBURegisterOperatorModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource? { get set } @@ -6916,7 +7059,7 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @available(*, unavailable, renamed: "SBURegisterOperatorModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate, dataSource: SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -6965,6 +7108,11 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +public struct SBUCardListData : Swift.Codable where CardData : Swift.Decodable, CardData : Swift.Encodable { + public let recommends: [CardData] + public func encode(to encoder: Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws +} public class SBUUnknownMessageCellParams : SendbirdUIKit.SBUBaseMessageCellParams { public var unknownMessage: SendbirdChatSDK.BaseMessage { get @@ -7003,6 +7151,11 @@ extension SendbirdUIKit.SBUCoverImageView { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +public struct SBUCardListViewParams { + public let messageId: Swift.Int64 + public let items: [SendbirdUIKit.SBUCardViewParams] + public init(messageId: Swift.Int64, items: [SendbirdUIKit.SBUCardViewParams]) +} public protocol SBUBaseChannelModuleHeaderDelegate : SendbirdUIKit.SBUCommonDelegate { func baseChannelModule(_ headerComponent: SendbirdUIKit.SBUBaseChannelModule.Header, didUpdateTitleView titleView: UIKit.UIView?) func baseChannelModule(_ headerComponent: SendbirdUIKit.SBUBaseChannelModule.Header, didUpdateLeftItem leftItem: UIKit.UIBarButtonItem?) @@ -7027,7 +7180,7 @@ extension SendbirdUIKit.SBUBaseChannelModule { } @objc @_Concurrency.MainActor(unsafe) public var titleSpacer: UIKit.UIView @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUBaseChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUBaseChannelModule.Header()") @@ -7054,12 +7207,12 @@ public protocol SBUVoiceMessageInputViewDelegate : AnyObject { } @objc override dynamic public init() @objc deinit - @objc public func setupViews() - @objc public func setupLayouts() - @objc public func updateLayouts() - @objc public func setupStyles() - @objc public func updateStyles() - @objc public func setupActions() + public func setupViews() + public func setupLayouts() + public func updateLayouts() + public func setupStyles() + public func updateStyles() + public func setupActions() } extension SendbirdUIKit.SBUVoiceMessageInputView : SendbirdUIKit.SBUVoiceRecorderDelegate { public func voiceRecorderDidReceiveError(_ recorder: SendbirdUIKit.SBUVoiceRecorder, errorStatus: SendbirdUIKit.VoiceRecorderErrorStatus) @@ -7087,7 +7240,7 @@ public protocol SBUOpenChannelListViewModelDelegate : SendbirdUIKit.SBUBaseChann public var channelListQuery: SendbirdChatSDK.OpenChannelListQuery? { get } - public init(delegate: (any SendbirdUIKit.SBUOpenChannelListViewModelDelegate)?, channelListQuery: SendbirdChatSDK.OpenChannelListQuery?) + public init(delegate: SendbirdUIKit.SBUOpenChannelListViewModelDelegate?, channelListQuery: SendbirdChatSDK.OpenChannelListQuery?) @objc deinit override public func initChannelList() override public func loadNextChannelList(reset: Swift.Bool) @@ -7242,14 +7395,14 @@ extension SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate { } extension SendbirdUIKit.SBUMessageThreadModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelModule.Header, SendbirdUIKit.SBUMessageThreadTitleViewDelegate { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate? { get set } @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? { get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate, parentMessage: SendbirdChatSDK.BaseMessage?, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate, parentMessage: SendbirdChatSDK.BaseMessage?, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -7273,7 +7426,7 @@ extension SendbirdUIKit.SBUActionSheetDelegate { @objc deinit } @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class SBUActionSheet : ObjectiveC.NSObject { - public static func show(items: [SendbirdUIKit.SBUActionSheetItem], cancelItem: SendbirdUIKit.SBUActionSheetItem, identifier: Swift.Int = -1, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, delegate: (any SendbirdUIKit.SBUActionSheetDelegate)? = nil, dismissHandler: (() -> Swift.Void)? = nil) + public static func show(items: [SendbirdUIKit.SBUActionSheetItem], cancelItem: SendbirdUIKit.SBUActionSheetItem, identifier: Swift.Int = -1, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, delegate: SendbirdUIKit.SBUActionSheetDelegate? = nil, dismissHandler: (() -> Swift.Void)? = nil) public static func dismiss() @objc deinit } @@ -7284,11 +7437,11 @@ public protocol SBUGroupChannelPushSettingsViewModelDelegate : SendbirdUIKit.SBU public var currentTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption { get } - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate? = nil) open func changeNotification(_ pushTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption) public func updateChannelPushTriggerOption() @objc deinit @@ -7341,6 +7494,7 @@ public protocol SBUGroupChannelModuleListDelegate : SendbirdUIKit.SBUBaseChannel func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMoreEmojiForCell messageCell: SendbirdUIKit.SBUBaseMessageCell) func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMentionUser user: SendbirdUIKit.SBUUser) func groupChannelModuleDidTapThreadInfoView(_ threadInfoView: SendbirdUIKit.SBUThreadInfoView) + func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didSelectQuickReplyOption text: Swift.String) } public protocol SBUGroupChannelModuleListDataSource : SendbirdUIKit.SBUBaseChannelModuleListDataSource { func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, highlightInfoInTableView tableView: UIKit.UITableView) -> SendbirdUIKit.SBUHighlightMessageInfo? @@ -7366,18 +7520,18 @@ extension SendbirdUIKit.SBUGroupChannelModule { get } @objc @_Concurrency.MainActor(unsafe) public var isHighlightInfoAnimated: Swift.Bool - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelModuleListDataSource? { get set } @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func updateStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme = SBUTheme.componentTheme) @@ -7439,17 +7593,17 @@ extension SendbirdUIKit.SBUGroupChannelModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? + @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? @objc @_Concurrency.MainActor(unsafe) public var mentionManager: SendbirdUIKit.SBUMentionManager? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleInputDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelModuleInputDataSource, mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleInputDelegate, dataSource: SendbirdUIKit.SBUGroupChannelModuleInputDataSource, mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -7615,7 +7769,7 @@ extension SendbirdUIKit.SBUOpenChannelViewController { public protocol SBUBaseChannelListViewModelDelegate : SendbirdUIKit.SBUCommonViewModelDelegate { } @objc open class SBUBaseChannelListViewModel : ObjectiveC.NSObject { - public init(delegate: (any SendbirdUIKit.SBUBaseChannelListViewModelDelegate)?) + public init(delegate: SendbirdUIKit.SBUBaseChannelListViewModelDelegate?) @objc deinit public func initChannelList() public func loadNextChannelList(reset: Swift.Bool) @@ -7695,7 +7849,7 @@ public protocol SBUGroupChannelListModuleHeaderDelegate : SendbirdUIKit.SBUBaseC extension SendbirdUIKit.SBUGroupChannelListModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelListModule.Header { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUGroupChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate? { get set } @@ -7704,7 +7858,7 @@ extension SendbirdUIKit.SBUGroupChannelListModule { @available(*, unavailable, renamed: "SBUGroupChannelListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUGroupChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUGroupChannelListTheme) @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUGroupChannelListTheme? = nil) } } @@ -7805,8 +7959,8 @@ extension Foundation.Date { } @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -7823,9 +7977,9 @@ public typealias SBUNewMessageInfoHandler = () -> Swift.Void @_Concurrency.MainActor(unsafe) public init(type: SendbirdUIKit.NewMessageInfoItemType = .tooltip) @available(*, unavailable, renamed: "SBUNewMessageInfo.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @objc @_Concurrency.MainActor(unsafe) open func onClickNewMessageInfo() @_Concurrency.MainActor(unsafe) open func updateCount(count: Swift.Int, actionHandler: SendbirdUIKit.SBUNewMessageInfoHandler?) @@ -7883,6 +8037,16 @@ open class SBUInviteUserModule { get } @objc @_Concurrency.MainActor(unsafe) public var webView: SendbirdUIKit.SBUMessageWebView + @objc @_Concurrency.MainActor(unsafe) public var shouldHideQuickReply: Swift.Bool { + get + } + @objc @_Concurrency.MainActor(unsafe) public var quickReplyView: SendbirdUIKit.SBUQuickReplyView? { + get + } + @objc @_Concurrency.MainActor(unsafe) public var quickReplySelectHandler: ((_ selectedOptionView: SendbirdUIKit.SBUQuickReplyOptionView) -> Swift.Void)? + @objc @_Concurrency.MainActor(unsafe) public var cardListView: SendbirdUIKit.SBUCardListView? { + get + } @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() @@ -7895,11 +8059,16 @@ open class SBUInviteUserModule { @_Concurrency.MainActor(unsafe) override open func configure(highlightInfo: SendbirdUIKit.SBUHighlightMessageInfo?) @_Concurrency.MainActor(unsafe) @objc override dynamic public func setSelected(_ selected: Swift.Bool, animated: Swift.Bool) @objc @_Concurrency.MainActor(unsafe) open func onTapWebview(sender: UIKit.UITapGestureRecognizer) + @objc @_Concurrency.MainActor(unsafe) public func updateQuickReplyView(with options: [Swift.String]) + @_Concurrency.MainActor(unsafe) public func addCardListView(with items: [SendbirdUIKit.SBUCardViewParams]) @objc @_Concurrency.MainActor(unsafe) open func userMessageTextView(_ textView: SendbirdUIKit.SBUUserMessageTextView, didTapMention user: SendbirdUIKit.SBUUser) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(style: UIKit.UITableViewCell.CellStyle, reuseIdentifier: Swift.String?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +extension SendbirdUIKit.SBUUserMessageCell : SendbirdUIKit.SBUQuickReplyViewDelegate { + @objc @_Concurrency.MainActor(unsafe) dynamic public func quickReplyView(_ view: SendbirdUIKit.SBUQuickReplyView, didSelectOption optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelSettingCell : SendbirdUIKit.SBUBaseChannelSettingCell { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(style: UIKit.UITableViewCell.CellStyle, reuseIdentifier: Swift.String?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @@ -7990,11 +8159,11 @@ public protocol SBUGroupChannelSettingsModuleHeaderDataSource : SendbirdUIKit.SB } extension SendbirdUIKit.SBUGroupChannelSettingsModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelSettingsModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource? { get set } @@ -8003,7 +8172,7 @@ extension SendbirdUIKit.SBUGroupChannelSettingsModule { @available(*, unavailable, renamed: "SBUGroupChannelSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -8097,11 +8266,11 @@ public protocol SBUOpenChannelListModuleListDataSource : SendbirdUIKit.SBUBaseCh extension SendbirdUIKit.SBUOpenChannelListModule { @_inheritsConvenienceInitializers @objc(SBUOpenChannelListModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelListModule.List { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUOpenChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelListModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelListModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelListModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelListModuleListDataSource? { get set } @@ -8113,7 +8282,7 @@ extension SendbirdUIKit.SBUOpenChannelListModule { @available(*, unavailable, renamed: "SBUOpenChannelListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelListModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelListModuleListDataSource, theme: SendbirdUIKit.SBUOpenChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelListModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelListModuleListDataSource, theme: SendbirdUIKit.SBUOpenChannelListTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUOpenChannelListTheme? = nil) } @@ -8141,7 +8310,7 @@ public protocol SBUMentionManagerDataSource : AnyObject { public var defaultTextAttributes: [Foundation.NSAttributedString.Key : Any] public var mentionTextAttributes: [Foundation.NSAttributedString.Key : Any] @objc override dynamic public init() - public func configure(delegate: (any SendbirdUIKit.SBUMentionManagerDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, defaultTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil, mentionTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil) + public func configure(delegate: SendbirdUIKit.SBUMentionManagerDelegate? = nil, dataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, defaultTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil, mentionTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil) @discardableResult public func addMention(at textView: UIKit.UITextView, user: SendbirdUIKit.SBUUser) -> Swift.Bool public func clearMentions(_ mentions: [SendbirdUIKit.SBUMention], with replaceText: Swift.String = "", on textView: UIKit.UITextView, at range: Foundation.NSRange) @@ -8208,7 +8377,7 @@ public protocol SBUMessageThreadViewControllerDelegate : AnyObject { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadViewControllerDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadViewControllerDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public var channel: SendbirdChatSDK.GroupChannel? { @objc get } @@ -8217,7 +8386,7 @@ public protocol SBUMessageThreadViewControllerDelegate : AnyObject { } @available(*, unavailable) @_Concurrency.MainActor(unsafe) required public init(channelURL: Swift.String, startingPoint: Swift.Int64? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil) - @_Concurrency.MainActor(unsafe) required public init(channel: SendbirdChatSDK.GroupChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = nil, delegate: (any SendbirdUIKit.SBUMessageThreadViewControllerDelegate)? = nil, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) + @_Concurrency.MainActor(unsafe) required public init(channel: SendbirdChatSDK.GroupChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = nil, delegate: SendbirdUIKit.SBUMessageThreadViewControllerDelegate? = nil, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarStyle: UIKit.UIStatusBarStyle { @objc get } @@ -8301,7 +8470,7 @@ public protocol SBUFileViewControllerDelegate : AnyObject { @objc set } @objc @_Concurrency.MainActor(unsafe) public var bottomView: UIKit.UIView - @_Concurrency.MainActor(unsafe) required public init(fileMessage: SendbirdChatSDK.FileMessage, delegate: (any SendbirdUIKit.SBUFileViewControllerDelegate)?) + @_Concurrency.MainActor(unsafe) required public init(fileMessage: SendbirdChatSDK.FileMessage, delegate: SendbirdUIKit.SBUFileViewControllerDelegate?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillAppear(_ animated: Swift.Bool) @@ -8387,14 +8556,14 @@ public protocol SBUVoiceRecorderDelegate : AnyObject { public var progressTimer: Foundation.Timer? { get } - public init(delegate: (any SendbirdUIKit.SBUVoiceRecorderDelegate)?) + public init(delegate: SendbirdUIKit.SBUVoiceRecorderDelegate?) @objc deinit @discardableResult public func record() -> Swift.Bool public func stop() public func resetRecorder() @objc public func audioRecorderDidFinishRecording(_ recorder: AVFAudio.AVAudioRecorder, successfully success: Swift.Bool) - @objc public func audioRecorderEncodeErrorDidOccur(_ recorder: AVFAudio.AVAudioRecorder, error: (any Swift.Error)?) + @objc public func audioRecorderEncodeErrorDidOccur(_ recorder: AVFAudio.AVAudioRecorder, error: Swift.Error?) } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUBaseFileContentView : SendbirdUIKit.SBUView { @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme { @@ -8455,9 +8624,9 @@ extension SendbirdUIKit.SBUMessageCellTheme { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "SBUNavigationTitleView.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @_Concurrency.MainActor(unsafe) public func configure(title: Swift.String?) @@ -8504,7 +8673,7 @@ public protocol SBUVoicePlayerDelegate : AnyObject { public var progressTimer: Foundation.Timer? { get } - public init(delegate: (any SendbirdUIKit.SBUVoicePlayerDelegate)?) + public init(delegate: SendbirdUIKit.SBUVoicePlayerDelegate?) public func configure(voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo) @objc deinit public func play(fromTime time: Foundation.TimeInterval = 0) @@ -8512,7 +8681,7 @@ public protocol SBUVoicePlayerDelegate : AnyObject { public func stop() public func resetPlayer() @objc public func audioPlayerDidFinishPlaying(_ player: AVFAudio.AVAudioPlayer, successfully success: Swift.Bool) - @objc public func audioPlayerDecodeErrorDidOccur(_ player: AVFAudio.AVAudioPlayer, error: (any Swift.Error)?) + @objc public func audioPlayerDecodeErrorDidOccur(_ player: AVFAudio.AVAudioPlayer, error: Swift.Error?) } public protocol SBUOpenChannelModuleMediaDelegate : AnyObject { func openChannelModule(_ mediaComponent: SendbirdUIKit.SBUOpenChannelModule.Media, didTapMediaView mediaView: UIKit.UIView) @@ -8521,8 +8690,8 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class Media : UIKit.UIView { @_Concurrency.MainActor(unsafe) public var mediaView: UIKit.UIView @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleMediaDelegate)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleMediaDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleMediaDelegate? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleMediaDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -8544,11 +8713,11 @@ public protocol SBUGroupChannelSettingsModuleListDataSource : SendbirdUIKit.SBUB } extension SendbirdUIKit.SBUGroupChannelSettingsModule { @_inheritsConvenienceInitializers @objc(SBUGroupChannelSettingsModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelSettingsModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource? { get set } @@ -8560,7 +8729,7 @@ extension SendbirdUIKit.SBUGroupChannelSettingsModule { @available(*, unavailable, renamed: "SBUGroupChannelSettingsModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupItems() @_Concurrency.MainActor(unsafe) open func createModerationsItem() -> SendbirdUIKit.SBUChannelSettingItem @@ -8598,13 +8767,13 @@ extension SendbirdUIKit.SBUMessageSearchModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageSearchTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUMessageSearchModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUMessageSearchModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate, theme: SendbirdUIKit.SBUMessageSearchTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate, theme: SendbirdUIKit.SBUMessageSearchTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageSearchTheme? = nil) @@ -8965,7 +9134,7 @@ public class SBUMessageCellTheme { public static var overlay: SendbirdUIKit.SBUMessageCellTheme { get } - public init(backgroundColor: UIKit.UIColor = SBUColorSet.background50, leftBackgroundColor: UIKit.UIColor = SBUColorSet.background100, leftPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary100, rightBackgroundColor: UIKit.UIColor = SBUColorSet.primary300, rightPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary400, openChannelBackgroundColor: UIKit.UIColor = .clear, openChannelPressedBackgroundColor: UIKit.UIColor = SBUColorSet.background100, dateFont: UIKit.UIFont = SBUFontSet.caption1, dateTextColor: UIKit.UIColor = SBUColorSet.ondark01, dateBackgroundColor: UIKit.UIColor = SBUColorSet.overlay02, userPlaceholderBackgroundColor: UIKit.UIColor = SBUColorSet.background300, userPlaceholderTintColor: UIKit.UIColor = SBUColorSet.ondark01, userNameFont: UIKit.UIFont = SBUFontSet.caption1, userNameTextColor: UIKit.UIColor = SBUColorSet.onlight02, currentUserNameTextColor: UIKit.UIColor = SBUColorSet.secondary300, timeFont: UIKit.UIFont = SBUFontSet.caption4, timeTextColor: UIKit.UIColor = SBUColorSet.onlight03, pendingStateColor: UIKit.UIColor = SBUColorSet.primary300, failedStateColor: UIKit.UIColor = SBUColorSet.error300, succeededStateColor: UIKit.UIColor = SBUColorSet.onlight03, readReceiptStateColor: UIKit.UIColor = SBUColorSet.secondary300, deliveryReceiptStateColor: UIKit.UIColor = SBUColorSet.onlight03, userMessageFont: UIKit.UIFont = SBUFontSet.body3, userMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageLeftEditTextColor: UIKit.UIColor = SBUColorSet.onlight02, userMessageLeftHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, userMessageRightEditTextColor: UIKit.UIColor = SBUColorSet.ondark02, userMessageRightHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileIconBackgroundColor: UIKit.UIColor = SBUColorSet.background50, fileImageBackgroundColor: UIKit.UIColor = SBUColorSet.ondark01, fileImageIconColor: UIKit.UIColor = SBUColorSet.onlight02, fileIconColor: UIKit.UIColor = SBUColorSet.primary300, fileMessageNameFont: UIKit.UIFont = SBUFontSet.body3, fileMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, fileMessagePlaceholderColor: UIKit.UIColor = SBUColorSet.onlight02, adminMessageFont: UIKit.UIFont = SBUFontSet.caption2, adminMessageTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescFont: UIKit.UIFont = SBUFontSet.body3, unknownMessageDescLeftTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescRightTextColor: UIKit.UIColor = SBUColorSet.ondark02, ogTitleFont: UIKit.UIFont = SBUFontSet.body2, ogTitleColor: UIKit.UIColor = SBUColorSet.onlight01, ogDescriptionFont: UIKit.UIFont = SBUFontSet.caption2, ogDescriptionColor: UIKit.UIColor = SBUColorSet.onlight01, ogURLAddressFont: UIKit.UIFont = SBUFontSet.caption2, ogURLAddressColor: UIKit.UIColor = SBUColorSet.onlight02, openChannelOGTitleColor: UIKit.UIColor = SBUColorSet.primary300, linkColor: UIKit.UIColor = SBUColorSet.primary300, contentBackgroundColor: UIKit.UIColor = SBUColorSet.background100, pressedContentBackgroundColor: UIKit.UIColor = SBUColorSet.background300, quotedMessageLeftBackgroundColor: UIKit.UIColor = SBUColorSet.background100.withAlphaComponent(0.5), quotedMessageRightBackgroundColor: UIKit.UIColor = SBUColorSet.background100, quotedFileMessageThumbnailColor: UIKit.UIColor = SBUColorSet.onlight02, quotedMessageTextColor: UIKit.UIColor = SBUColorSet.onlight03, quotedMessageTextFont: UIKit.UIFont = SBUFontSet.body3, repliedIconColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextFont: UIKit.UIFont = SBUFontSet.caption1, repliedCountTextColor: UIKit.UIColor = SBUColorSet.primary300, repliedCountTextFont: UIKit.UIFont = SBUFontSet.caption3, repliedUsersMoreIconBackgroundColor: UIKit.UIColor = SBUColorSet.background700.withAlphaComponent(0.64), repliedUsersMoreIconTintColor: UIKit.UIColor = SBUColorSet.ondark01, mentionTextFont: UIKit.UIFont = SBUFontSet.body4, mentionLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, mentionRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, mentionLeftTextBackgroundColor: UIKit.UIColor = .clear, mentionRightTextBackgroundColor: UIKit.UIColor = .clear, buttonBackgroundColor: UIKit.UIColor = SBUColorSet.background200, buttonTitleColor: UIKit.UIColor = SBUColorSet.primary300, sideButtonIconColor: UIKit.UIColor = SBUColorSet.onlight03, newMessageBadgeColor: UIKit.UIColor = SBUColorSet.secondary300, parentInfoBackgroundColor: UIKit.UIColor = SBUColorSet.background50, parentInfoUserNameTextFont: UIKit.UIFont = SBUFontSet.h3, parentInfoUserNameTextColor: UIKit.UIColor = SBUColorSet.onlight01, parentInfoDateFont: UIKit.UIFont = SBUFontSet.caption2, parentInfoDateTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoMoreButtonTintColor: UIKit.UIColor = SBUColorSet.onlight02, parentInfoSeparateBarColor: UIKit.UIColor = SBUColorSet.onlight04, parentInfoReplyCountTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoReplyCountTextFont: UIKit.UIFont = SBUFontSet.body3, parentInfoProgressBackgroundColor: UIKit.UIColor = SBUColorSet.background100, progressTrackTintColor: UIKit.UIColor = SBUColorSet.onlight03, progressTimeFont: UIKit.UIFont = SBUFontSet.body3, progressTimeRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, progressTimeLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, statusButtonBackgroundColor: UIKit.UIColor = SBUColorSet.background50, loadingButtonTintColor: UIKit.UIColor = SBUColorSet.primary200, playButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, pauseButtonTintColor: UIKit.UIColor = SBUColorSet.primary300) + public init(backgroundColor: UIKit.UIColor = SBUColorSet.background50, leftBackgroundColor: UIKit.UIColor = SBUColorSet.background100, leftPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary100, rightBackgroundColor: UIKit.UIColor = SBUColorSet.primary300, rightPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary400, openChannelBackgroundColor: UIKit.UIColor = .clear, openChannelPressedBackgroundColor: UIKit.UIColor = SBUColorSet.background100, dateFont: UIKit.UIFont = SBUFontSet.caption1, dateTextColor: UIKit.UIColor = SBUColorSet.ondark01, dateBackgroundColor: UIKit.UIColor = SBUColorSet.overlay02, userPlaceholderBackgroundColor: UIKit.UIColor = SBUColorSet.background300, userPlaceholderTintColor: UIKit.UIColor = SBUColorSet.ondark01, userNameFont: UIKit.UIFont = SBUFontSet.caption1, userNameTextColor: UIKit.UIColor = SBUColorSet.onlight02, currentUserNameTextColor: UIKit.UIColor = SBUColorSet.secondary300, timeFont: UIKit.UIFont = SBUFontSet.caption4, timeTextColor: UIKit.UIColor = SBUColorSet.onlight03, pendingStateColor: UIKit.UIColor = SBUColorSet.primary300, failedStateColor: UIKit.UIColor = SBUColorSet.error300, succeededStateColor: UIKit.UIColor = SBUColorSet.onlight03, readReceiptStateColor: UIKit.UIColor = SBUColorSet.secondary300, deliveryReceiptStateColor: UIKit.UIColor = SBUColorSet.onlight03, userMessageFont: UIKit.UIFont = SBUFontSet.body3, userMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageLeftEditTextColor: UIKit.UIColor = SBUColorSet.onlight02, userMessageLeftHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, userMessageRightEditTextColor: UIKit.UIColor = SBUColorSet.ondark02, userMessageRightHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileIconBackgroundColor: UIKit.UIColor = SBUColorSet.background50, fileImageBackgroundColor: UIKit.UIColor = SBUColorSet.ondark01, fileImageIconColor: UIKit.UIColor = SBUColorSet.onlight02, fileIconColor: UIKit.UIColor = SBUColorSet.primary300, fileMessageNameFont: UIKit.UIFont = SBUFontSet.body3, fileMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, fileMessagePlaceholderColor: UIKit.UIColor = SBUColorSet.onlight02, adminMessageFont: UIKit.UIFont = SBUFontSet.caption2, adminMessageTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescFont: UIKit.UIFont = SBUFontSet.body3, unknownMessageDescLeftTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescRightTextColor: UIKit.UIColor = SBUColorSet.ondark02, ogTitleFont: UIKit.UIFont = SBUFontSet.body2, ogTitleColor: UIKit.UIColor = SBUColorSet.onlight01, ogDescriptionFont: UIKit.UIFont = SBUFontSet.caption2, ogDescriptionColor: UIKit.UIColor = SBUColorSet.onlight01, ogURLAddressFont: UIKit.UIFont = SBUFontSet.caption2, ogURLAddressColor: UIKit.UIColor = SBUColorSet.onlight02, openChannelOGTitleColor: UIKit.UIColor = SBUColorSet.primary300, linkColor: UIKit.UIColor = SBUColorSet.primary300, contentBackgroundColor: UIKit.UIColor = SBUColorSet.background100, pressedContentBackgroundColor: UIKit.UIColor = SBUColorSet.background300, quotedMessageLeftBackgroundColor: UIKit.UIColor = SBUColorSet.background100.withAlphaComponent(0.5), quotedMessageRightBackgroundColor: UIKit.UIColor = SBUColorSet.background100, quotedFileMessageThumbnailColor: UIKit.UIColor = SBUColorSet.onlight02, quotedMessageTextColor: UIKit.UIColor = SBUColorSet.onlight03, quotedMessageTextFont: UIKit.UIFont = SBUFontSet.body3, repliedIconColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextFont: UIKit.UIFont = SBUFontSet.caption1, repliedCountTextColor: UIKit.UIColor = SBUColorSet.primary300, repliedCountTextFont: UIKit.UIFont = SBUFontSet.caption3, repliedUsersMoreIconBackgroundColor: UIKit.UIColor = SBUColorSet.background700.withAlphaComponent(0.64), repliedUsersMoreIconTintColor: UIKit.UIColor = SBUColorSet.ondark01, mentionTextFont: UIKit.UIFont = SBUFontSet.body4, mentionLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, mentionRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, mentionLeftTextBackgroundColor: UIKit.UIColor = .clear, mentionRightTextBackgroundColor: UIKit.UIColor = .clear, buttonBackgroundColor: UIKit.UIColor = SBUColorSet.background200, buttonTitleColor: UIKit.UIColor = SBUColorSet.primary300, sideButtonIconColor: UIKit.UIColor = SBUColorSet.onlight03, newMessageBadgeColor: UIKit.UIColor = SBUColorSet.secondary300, parentInfoBackgroundColor: UIKit.UIColor = SBUColorSet.background50, parentInfoUserNameTextFont: UIKit.UIFont = SBUFontSet.h3, parentInfoUserNameTextColor: UIKit.UIColor = SBUColorSet.onlight01, parentInfoDateFont: UIKit.UIFont = SBUFontSet.caption2, parentInfoDateTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoMoreButtonTintColor: UIKit.UIColor = SBUColorSet.onlight02, parentInfoSeparateBarColor: UIKit.UIColor = SBUColorSet.onlight04, parentInfoReplyCountTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoReplyCountTextFont: UIKit.UIFont = SBUFontSet.body3, parentInfoProgressBackgroundColor: UIKit.UIColor = SBUColorSet.background100, progressTrackTintColor: UIKit.UIColor = SBUColorSet.onlight03, progressTimeFont: UIKit.UIFont = SBUFontSet.body3, progressTimeRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, progressTimeLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, statusButtonBackgroundColor: UIKit.UIColor = SBUColorSet.background50, loadingButtonTintColor: UIKit.UIColor = SBUColorSet.primary200, playButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, pauseButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, selectableTitleFont: UIKit.UIFont = SBUFontSet.button2) public var backgroundColor: UIKit.UIColor public var leftBackgroundColor: UIKit.UIColor public var leftPressedBackgroundColor: UIKit.UIColor @@ -9062,6 +9231,7 @@ public class SBUMessageCellTheme { public var playerLoadingButtonTintColor: UIKit.UIColor public var playerPlayButtonTintColor: UIKit.UIColor public var playerPauseButtonTintColor: UIKit.UIColor + public var selectableTitleFont: UIKit.UIFont @objc deinit } public class SBUUserListTheme { @@ -9405,8 +9575,8 @@ public class SBUMessageTemplateTheme { @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var widthConstraint: UIKit.NSLayoutConstraint! @_Concurrency.MainActor(unsafe) public var heightConstraint: UIKit.NSLayoutConstraint! - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupSizeContraint() @_Concurrency.MainActor(unsafe) override open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition) @_Concurrency.MainActor(unsafe) public func setImage(_ image: UIKit.UIImage?, size: CoreFoundation.CGSize? = nil) @@ -9500,14 +9670,14 @@ public protocol SBUUserMessageTextViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) public var needsToRemoveMargin: Swift.Bool { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserMessageTextViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserMessageTextViewDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) public init(channelType: SendbirdChatSDK.ChannelType = .group, removeMargin: Swift.Bool = false) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateSideConstraint() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(model: SendbirdUIKit.SBUUserMessageTextViewModel) @objc deinit } @@ -9535,13 +9705,13 @@ extension SendbirdUIKit.SBUModerationsModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUModerationsModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUModerationsModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUModerationsModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUModerationsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUModerationsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUModerationsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil) @@ -9733,8 +9903,8 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { } @_Concurrency.MainActor(unsafe) public var channelNameInputField: SendbirdUIKit.SBUUnderLineTextField @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUCreateOpenChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate)?, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate?, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUCreateOpenChannelTheme? = nil) @@ -9868,11 +10038,11 @@ public protocol SBUMessageThreadViewModelDelegate : SendbirdUIKit.SBUBaseChannel func messageThreadViewModelShouldDismissMessageThread(_ viewModel: SendbirdUIKit.SBUMessageThreadViewModel) } @objc open class SBUMessageThreadViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUMessageThreadViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUMessageThreadViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUMessageThreadViewModelDataSource? { get set } @@ -9882,7 +10052,7 @@ public protocol SBUMessageThreadViewModelDelegate : SendbirdUIKit.SBUBaseChannel public var threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = 0, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: (any SendbirdUIKit.SBUMessageThreadViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUMessageThreadViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = 0, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: SendbirdUIKit.SBUMessageThreadViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUMessageThreadViewModelDataSource? = nil) @objc deinit public func loadChannelAndMessages(channelURL: Swift.String?) override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) @@ -9956,7 +10126,7 @@ extension SendbirdUIKit.SBUUserListModule { } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserListModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserListModuleHeaderDelegate? @objc @_Concurrency.MainActor(unsafe) public var channelType: SendbirdChatSDK.ChannelType @_Concurrency.MainActor(unsafe) public var userListType: SendbirdUIKit.ChannelUserListType { get @@ -9966,7 +10136,7 @@ extension SendbirdUIKit.SBUUserListModule { @available(*, unavailable, renamed: "SBUUserListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUUserListModuleHeaderDelegate, userListType: SendbirdUIKit.ChannelUserListType, channelType: SendbirdChatSDK.ChannelType = .group, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUUserListModuleHeaderDelegate, userListType: SendbirdUIKit.ChannelUserListType, channelType: SendbirdChatSDK.ChannelType = .group, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUUserListTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -10096,7 +10266,7 @@ public enum SBUReplyType : Swift.Int, Swift.Codable { public var filterValue: SendbirdChatSDK.ReplyType { get } - public init(from decoder: any Swift.Decoder) throws + public init(from decoder: Swift.Decoder) throws public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { @@ -10107,13 +10277,18 @@ public enum SBUThreadReplySelectType : Swift.Int, Swift.Codable { case none case parent case thread - public init(from decoder: any Swift.Decoder) throws + public init(from decoder: Swift.Decoder) throws public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } +public struct SBUQuickReplyOptions : Swift.Codable { + public let options: [Swift.String] + public func encode(to encoder: Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws +} public protocol SBUGroupChannelViewModelDataSource : SendbirdUIKit.SBUBaseChannelViewModelDataSource { func groupChannelViewModel(_ viewModel: SendbirdUIKit.SBUGroupChannelViewModel, startingPointIndexPathsForChannel channel: SendbirdChatSDK.GroupChannel?) -> [Foundation.IndexPath]? } @@ -10121,15 +10296,15 @@ public protocol SBUGroupChannelViewModelDelegate : SendbirdUIKit.SBUBaseChannelV func groupChannelViewModel(_ viewModel: SendbirdUIKit.SBUGroupChannelViewModel, didReceiveSuggestedMentions members: [SendbirdUIKit.SBUUser]?) } @objc open class SBUGroupChannelViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUGroupChannelViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: (any SendbirdUIKit.SBUGroupChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUGroupChannelViewModelDataSource)? = nil, displaysLocalCachedListFirst: Swift.Bool = false) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: SendbirdUIKit.SBUGroupChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUGroupChannelViewModelDataSource? = nil, displaysLocalCachedListFirst: Swift.Bool = false) @objc deinit override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) override public func refreshChannel() @@ -10235,10 +10410,10 @@ extension SendbirdUIKit.SBUGroupChannelViewModel : SendbirdChatSDK.GroupChannelD } @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUQuoteMessageInputViewParams) public enum Edge : Swift.Int { case vertical @@ -10261,7 +10436,7 @@ public protocol SBUOpenChannelSettingsModuleHeaderDelegate : SendbirdUIKit.SBUBa } extension SendbirdUIKit.SBUOpenChannelSettingsModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelSettingsModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate? { get set } @@ -10270,7 +10445,7 @@ extension SendbirdUIKit.SBUOpenChannelSettingsModule { @available(*, unavailable, renamed: "SBUOpenChannelSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @_Concurrency.MainActor(unsafe) @objc public func didUpdateRightItem() @@ -10327,11 +10502,11 @@ public protocol SBUCreateChannelModuleListDataSource : SendbirdUIKit.SBUBaseSele } extension SendbirdUIKit.SBUCreateChannelModule { @_inheritsConvenienceInitializers @objc(SBUCreateChannelModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUCreateChannelModuleListDataSource? { get set } @@ -10340,7 +10515,7 @@ extension SendbirdUIKit.SBUCreateChannelModule { @available(*, unavailable, renamed: "SBUCreateChannelModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUCreateChannelModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUCreateChannelModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.swiftdoc b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.swiftdoc index 2180d291e..47f87b9df 100644 Binary files a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.swiftdoc and b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.swiftinterface b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.swiftinterface index 6b346ac20..599c9c47e 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.swiftinterface +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) +// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name SendbirdUIKit // swift-module-flags-ignorable: -enable-bare-slash-regex import AVFAudio @@ -83,9 +83,9 @@ import simd @_Concurrency.MainActor(unsafe) public var stackView: SendbirdUIKit.SBUStackView @_Concurrency.MainActor(unsafe) public var fileImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var fileNameLabel: UIKit.UILabel - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with fileType: Swift.String, fileName: Swift.String, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) open func configure(with messageFileType: SendbirdUIKit.SBUMessageFileType, fileName: Swift.String, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) open func addHighlight(keyword: Swift.String, toAttributedString attributedString: Foundation.NSMutableAttributedString, highlightTextColor: UIKit.UIColor) @@ -134,8 +134,8 @@ extension SendbirdUIKit.SBUBaseChannelModule { @objc @_Concurrency.MainActor(unsafe) public var newMessageInfoView: UIKit.UIView? @objc @_Concurrency.MainActor(unsafe) public var scrollBottomView: UIKit.UIView? @objc @_Concurrency.MainActor(unsafe) public var userProfileView: UIKit.UIView? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelModuleListDataSource? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get @@ -206,8 +206,8 @@ extension SendbirdUIKit.SBUConfig { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } @objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUBaseMessageCell : SendbirdUIKit.SBUTableViewCell, SendbirdUIKit.SBUMessageCellProtocol { @@ -251,7 +251,7 @@ public protocol SBUOpenChannelListModuleHeaderDelegate : SendbirdUIKit.SBUBaseCh extension SendbirdUIKit.SBUOpenChannelListModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelListModule.Header { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUOpenChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate? { get set } @@ -260,7 +260,7 @@ extension SendbirdUIKit.SBUOpenChannelListModule { @available(*, unavailable, renamed: "SBUOpenChannelListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUOpenChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUOpenChannelListTheme) @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUOpenChannelListTheme? = nil) } } @@ -273,7 +273,7 @@ public protocol SBUCommonDelegate : AnyObject { @objc deinit } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUParentMessageInfoReactionView : SendbirdUIKit.SBUMessageReactionView { - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(maxWidth: CoreFoundation.CGFloat, useReaction: Swift.Bool, reactions: [SendbirdChatSDK.Reaction]) @_Concurrency.MainActor(unsafe) override open func getCellSize(count: Swift.Int) -> CoreFoundation.CGSize @_Concurrency.MainActor(unsafe) @objc override open func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int @@ -299,8 +299,8 @@ extension SendbirdUIKit.SBUMessageSearchModule { } @objc @_Concurrency.MainActor(unsafe) public var resultCell: SendbirdUIKit.SBUMessageSearchResultCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageSearchTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageSearchModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageSearchModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageSearchModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageSearchModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var resultList: [SendbirdChatSDK.BaseMessage] { @objc get } @@ -309,7 +309,7 @@ extension SendbirdUIKit.SBUMessageSearchModule { @available(*, unavailable, renamed: "SBUMessageSearchModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageSearchModuleListDelegate, dataSource: any SendbirdUIKit.SBUMessageSearchModuleListDataSource, theme: SendbirdUIKit.SBUMessageSearchTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageSearchModuleListDelegate, dataSource: SendbirdUIKit.SBUMessageSearchModuleListDataSource, theme: SendbirdUIKit.SBUMessageSearchTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageSearchTheme? = nil) @@ -349,18 +349,18 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageThreadModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? + @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? @objc @_Concurrency.MainActor(unsafe) public var mentionManager: SendbirdUIKit.SBUMentionManager? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleInputDelegate, dataSource: any SendbirdUIKit.SBUMessageThreadModuleInputDataSource, parentMessage: SendbirdChatSDK.BaseMessage?, mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleInputDelegate, dataSource: SendbirdUIKit.SBUMessageThreadModuleInputDataSource, parentMessage: SendbirdChatSDK.BaseMessage?, mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -407,11 +407,11 @@ public protocol SBUGroupChannelModuleHeaderDelegate : SendbirdUIKit.SBUBaseChann } extension SendbirdUIKit.SBUGroupChannelModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func onTapLeftBarButton() @_Concurrency.MainActor(unsafe) @objc override open func onTapRightBarButton() @@ -557,11 +557,11 @@ public protocol SBUGroupChannelSettingsViewModelDelegate : SendbirdUIKit.SBUBase @available(*, deprecated, renamed: "SBUGroupChannelSettingsViewModel") public typealias SBUChannelSettingsViewModel = SendbirdUIKit.SBUGroupChannelSettingsViewModel @objc open class SBUGroupChannelSettingsViewModel : SendbirdUIKit.SBUBaseChannelSettingsViewModel { - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String?) override public func updateChannel(channelName: Swift.String? = nil, coverImage: UIKit.UIImage? = nil) @@ -594,15 +594,15 @@ public protocol SBURegisterOperatorViewModelDelegate : SendbirdUIKit.SBUBaseSele public protocol SBURegisterOperatorViewModelDataSource : SendbirdUIKit.SBUBaseSelectUserViewModelDataSource { } @objc open class SBURegisterOperatorViewModel : SendbirdUIKit.SBUBaseSelectUserViewModel { - weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBURegisterOperatorViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBURegisterOperatorViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: (any SendbirdUIKit.SBURegisterOperatorViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBURegisterOperatorViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: SendbirdUIKit.SBURegisterOperatorViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBURegisterOperatorViewModelDataSource? = nil) public func registerAsOperators() public func registerAsOperators(users: [SendbirdUIKit.SBUUser]) public func registerAsOperators(userIds: [Swift.String]) @@ -635,15 +635,15 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.OpenChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleInputDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelModuleInputDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleInputDelegate, dataSource: SendbirdUIKit.SBUOpenChannelModuleInputDataSource, theme: SendbirdUIKit.SBUChannelTheme) @objc @_Concurrency.MainActor(unsafe) open func updateStyles(overlaid: Swift.Bool = false) @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @_Concurrency.MainActor(unsafe) @objc override open func pickVideoFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -677,8 +677,8 @@ extension SendbirdUIKit.SBUBaseSelectUserModule { } @objc @_Concurrency.MainActor(unsafe) public var userCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseSelectUserModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseSelectUserModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseSelectUserModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseSelectUserModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var userList: [SendbirdUIKit.SBUUser]? { @objc get } @@ -713,15 +713,15 @@ public protocol SBUInviteUserViewModelDelegate : SendbirdUIKit.SBUBaseSelectUser public protocol SBUInviteUserViewModelDataSource : SendbirdUIKit.SBUBaseSelectUserViewModelDataSource { } @objc open class SBUInviteUserViewModel : SendbirdUIKit.SBUBaseSelectUserViewModel { - weak public var delegate: (any SendbirdUIKit.SBUInviteUserViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUInviteUserViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUInviteUserViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUInviteUserViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: (any SendbirdUIKit.SBUInviteUserViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUInviteUserViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: SendbirdUIKit.SBUInviteUserViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUInviteUserViewModelDataSource? = nil) public func inviteUsers() public func invite(users: [SendbirdUIKit.SBUUser]) public func invite(userIds: [Swift.String]) @@ -737,9 +737,9 @@ public protocol SBUInviteUserViewModelDataSource : SendbirdUIKit.SBUBaseSelectUs get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(timestamp: Swift.Int64) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -754,11 +754,11 @@ public protocol SBURegisterOperatorModuleListDataSource : SendbirdUIKit.SBUBaseS } extension SendbirdUIKit.SBURegisterOperatorModule { @_inheritsConvenienceInitializers @objc(SBURegisterOperatorModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBURegisterOperatorModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBURegisterOperatorModuleListDataSource? { get set } @@ -767,7 +767,7 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @available(*, unavailable, renamed: "SBURegisterOperatorModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBURegisterOperatorModuleListDelegate, dataSource: any SendbirdUIKit.SBURegisterOperatorModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBURegisterOperatorModuleListDelegate, dataSource: SendbirdUIKit.SBURegisterOperatorModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } @@ -791,29 +791,27 @@ open class SBUModerationsViewModel { public var channelType: SendbirdChatSDK.ChannelType { get } - public init(channel: SendbirdChatSDK.BaseChannel, delegate: (any SendbirdUIKit.SBUModerationsViewModelDelegate)? = nil) - public init(channelURL: Swift.String, channelType: SendbirdChatSDK.ChannelType, delegate: (any SendbirdUIKit.SBUModerationsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel, delegate: SendbirdUIKit.SBUModerationsViewModelDelegate? = nil) + public init(channelURL: Swift.String, channelType: SendbirdChatSDK.ChannelType, delegate: SendbirdUIKit.SBUModerationsViewModelDelegate? = nil) public func loadChannel(channelURL: Swift.String) public func freezeChannel(_ completionHandler: ((Swift.Bool) -> Swift.Void)? = nil) public func unfreezeChannel(_ completionHandler: ((Swift.Bool) -> Swift.Void)? = nil) @objc deinit } -@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUView : UIKit.UIView { +@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUView : UIKit.UIView, SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) @objc dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "init(frame:)") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() @objc deinit } -extension SendbirdUIKit.SBUView : SendbirdUIKit.SBUViewLifeCycle { - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupActions() -} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUMessageReactionView : SendbirdUIKit.SBUView, UIKit.UICollectionViewDelegate, UIKit.UICollectionViewDataSource, UIKit.UICollectionViewDelegateFlowLayout { @_Concurrency.MainActor(unsafe) public var collectionView: UIKit.UICollectionView { get @@ -839,9 +837,9 @@ extension SendbirdUIKit.SBUView : SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "MessageReactionView()") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func hasMoreEmoji(at indexPath: Foundation.IndexPath) -> Swift.Bool @_Concurrency.MainActor(unsafe) open func configure(maxWidth: CoreFoundation.CGFloat, useReaction: Swift.Bool, reactions: [SendbirdChatSDK.Reaction]) @_Concurrency.MainActor(unsafe) open func getCellSize(count: Swift.Int) -> CoreFoundation.CGSize @@ -926,11 +924,11 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var fileMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? @objc @_Concurrency.MainActor(unsafe) public var unknownMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? @objc @_Concurrency.MainActor(unsafe) public var customMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelModuleListDataSource? { get set } @@ -940,7 +938,7 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var isOverlaid: Swift.Bool { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @objc @_Concurrency.MainActor(unsafe) open func updateLayouts() @@ -996,9 +994,9 @@ extension SendbirdUIKit.SBUOpenChannelModule { get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?) @objc deinit @@ -1021,8 +1019,8 @@ extension SendbirdUIKit.SBUBaseChannelListModule { } @objc @_Concurrency.MainActor(unsafe) public var channelCell: SendbirdUIKit.SBUBaseChannelCell? @objc @_Concurrency.MainActor(unsafe) public var customCell: SendbirdUIKit.SBUBaseChannelCell? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelListModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelListModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelListModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelListModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannelList: [SendbirdChatSDK.BaseChannel]? { @objc get } @@ -1120,11 +1118,11 @@ public protocol SBUCreateChannelModuleHeaderDataSource : SendbirdUIKit.SBUBaseSe } extension SendbirdUIKit.SBUCreateChannelModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource? { get set } @@ -1133,7 +1131,7 @@ extension SendbirdUIKit.SBUCreateChannelModule { @available(*, unavailable, renamed: "SBUCreateChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -1147,7 +1145,7 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUEmptyView : SendbirdUIKit.SBUView { @_Concurrency.MainActor(unsafe) public var type: SendbirdUIKit.EmptyViewType - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUEmptyViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUEmptyViewDelegate? @_Concurrency.MainActor(unsafe) public var statusImageView: UIKit.UIImageView { get set @@ -1173,10 +1171,10 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { @available(*, unavailable, renamed: "SBUEmptyView.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateTopAnchorConstraint(constant: CoreFoundation.CGFloat) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func reloadData(_ type: SendbirdUIKit.EmptyViewType) @_Concurrency.MainActor(unsafe) open func updateViews() @objc @_Concurrency.MainActor(unsafe) open func onClickRetry(_ sender: Any) @@ -1188,8 +1186,8 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { public var openChannel: SendbirdUIKit.SBUConfig.OpenChannel @objc override dynamic public init() @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } open class SBUGroupChannelSettingsModule { public static var HeaderComponent: SendbirdUIKit.SBUGroupChannelSettingsModule.Header.Type @@ -1243,13 +1241,13 @@ extension SendbirdUIKit.SBUChannelInfoHeaderViewDelegate { set _modify } - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUChannelInfoHeaderViewDelegate)?) + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUChannelInfoHeaderViewDelegate?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "SBUChannelInfoHeaderView()") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func setupInfoButtonStyle() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?, description: Swift.String?) @@ -1283,15 +1281,62 @@ public class SBUChatNotificationChannelModule { @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView @_Concurrency.MainActor(unsafe) public var fileImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var fileNameLabel: UIKit.UILabel - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) public func addHighlight(keyword: Swift.String, toAttributedString attributedString: Foundation.NSMutableAttributedString, highlightTextColor: UIKit.UIColor) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit } +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUCardView : SendbirdUIKit.SBUView { + public struct Metric { + public static var maxWidth: Swift.Double + public static var textMinWidth: Swift.Double + public static var imageSize: Swift.Double + } + @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme + @_Concurrency.MainActor(unsafe) public var imageURL: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var title: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var subtitle: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var text: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var link: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUCardViewParams? { + get + } + @_Concurrency.MainActor(unsafe) public var contentStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var mainInfoStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var titleStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var titleLabel: UIKit.UILabel + @_Concurrency.MainActor(unsafe) public var subtitleLabel: UIKit.UILabel + @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView { + get + set + } + @_Concurrency.MainActor(unsafe) public var descriptionTextView: UIKit.UITextView + @_Concurrency.MainActor(unsafe) public var textLeftConstraint: UIKit.NSLayoutConstraint? + @_Concurrency.MainActor(unsafe) public var textRightConstraint: UIKit.NSLayoutConstraint? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupActions() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUCardViewParams) + @objc @_Concurrency.MainActor(unsafe) public func openURL() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @_hasMissingDesignatedInitializers public class SBUColorSet { public static var primary100: UIKit.UIColor public static var primary200: UIKit.UIColor @@ -1521,8 +1566,8 @@ extension SendbirdUIKit.SBUConfig { public var camera: SendbirdUIKit.SBUConfig.BaseInput.Camera public var gallery: SendbirdUIKit.SBUConfig.BaseInput.Gallery @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.BaseInput { @@ -1538,8 +1583,8 @@ extension SendbirdUIKit.SBUConfig.BaseInput { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.BaseInput { @@ -1555,8 +1600,8 @@ extension SendbirdUIKit.SBUConfig.BaseInput { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } open class SBUGroupChannelModule { @@ -1598,11 +1643,11 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -2053,13 +2098,13 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUCreateOpenChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUCreateOpenChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUCreateOpenChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUCreateOpenChannelTheme? = nil) @@ -2085,10 +2130,10 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { } @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupSizeContraint() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) open func setImage(_ image: UIKit.UIImage?, size: CoreFoundation.CGSize? = nil) @_Concurrency.MainActor(unsafe) open func setFileIcon() @@ -2117,12 +2162,12 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc open func setupViews() - @_Concurrency.MainActor(unsafe) @objc open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc open func setupActions() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() @_Concurrency.MainActor(unsafe) open func configure(model: SendbirdUIKit.SBUMessageWebViewModel) @objc deinit } @@ -2305,7 +2350,7 @@ open class SBUMessageSearchViewModel { public var messageSearchQuery: SendbirdChatSDK.MessageSearchQuery? { get } - public init(channel: SendbirdChatSDK.BaseChannel, params: SendbirdChatSDK.MessageSearchQueryParams? = nil, delegate: (any SendbirdUIKit.SBUMessageSearchViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel, params: SendbirdChatSDK.MessageSearchQueryParams? = nil, delegate: SendbirdUIKit.SBUMessageSearchViewModelDelegate? = nil) open func search(keyword: Swift.String) public func search(keyword: Swift.String, query: SendbirdChatSDK.MessageSearchQuery) public func loadMore() @@ -2463,13 +2508,13 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule { @objc @_Concurrency.MainActor(unsafe) open func inviteUserViewModel(_ viewModel: SendbirdUIKit.SBUInviteUserViewModel, didInviteUserIds userIds: [Swift.String]) @_Concurrency.MainActor(unsafe) @objc override open func baseSelectedUserViewModel(_ viewModel: SendbirdUIKit.SBUBaseSelectUserViewModel, didUpdateSelectedUsers selectedUsers: [SendbirdUIKit.SBUUser]?) } -@objc public protocol SBUViewLifeCycle { - @objc func setupViews() - @objc func setupStyles() - @objc func updateStyles() - @objc func setupLayouts() - @objc func updateLayouts() - @objc func setupActions() +public protocol SBUViewLifeCycle { + func setupViews() + func setupStyles() + func updateStyles() + func setupLayouts() + func updateLayouts() + func setupActions() } public typealias SBUNewNotificationInfoHandler = () -> Swift.Void extension SendbirdUIKit.SBUBaseChannelViewController { @@ -2550,11 +2595,11 @@ public protocol SBUOpenChannelSettingsModuleListDataSource : SendbirdUIKit.SBUBa } extension SendbirdUIKit.SBUOpenChannelSettingsModule { @_inheritsConvenienceInitializers @objc(SBUOpenChannelSettingsModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelSettingsModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource? { get set } @@ -2566,7 +2611,7 @@ extension SendbirdUIKit.SBUOpenChannelSettingsModule { @available(*, unavailable, renamed: "SBUOpenChannelSettingsModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupItems() @_Concurrency.MainActor(unsafe) open func createModerationsItem() -> SendbirdUIKit.SBUChannelSettingItem @@ -2632,13 +2677,13 @@ extension SendbirdUIKit.SBUGroupChannelPushSettingsModule { } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUGroupChannelPushSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUGroupChannelPushSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -2671,7 +2716,7 @@ extension SendbirdUIKit.SBUSelectablePhotoViewDelegate { set _modify } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUSelectablePhotoViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUSelectablePhotoViewDelegate? @objc @_Concurrency.MainActor(unsafe) public var fetchResult: Photos.PHFetchResult @objc @_Concurrency.MainActor(unsafe) public var columnSize: CoreFoundation.CGSize { @objc get @@ -2704,11 +2749,11 @@ public protocol SBUOpenChannelSettingsViewModelDelegate : SendbirdUIKit.SBUBaseC func openChannelSettingsViewModel(_ viewModel: SendbirdUIKit.SBUOpenChannelSettingsViewModel, didDeleteChannel channel: SendbirdChatSDK.OpenChannel) } @objc open class SBUOpenChannelSettingsViewModel : SendbirdUIKit.SBUBaseChannelSettingsViewModel { - weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String?) override public func updateChannel(channelName: Swift.String? = nil, coverImage: UIKit.UIImage? = nil) @@ -2747,8 +2792,8 @@ extension SendbirdUIKit.SBUOpenChannelSettingsViewModel : SendbirdChatSDK.OpenCh set } public init(wrappedValue: T) - public init(from decoder: any Swift.Decoder) throws - public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws } public protocol SBUQuoteMessageInputViewProtocol : SendbirdUIKit.SBUViewLifeCycle { func configure(with configuration: SendbirdUIKit.SBUQuoteMessageInputViewParams) @@ -2856,9 +2901,9 @@ extension SendbirdUIKit.SBUBaseChannelViewModel : SendbirdChatSDK.BaseChannelDel public static var descBottomMargin: CoreFoundation.CGFloat public static var stackSpacing: CoreFoundation.CGFloat } - @_Concurrency.MainActor(unsafe) @objc override open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func configure(model: SendbirdUIKit.SBUMessageWebViewModel) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init(coder: Foundation.NSCoder) @@ -2871,12 +2916,12 @@ extension SendbirdUIKit.SBUBaseChannelViewModel : SendbirdChatSDK.BaseChannelDel @objc deinit } extension SendbirdUIKit.SBUTableViewCell : SendbirdUIKit.SBUViewLifeCycle { - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupActions() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupViews() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupLayouts() + @objc @_Concurrency.MainActor(unsafe) dynamic open func updateLayouts() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupStyles() + @objc @_Concurrency.MainActor(unsafe) dynamic open func updateStyles() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupActions() } public protocol SBUMessageCellProtocol { func configure(with configuration: SendbirdUIKit.SBUBaseMessageCellParams) @@ -2992,6 +3037,7 @@ public protocol SBUMessageCellProtocol { @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapQuotedMessageView quotedMessageView: SendbirdUIKit.SBUQuotedBaseMessageView) @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMentionUser user: SendbirdUIKit.SBUUser) @objc @_Concurrency.MainActor(unsafe) open func groupChannelModuleDidTapThreadInfoView(_ threadInfoView: SendbirdUIKit.SBUThreadInfoView) + @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didSelectQuickReplyOption text: Swift.String) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModule(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, didTapVoiceMessage fileMessage: SendbirdChatSDK.FileMessage, cell: UIKit.UITableViewCell, forRowAt indexPath: Foundation.IndexPath) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModuleDidTapScrollToButton(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModule(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, didScroll scrollView: UIKit.UIScrollView) @@ -3015,8 +3061,8 @@ public protocol SBUMessageCellProtocol { @objc @_Concurrency.MainActor(unsafe) open func voiceMessageInputView(_ inputView: SendbirdUIKit.SBUVoiceMessageInputView, didTapSend voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo) } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelCommonContentView : SendbirdUIKit.SBUCommonContentView { - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -3138,11 +3184,11 @@ public protocol SBUGroupChannelListModuleListDataSource : SendbirdUIKit.SBUBaseC extension SendbirdUIKit.SBUGroupChannelListModule { @_inheritsConvenienceInitializers @objc(SBUGroupChannelListModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelListModule.List { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUGroupChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelListModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelListModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelListModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelListModuleListDataSource? { get set } @@ -3154,7 +3200,7 @@ extension SendbirdUIKit.SBUGroupChannelListModule { @available(*, unavailable, renamed: "SBUGroupChannelListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelListModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelListModuleListDataSource, theme: SendbirdUIKit.SBUGroupChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelListModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelListModuleListDataSource, theme: SendbirdUIKit.SBUGroupChannelListTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUGroupChannelListTheme? = nil) @objc @_Concurrency.MainActor(unsafe) public func leaveContextualAction(with indexPath: Foundation.IndexPath) -> UIKit.UIContextualAction? @@ -3190,7 +3236,7 @@ public class SBUAlertButtonItem { @objc deinit } @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class SBUAlertView : ObjectiveC.NSObject { - public static func show(title: Swift.String, message: Swift.String? = nil, needInputField: Swift.Bool = false, placeHolder: Swift.String? = "", centerYRatio: CoreFoundation.CGFloat? = 1.0, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, confirmButtonItem: SendbirdUIKit.SBUAlertButtonItem, cancelButtonItem: SendbirdUIKit.SBUAlertButtonItem?, delegate: (any SendbirdUIKit.SBUAlertViewDelegate)? = nil, dismissHandler: (() -> Swift.Void)? = nil) + public static func show(title: Swift.String, message: Swift.String? = nil, needInputField: Swift.Bool = false, placeHolder: Swift.String? = "", centerYRatio: CoreFoundation.CGFloat? = 1.0, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, confirmButtonItem: SendbirdUIKit.SBUAlertButtonItem, cancelButtonItem: SendbirdUIKit.SBUAlertButtonItem?, delegate: SendbirdUIKit.SBUAlertViewDelegate? = nil, dismissHandler: (() -> Swift.Void)? = nil) public static func dismiss() @objc deinit } @@ -3234,7 +3280,7 @@ public protocol SBUBaseSelectUserViewModelDataSource : AnyObject { public var joinedUserIds: Swift.Set { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, inviteListType: SendbirdUIKit.ChannelInviteListType, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: (any SendbirdUIKit.SBUBaseSelectUserViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUBaseSelectUserViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, inviteListType: SendbirdUIKit.ChannelInviteListType, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: SendbirdUIKit.SBUBaseSelectUserViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUBaseSelectUserViewModelDataSource? = nil) public func loadChannel(channelURL: Swift.String, type: SendbirdChatSDK.ChannelType) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) public func preLoadNextUserList(indexPath: Foundation.IndexPath) @@ -3296,8 +3342,8 @@ extension SendbirdUIKit.SBUBaseChannelModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleInputDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelModuleInputDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleInputDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelModuleInputDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -3344,9 +3390,9 @@ extension SendbirdUIKit.SBUBaseChannelModule { @_Concurrency.MainActor(unsafe) public var position: SendbirdUIKit.MessagePosition @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() @_Concurrency.MainActor(unsafe) public func setAxis(_ axis: UIKit.NSLayoutConstraint.Axis) @_Concurrency.MainActor(unsafe) public func addArrangedSubview(_ view: UIKit.UIView) @_Concurrency.MainActor(unsafe) public func removeArrangedSubview(_ view: UIKit.UIView) @@ -3430,9 +3476,9 @@ extension SendbirdUIKit.SBUBaseChannelModule { get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -3493,8 +3539,8 @@ extension SendbirdUIKit.SBUConfig { public var channel: SendbirdUIKit.SBUConfig.OpenChannel.Channel @objc override dynamic public init() @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.OpenChannel { @@ -3506,13 +3552,13 @@ extension SendbirdUIKit.SBUConfig.OpenChannel { } public var input: SendbirdUIKit.SBUConfig.OpenChannel.Channel.Input @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.OpenChannel.Channel { @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class Input : SendbirdUIKit.SBUConfig.BaseInput { - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } } @@ -3531,16 +3577,16 @@ public protocol SBUSuggestedMentionListDelegate : AnyObject { get } @_Concurrency.MainActor(unsafe) public var isLimitGuideEnabled: Swift.Bool - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUSuggestedMentionListDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUSuggestedMentionListDelegate? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme @_Concurrency.MainActor(unsafe) public var showsUserId: Swift.Bool { get set } @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func register(userCell: UIKit.UITableViewCell, nib: UIKit.UINib? = nil) @_Concurrency.MainActor(unsafe) public func register(limitGuideCell: UIKit.UITableViewCell, nib: UIKit.UINib? = nil) @_Concurrency.MainActor(unsafe) @objc open func tableView(_ tableView: UIKit.UITableView, numberOfRowsInSection section: Swift.Int) -> Swift.Int @@ -3563,8 +3609,8 @@ extension SendbirdUIKit.SBUConfig { public var channelList: SendbirdUIKit.SBUConfig.GroupChannel.ChannelList public var setting: SendbirdUIKit.SBUConfig.GroupChannel.Setting @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3604,8 +3650,8 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { } public var input: SendbirdUIKit.SBUConfig.GroupChannel.Channel.Input @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3621,8 +3667,8 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3633,13 +3679,13 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel.Channel { @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class Input : SendbirdUIKit.SBUConfig.BaseInput { - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } } @@ -3654,7 +3700,7 @@ extension SendbirdUIKit.SBUConfig.GroupChannel.Channel { final public let type: SendbirdUIKit.SBUMessageTemplate.ActionType final public let data: Swift.String final public let alterData: Swift.String? - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } public enum ActionType : Swift.String, Swift.Decodable { @@ -3700,11 +3746,11 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var customMessageCell: SendbirdUIKit.SBUBaseMessageCell? { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageThreadModuleListDataSource? { get set } @@ -3714,7 +3760,7 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleListDelegate, dataSource: any SendbirdUIKit.SBUMessageThreadModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleListDelegate, dataSource: SendbirdUIKit.SBUMessageThreadModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -3840,11 +3886,11 @@ public protocol SBUInviteUserModuleHeaderDataSource : SendbirdUIKit.SBUBaseSelec } extension SendbirdUIKit.SBUInviteUserModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUInviteUserModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUInviteUserModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUInviteUserModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUInviteUserModuleHeaderDataSource? { get set } @@ -3853,7 +3899,7 @@ extension SendbirdUIKit.SBUInviteUserModule { @available(*, unavailable, renamed: "SBUInviteUserModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUInviteUserModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUInviteUserModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUInviteUserModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUInviteUserModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -4102,6 +4148,32 @@ extension SendbirdUIKit.SBUInviteUserModule { public static func restoreDefaultIcons() @objc deinit } +public protocol SBUQuickReplyViewDelegate : AnyObject { + func quickReplyView(_ view: SendbirdUIKit.SBUQuickReplyView, didSelectOption optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} +@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) public class SBUQuickReplyView : SendbirdUIKit.SBUView, SendbirdUIKit.SBUQuickReplyOptionViewDelegate { + @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView + @_Concurrency.MainActor(unsafe) public var topSpacer: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var options: [Swift.String] { + get + } + @_Concurrency.MainActor(unsafe) public var messageId: Swift.Int64? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUQuickReplyViewParams? { + get + } + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuickReplyViewDelegate? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUQuickReplyViewParams, delegate: SendbirdUIKit.SBUQuickReplyViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) public func createQuickReplyOptionViews(options: [Swift.String]) -> [SendbirdUIKit.SBUQuickReplyOptionView] + @_Concurrency.MainActor(unsafe) public func quickReplyOptionViewDidSelect(_ optionView: SendbirdUIKit.SBUQuickReplyOptionView) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelContentBaseMessageCell : SendbirdUIKit.SBUOpenChannelBaseMessageCell { @objc @_Concurrency.MainActor(unsafe) public var baseStackView: UIKit.UIStackView { @objc get @@ -4163,8 +4235,8 @@ public protocol SBUUserListViewModelDataSource : AnyObject { func userListViewModel(_ viewModel: SendbirdUIKit.SBUUserListViewModel, nextUserListForChannel channel: SendbirdChatSDK.BaseChannel?) -> [SendbirdUIKit.SBUUser]? } @objc open class SBUUserListViewModel : ObjectiveC.NSObject { - weak public var delegate: (any SendbirdUIKit.SBUUserListViewModelDelegate)? - weak public var dataSource: (any SendbirdUIKit.SBUUserListViewModelDataSource)? + weak public var delegate: SendbirdUIKit.SBUUserListViewModelDelegate? + weak public var dataSource: SendbirdUIKit.SBUUserListViewModelDataSource? public var channel: SendbirdChatSDK.BaseChannel? { get } @@ -4186,7 +4258,7 @@ public protocol SBUUserListViewModelDataSource : AnyObject { public var userListType: SendbirdUIKit.ChannelUserListType { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListType: SendbirdUIKit.ChannelUserListType, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, operatorListQuery: SendbirdChatSDK.OperatorListQuery? = nil, mutedMemberListQuery: SendbirdChatSDK.MemberListQuery? = nil, mutedParticipantListQuery: SendbirdChatSDK.MutedUserListQuery? = nil, bannedUserListQuery: SendbirdChatSDK.BannedUserListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: (any SendbirdUIKit.SBUUserListViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUUserListViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListType: SendbirdUIKit.ChannelUserListType, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, operatorListQuery: SendbirdChatSDK.OperatorListQuery? = nil, mutedMemberListQuery: SendbirdChatSDK.MemberListQuery? = nil, mutedParticipantListQuery: SendbirdChatSDK.MutedUserListQuery? = nil, bannedUserListQuery: SendbirdChatSDK.BannedUserListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: SendbirdUIKit.SBUUserListViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUUserListViewModelDataSource? = nil) @objc deinit public func loadChannel(channelURL: Swift.String, type: SendbirdChatSDK.ChannelType) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) @@ -4238,7 +4310,7 @@ extension SendbirdUIKit.SBUBaseChannelListModule { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelListModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelListModuleHeaderDelegate? @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @objc @_Concurrency.MainActor(unsafe) open func onTapLeftBarButton() @@ -4324,7 +4396,7 @@ public protocol SBUThreadInfoViewProtocol : SendbirdUIKit.SBUViewLifeCycle { set _modify } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUThreadInfoViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUThreadInfoViewDelegate? @_Concurrency.MainActor(unsafe) public var threadInfo: SendbirdChatSDK.ThreadInfo? { get } @@ -4339,11 +4411,11 @@ public protocol SBUThreadInfoViewProtocol : SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) final public let repliedUserLimit: Swift.Int @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageCellTheme) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupActions() @_Concurrency.MainActor(unsafe) open func configure(with message: SendbirdChatSDK.BaseMessage, messagePosition: SendbirdUIKit.MessagePosition) @_Concurrency.MainActor(unsafe) open func setupRepliedUsers() @objc @_Concurrency.MainActor(unsafe) open func onTapThreadInfo(sender: UIKit.UITapGestureRecognizer) @@ -4367,7 +4439,7 @@ public protocol SBUMessageThreadTitleViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadTitleViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadTitleViewDelegate? @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme { get set @@ -4377,10 +4449,10 @@ public protocol SBUMessageThreadTitleViewDelegate : AnyObject { get } @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUMessageThreadTitleViewDelegate)? = nil) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUMessageThreadTitleViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @objc @_Concurrency.MainActor(unsafe) open func onTapChannelName(sender: UIKit.UITapGestureRecognizer) @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?, title: Swift.String?) @@ -4514,11 +4586,11 @@ public protocol SBUCreateChannelTypeSelectorProtocol { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "CreateChannelTypeSelectView.init(delegate:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUCreateChannelTypeSelectorDelegate)?) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUCreateChannelTypeSelectorDelegate?) + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func updateStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func show() @_Concurrency.MainActor(unsafe) open func dismiss() @objc @_Concurrency.MainActor(unsafe) open func onClickClose() @@ -4693,8 +4765,8 @@ public enum UserListType : Swift.Hashable { case mutedMembers @available(*, unavailable, renamed: "banned") case bannedMembers - public static func == (a: SendbirdUIKit.UserListType, b: SendbirdUIKit.UserListType) -> Swift.Bool public func hash(into hasher: inout Swift.Hasher) + public static func == (a: SendbirdUIKit.UserListType, b: SendbirdUIKit.UserListType) -> Swift.Bool public var hashValue: Swift.Int { get } @@ -4931,7 +5003,7 @@ public protocol SBUParentMessageInfoViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles() - @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.BaseMessage?, delegate: (any SendbirdUIKit.SBUParentMessageInfoViewDelegate)?, useReaction: Swift.Bool = false, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) + @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.BaseMessage?, delegate: SendbirdUIKit.SBUParentMessageInfoViewDelegate?, useReaction: Swift.Bool = false, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) @_Concurrency.MainActor(unsafe) open func setupActions() @objc @_Concurrency.MainActor(unsafe) open func onTapUserProfileView(sender: UIKit.UITapGestureRecognizer) @objc @_Concurrency.MainActor(unsafe) open func onTapContentView(sender: UIKit.UITapGestureRecognizer) @@ -4950,13 +5022,14 @@ public protocol SBUParentMessageInfoViewDelegate : AnyObject { public static var fileMessageParamsSendBuilder: ((_ params: SendbirdChatSDK.FileMessageCreateParams?) -> Swift.Void)? public static var voiceFileMessageParamsSendBuilder: ((_ params: SendbirdChatSDK.FileMessageCreateParams?) -> Swift.Void)? public static var messageListParamsBuilder: ((_ params: SendbirdChatSDK.MessageListParams?) -> Swift.Void)? + public static var cardViewParamsCollectionBuilder: ((_ messageData: Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams])? @objc deinit } public protocol SBUCreateOpenChannelViewModelDelegate : SendbirdUIKit.SBUCommonViewModelDelegate { func createOpenChannelViewModel(_ viewModel: SendbirdUIKit.SBUCreateOpenChannelViewModel, didCreateChannel channel: SendbirdChatSDK.BaseChannel?) } open class SBUCreateOpenChannelViewModel { - public init(delegate: (any SendbirdUIKit.SBUCreateOpenChannelViewModelDelegate)?) + public init(delegate: SendbirdUIKit.SBUCreateOpenChannelViewModelDelegate?) public func createChannel(channelName: Swift.String, coverImage: UIKit.UIImage?) public func createChannel(params: SendbirdChatSDK.OpenChannelCreateParams) @objc deinit @@ -4967,6 +5040,27 @@ extension SendbirdUIKit.SBUView { @available(*, unavailable, renamed: "updateLayouts()") @_Concurrency.MainActor(unsafe) public func updateAutolayout() } +public protocol SBUQuickReplyOptionViewDelegate : AnyObject { + func quickReplyOptionViewDidSelect(_ optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUQuickReplyOptionView : SendbirdUIKit.SBUView { + @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme + @_Concurrency.MainActor(unsafe) public var selectableStackView: SendbirdUIKit.SBUSelectableStackView + @_Concurrency.MainActor(unsafe) public var textView: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var text: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuickReplyOptionViewDelegate? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupActions() + @objc @_Concurrency.MainActor(unsafe) public func onSelectOption() + @_Concurrency.MainActor(unsafe) public func configure(with optionText: Swift.String, delegate: SendbirdUIKit.SBUQuickReplyOptionViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @objc public protocol SBUQuotedMessageViewDelegate { @objc func didTapQuotedMessageView(_ quotedMessageView: SendbirdUIKit.SBUQuotedBaseMessageView) } @@ -5011,13 +5105,13 @@ extension SendbirdUIKit.SBUView { set } @_Concurrency.MainActor(unsafe) public var mainContainerView: SendbirdUIKit.SBUSelectableStackView - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUQuotedMessageViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuotedMessageViewDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupActions() @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @objc @_Concurrency.MainActor(unsafe) open func didTapQuotedMessageView(sender: UIKit.UITapGestureRecognizer) @objc deinit @@ -5066,7 +5160,7 @@ extension UIKit.UIImage { @objc get @objc set } - @_Concurrency.MainActor(unsafe) public var quotedMessageView: (any UIKit.UIView & SendbirdUIKit.SBUQuotedMessageViewProtocol)? { + @_Concurrency.MainActor(unsafe) public var quotedMessageView: (UIKit.UIView & SendbirdUIKit.SBUQuotedMessageViewProtocol)? { get set } @@ -5077,7 +5171,7 @@ extension UIKit.UIImage { @objc @_Concurrency.MainActor(unsafe) public var threadInfoSpacing: UIKit.UIView { @objc get } - @_Concurrency.MainActor(unsafe) public var threadInfoView: (any UIKit.UIView & SendbirdUIKit.SBUThreadInfoViewProtocol)? { + @_Concurrency.MainActor(unsafe) public var threadInfoView: (UIKit.UIView & SendbirdUIKit.SBUThreadInfoViewProtocol)? { get set } @@ -5130,12 +5224,12 @@ extension SendbirdUIKit.SBUModerationsModule { @objc @_Concurrency.MainActor(unsafe) public var tableView: UIKit.UITableView @objc @_Concurrency.MainActor(unsafe) public var moderationCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUModerationsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUModerationsModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUModerationsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUModerationsModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUModerationsModuleListDelegate, dataSource: any SendbirdUIKit.SBUModerationsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUModerationsModuleListDelegate, dataSource: SendbirdUIKit.SBUModerationsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc deinit @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @@ -5165,15 +5259,15 @@ extension SendbirdUIKit.SBUOpenChannelViewModelDelegate { public func openChannelViewModel(_ viewModel: SendbirdUIKit.SBUOpenChannelViewModel, userDidExit user: SendbirdChatSDK.User, forChannel channel: SendbirdChatSDK.OpenChannel) } @objc open class SBUOpenChannelViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUOpenChannelViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUOpenChannelViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUOpenChannelViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = nil, delegate: (any SendbirdUIKit.SBUOpenChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUOpenChannelViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = nil, delegate: SendbirdUIKit.SBUOpenChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUOpenChannelViewModelDataSource? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) override public func refreshChannel() @@ -5277,6 +5371,17 @@ extension SendbirdUIKit.SBUGroupChannelViewController { get } } +public struct SBUCardViewParams { + public let imageURL: Swift.String? + public let title: Swift.String? + public let subtitle: Swift.String? + public let description: Swift.String? + public let link: Swift.String? + public var hasLink: Swift.Bool { + get + } + public init(imageURL: Swift.String? = nil, title: Swift.String? = nil, subtitle: Swift.String? = nil, description: Swift.String? = nil, link: Swift.String? = nil) +} public protocol SBUUserListModuleListDelegate : SendbirdUIKit.SBUCommonDelegate { func userListModule(_ listComponent: SendbirdUIKit.SBUUserListModule.List, didSelectRowAt indexPath: Foundation.IndexPath) func userListModule(_ listComponent: SendbirdUIKit.SBUUserListModule.List, didDetectPreloadingPosition indexPath: Foundation.IndexPath) @@ -5298,8 +5403,8 @@ extension SendbirdUIKit.SBUUserListModule { @objc @_Concurrency.MainActor(unsafe) public var userCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserListModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUUserListModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserListModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUUserListModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -5312,7 +5417,7 @@ extension SendbirdUIKit.SBUUserListModule { @available(*, unavailable, renamed: "SBUUserListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUUserListModuleListDelegate, dataSource: any SendbirdUIKit.SBUUserListModuleListDataSource, userListType: SendbirdUIKit.ChannelUserListType, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUUserListModuleListDelegate, dataSource: SendbirdUIKit.SBUUserListModuleListDataSource, userListType: SendbirdUIKit.ChannelUserListType, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUUserListTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -5344,11 +5449,11 @@ public protocol SBUInviteUserModuleListDataSource : SendbirdUIKit.SBUBaseSelectU } extension SendbirdUIKit.SBUInviteUserModule { @_inheritsConvenienceInitializers @objc(SBUInviteUserModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUInviteUserModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUInviteUserModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUInviteUserModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUInviteUserModuleListDataSource? { get set } @@ -5357,7 +5462,7 @@ extension SendbirdUIKit.SBUInviteUserModule { @available(*, unavailable, renamed: "SBUInviteUserModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUInviteUserModuleListDelegate, dataSource: any SendbirdUIKit.SBUInviteUserModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUInviteUserModuleListDelegate, dataSource: SendbirdUIKit.SBUInviteUserModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } @@ -5397,11 +5502,11 @@ extension UIKit.UIStackView { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "UserNameView(username:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func updateLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func updateStyles() @_Concurrency.MainActor(unsafe) open func configure(username: Swift.String, isOverlay: Swift.Bool = false) @_Concurrency.MainActor(unsafe) public func setUsernameColor(_ color: UIKit.UIColor) @objc deinit @@ -5460,6 +5565,11 @@ extension SendbirdUIKit.SBUModerationsViewController { public static func loadAllEmojis(completionHandler: @escaping (_ container: SendbirdChatSDK.EmojiContainer?, _ error: SendbirdChatSDK.SBError?) -> Swift.Void) @objc deinit } +public struct SBUQuickReplyViewParams { + public let messageId: Swift.Int64 + public let replyOptions: [Swift.String] + public init(messageId: Swift.Int64, replyOptions: [Swift.String]) +} open class SBUOpenChannelSettingsModule { public static var HeaderComponent: SendbirdUIKit.SBUOpenChannelSettingsModule.Header.Type public static var ListComponent: SendbirdUIKit.SBUOpenChannelSettingsModule.List.Type @@ -5488,8 +5598,8 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule { @objc @_Concurrency.MainActor(unsafe) public var tableView: UIKit.UITableView @objc @_Concurrency.MainActor(unsafe) public var channelInfoView: UIKit.UIView? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelSettingsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelSettingsModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelSettingsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelSettingsModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -5569,7 +5679,7 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule.List : UIKit.UITableViewDat @_Concurrency.MainActor(unsafe) required public init(channelURL: Swift.String, startingPoint: Swift.Int64? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillAppear(_ animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillTransition(to size: CoreFoundation.CGSize, with coordinator: any UIKit.UIViewControllerTransitionCoordinator) + @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillTransition(to size: CoreFoundation.CGSize, with coordinator: UIKit.UIViewControllerTransitionCoordinator) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillDisappear(_ animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLayoutSubviews() @objc deinit @@ -5615,8 +5725,8 @@ public protocol SBUCreateChannelViewModelDataSource : AnyObject { func createChannelViewModel(_ viewModel: SendbirdUIKit.SBUCreateChannelViewModel, nextUserListForChannelType channelType: SendbirdUIKit.ChannelCreationType) -> [SendbirdUIKit.SBUUser]? } open class SBUCreateChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUCreateChannelViewModelDelegate)? - weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelViewModelDataSource)? + weak public var delegate: SendbirdUIKit.SBUCreateChannelViewModelDelegate? + weak public var dataSource: SendbirdUIKit.SBUCreateChannelViewModelDataSource? public var channelType: SendbirdUIKit.ChannelCreationType { get } @@ -5629,7 +5739,7 @@ open class SBUCreateChannelViewModel { public var userListQuery: SendbirdChatSDK.ApplicationUserListQuery? { get } - public init(channelType: SendbirdUIKit.ChannelCreationType = .group, users: [SendbirdUIKit.SBUUser]? = nil, delegate: (any SendbirdUIKit.SBUCreateChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUCreateChannelViewModelDataSource)? = nil) + public init(channelType: SendbirdUIKit.ChannelCreationType = .group, users: [SendbirdUIKit.SBUUser]? = nil, delegate: SendbirdUIKit.SBUCreateChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUCreateChannelViewModelDataSource? = nil) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) public func preLoadNextUserList(indexPath: Foundation.IndexPath) public func resetUserList() @@ -5654,9 +5764,9 @@ open class SBUCreateChannelViewModel { @_Concurrency.MainActor(unsafe) public var imageDownloadTask: Foundation.URLSessionTask? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(urlString: Swift.String, imageSize: CoreFoundation.CGFloat? = SBUMessageProfileView.imageSize) @objc deinit } @@ -5771,9 +5881,9 @@ extension SendbirdUIKit.SBUGroupChannelPushSettingsModule { @_Concurrency.MainActor(unsafe) public var pushTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate)?, dataSource: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource)?, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate?, dataSource: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource?, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil) @@ -5866,7 +5976,7 @@ public protocol SBUGroupChannelListViewModelDelegate : SendbirdUIKit.SBUBaseChan public var channelListQuery: SendbirdChatSDK.GroupChannelListQuery? { get } - public init(delegate: (any SendbirdUIKit.SBUGroupChannelListViewModelDelegate)? = nil, channelListQuery: SendbirdChatSDK.GroupChannelListQuery? = nil) + public init(delegate: SendbirdUIKit.SBUGroupChannelListViewModelDelegate? = nil, channelListQuery: SendbirdChatSDK.GroupChannelListQuery? = nil) @objc deinit override public func initChannelList() override public func loadNextChannelList(reset: Swift.Bool) @@ -6034,7 +6144,8 @@ public class SBUUserMessageCellParams : SendbirdUIKit.SBUBaseMessageCellParams { } final public let useReaction: Swift.Bool final public let withTextView: Swift.Bool - public init(message: SendbirdChatSDK.UserMessage, hideDateView: Swift.Bool, useMessagePosition: Swift.Bool, groupPosition: SendbirdUIKit.MessageGroupPosition = .none, receiptState: SendbirdUIKit.SBUMessageReceiptState = .none, useReaction: Swift.Bool = false, withTextView: Swift.Bool, isThreadMessage: Swift.Bool = false, joinedAt: Swift.Int64 = 0) + final public let shouldHideQuickReply: Swift.Bool + public init(message: SendbirdChatSDK.UserMessage, hideDateView: Swift.Bool, useMessagePosition: Swift.Bool, groupPosition: SendbirdUIKit.MessageGroupPosition = .none, receiptState: SendbirdUIKit.SBUMessageReceiptState = .none, useReaction: Swift.Bool = false, withTextView: Swift.Bool, isThreadMessage: Swift.Bool = false, joinedAt: Swift.Int64 = 0, shouldHideQuickReply: Swift.Bool = true) @objc deinit } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUMessageSearchResultCell : SendbirdUIKit.SBUTableViewCell { @@ -6139,9 +6250,9 @@ extension SendbirdUIKit.SBUBaseSelectUserModule { @_Concurrency.MainActor(unsafe) public var progressTimeLabel: UIKit.UILabel @_Concurrency.MainActor(unsafe) public var statusButton: UIKit.UIButton @_Concurrency.MainActor(unsafe) public var voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo? - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -6420,8 +6531,8 @@ public protocol SBUMessageInputViewDataSource : AnyObject { @_Concurrency.MainActor(unsafe) public var mentionedAttributes: [Foundation.NSAttributedString.Key : Any] { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageInputViewDelegate)? - @_Concurrency.MainActor(unsafe) weak public var datasource: (any SendbirdUIKit.SBUMessageInputViewDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageInputViewDelegate? + @_Concurrency.MainActor(unsafe) weak public var datasource: SendbirdUIKit.SBUMessageInputViewDataSource? @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var overlayTheme: SendbirdUIKit.SBUMessageInputTheme { get set @@ -6438,9 +6549,9 @@ public protocol SBUMessageInputViewDataSource : AnyObject { @_Concurrency.MainActor(unsafe) open func setMode(_ mode: SendbirdUIKit.SBUMessageInputMode, message: SendbirdChatSDK.BaseMessage? = nil) @_Concurrency.MainActor(unsafe) public func startQuoteReplyMode(message: SendbirdChatSDK.BaseMessage) @_Concurrency.MainActor(unsafe) public func endQuoteReplyMode() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @_Concurrency.MainActor(unsafe) public func startEditMode(text: Swift.String) @_Concurrency.MainActor(unsafe) public func endEditMode() @@ -6601,6 +6712,14 @@ extension SendbirdUIKit.SBUChatNotificationChannelModule { @objc @_Concurrency.MainActor(unsafe) public func didSelectRetry() } } +extension SendbirdChatSDK.UserMessage { + public var quickReply: SendbirdUIKit.SBUQuickReplyOptions? { + get + } + public var cardListData: [Swift.String : Any]? { + get + } +} open class SBUCreateOpenChannelModule { public static var HeaderComponent: SendbirdUIKit.SBUCreateOpenChannelModule.Header.Type public static var ProfileInputComponent: SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput.Type @@ -6658,7 +6777,7 @@ open class SBUCreateOpenChannelModule { public var currentRecordAccessStatus: AVFAudio.AVAudioSession.RecordPermission { get } - public func showPermissionAlert(forType permissionType: SendbirdUIKit.SBUPermissionManager.PermissionType, alertViewDelegate: (any SendbirdUIKit.SBUAlertViewDelegate)? = nil, onDismiss: SendbirdUIKit.AlertButtonHandler? = nil) + public func showPermissionAlert(forType permissionType: SendbirdUIKit.SBUPermissionManager.PermissionType, alertViewDelegate: SendbirdUIKit.SBUAlertViewDelegate? = nil, onDismiss: SendbirdUIKit.AlertButtonHandler? = nil) public func requestRecordAcess(onGranted: (() -> Swift.Void)? = nil, onDenied: (() -> Swift.Void)? = nil) public func requestPhotoAccessIfNeeded(completion: @escaping (SendbirdUIKit.SBUPhotoAccessibleStatus) -> Swift.Void) public func requestCameraAccess(for type: AVFoundation.AVMediaType, onGranted: (() -> Swift.Void)? = nil, onDenied: (() -> Swift.Void)? = nil) @@ -6689,6 +6808,30 @@ open class SBUMessageSearchModule { required public init(headerComponent: SendbirdUIKit.SBUMessageSearchModule.Header? = nil, listComponent: SendbirdUIKit.SBUMessageSearchModule.List? = nil) @objc deinit } +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUCardListView : SendbirdUIKit.SBUView { + public struct Metric { + public static var maxWidth: Swift.Double + } + @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView + @_Concurrency.MainActor(unsafe) public var topSpacer: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var items: [SendbirdUIKit.SBUCardViewParams] { + get + } + @_Concurrency.MainActor(unsafe) public var messageId: Swift.Int64? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUCardListViewParams? { + get + } + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUCardListViewParams) + @_Concurrency.MainActor(unsafe) public func createCardViews(items: [SendbirdUIKit.SBUCardViewParams]) -> [SendbirdUIKit.SBUCardView] + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} open class SBUMessageStateViewParams { final public let timestamp: Swift.Int64 final public let sendingState: SendbirdChatSDK.MessageSendingStatus @@ -6717,9 +6860,9 @@ open class SBUMessageStateViewParams { @_Concurrency.MainActor(unsafe) public var timeLabelCustomSize: CoreFoundation.CGSize? @_Concurrency.MainActor(unsafe) public init(sendingState: SendbirdChatSDK.MessageSendingStatus, receiptState: SendbirdUIKit.SBUMessageReceiptState, isQuotedReplyMessage: Swift.Bool = false) @_Concurrency.MainActor(unsafe) public init(isQuotedReplyMessage: Swift.Bool = false) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUMessageStateViewParams) @available(*, deprecated, renamed: "configure(with:)") @_Concurrency.MainActor(unsafe) open func configure(timestamp: Swift.Int64, sendingState: SendbirdChatSDK.MessageSendingStatus, receiptState: SendbirdUIKit.SBUMessageReceiptState?, position: SendbirdUIKit.MessagePosition) @@ -6773,13 +6916,13 @@ extension Foundation.NSArray { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc open func setupViews() - @_Concurrency.MainActor(unsafe) @objc open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func configure(image: UIKit.UIImage?, forMediaType mediaType: Photos.PHAssetMediaType) - @_Concurrency.MainActor(unsafe) @objc open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc open func setupActions() - @_Concurrency.MainActor(unsafe) @objc open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func updateStyles() @objc deinit } open class SBUGroupChannelListModule { @@ -6903,11 +7046,11 @@ public protocol SBURegisterOperatorModuleHeaderDataSource : SendbirdUIKit.SBUBas } extension SendbirdUIKit.SBURegisterOperatorModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource? { get set } @@ -6916,7 +7059,7 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @available(*, unavailable, renamed: "SBURegisterOperatorModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate, dataSource: SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -6965,6 +7108,11 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +public struct SBUCardListData : Swift.Codable where CardData : Swift.Decodable, CardData : Swift.Encodable { + public let recommends: [CardData] + public func encode(to encoder: Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws +} public class SBUUnknownMessageCellParams : SendbirdUIKit.SBUBaseMessageCellParams { public var unknownMessage: SendbirdChatSDK.BaseMessage { get @@ -7003,6 +7151,11 @@ extension SendbirdUIKit.SBUCoverImageView { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +public struct SBUCardListViewParams { + public let messageId: Swift.Int64 + public let items: [SendbirdUIKit.SBUCardViewParams] + public init(messageId: Swift.Int64, items: [SendbirdUIKit.SBUCardViewParams]) +} public protocol SBUBaseChannelModuleHeaderDelegate : SendbirdUIKit.SBUCommonDelegate { func baseChannelModule(_ headerComponent: SendbirdUIKit.SBUBaseChannelModule.Header, didUpdateTitleView titleView: UIKit.UIView?) func baseChannelModule(_ headerComponent: SendbirdUIKit.SBUBaseChannelModule.Header, didUpdateLeftItem leftItem: UIKit.UIBarButtonItem?) @@ -7027,7 +7180,7 @@ extension SendbirdUIKit.SBUBaseChannelModule { } @objc @_Concurrency.MainActor(unsafe) public var titleSpacer: UIKit.UIView @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUBaseChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUBaseChannelModule.Header()") @@ -7054,12 +7207,12 @@ public protocol SBUVoiceMessageInputViewDelegate : AnyObject { } @objc override dynamic public init() @objc deinit - @objc public func setupViews() - @objc public func setupLayouts() - @objc public func updateLayouts() - @objc public func setupStyles() - @objc public func updateStyles() - @objc public func setupActions() + public func setupViews() + public func setupLayouts() + public func updateLayouts() + public func setupStyles() + public func updateStyles() + public func setupActions() } extension SendbirdUIKit.SBUVoiceMessageInputView : SendbirdUIKit.SBUVoiceRecorderDelegate { public func voiceRecorderDidReceiveError(_ recorder: SendbirdUIKit.SBUVoiceRecorder, errorStatus: SendbirdUIKit.VoiceRecorderErrorStatus) @@ -7087,7 +7240,7 @@ public protocol SBUOpenChannelListViewModelDelegate : SendbirdUIKit.SBUBaseChann public var channelListQuery: SendbirdChatSDK.OpenChannelListQuery? { get } - public init(delegate: (any SendbirdUIKit.SBUOpenChannelListViewModelDelegate)?, channelListQuery: SendbirdChatSDK.OpenChannelListQuery?) + public init(delegate: SendbirdUIKit.SBUOpenChannelListViewModelDelegate?, channelListQuery: SendbirdChatSDK.OpenChannelListQuery?) @objc deinit override public func initChannelList() override public func loadNextChannelList(reset: Swift.Bool) @@ -7242,14 +7395,14 @@ extension SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate { } extension SendbirdUIKit.SBUMessageThreadModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelModule.Header, SendbirdUIKit.SBUMessageThreadTitleViewDelegate { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate? { get set } @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? { get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate, parentMessage: SendbirdChatSDK.BaseMessage?, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate, parentMessage: SendbirdChatSDK.BaseMessage?, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -7273,7 +7426,7 @@ extension SendbirdUIKit.SBUActionSheetDelegate { @objc deinit } @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class SBUActionSheet : ObjectiveC.NSObject { - public static func show(items: [SendbirdUIKit.SBUActionSheetItem], cancelItem: SendbirdUIKit.SBUActionSheetItem, identifier: Swift.Int = -1, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, delegate: (any SendbirdUIKit.SBUActionSheetDelegate)? = nil, dismissHandler: (() -> Swift.Void)? = nil) + public static func show(items: [SendbirdUIKit.SBUActionSheetItem], cancelItem: SendbirdUIKit.SBUActionSheetItem, identifier: Swift.Int = -1, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, delegate: SendbirdUIKit.SBUActionSheetDelegate? = nil, dismissHandler: (() -> Swift.Void)? = nil) public static func dismiss() @objc deinit } @@ -7284,11 +7437,11 @@ public protocol SBUGroupChannelPushSettingsViewModelDelegate : SendbirdUIKit.SBU public var currentTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption { get } - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate? = nil) open func changeNotification(_ pushTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption) public func updateChannelPushTriggerOption() @objc deinit @@ -7341,6 +7494,7 @@ public protocol SBUGroupChannelModuleListDelegate : SendbirdUIKit.SBUBaseChannel func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMoreEmojiForCell messageCell: SendbirdUIKit.SBUBaseMessageCell) func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMentionUser user: SendbirdUIKit.SBUUser) func groupChannelModuleDidTapThreadInfoView(_ threadInfoView: SendbirdUIKit.SBUThreadInfoView) + func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didSelectQuickReplyOption text: Swift.String) } public protocol SBUGroupChannelModuleListDataSource : SendbirdUIKit.SBUBaseChannelModuleListDataSource { func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, highlightInfoInTableView tableView: UIKit.UITableView) -> SendbirdUIKit.SBUHighlightMessageInfo? @@ -7366,18 +7520,18 @@ extension SendbirdUIKit.SBUGroupChannelModule { get } @objc @_Concurrency.MainActor(unsafe) public var isHighlightInfoAnimated: Swift.Bool - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelModuleListDataSource? { get set } @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func updateStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme = SBUTheme.componentTheme) @@ -7439,17 +7593,17 @@ extension SendbirdUIKit.SBUGroupChannelModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? + @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? @objc @_Concurrency.MainActor(unsafe) public var mentionManager: SendbirdUIKit.SBUMentionManager? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleInputDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelModuleInputDataSource, mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleInputDelegate, dataSource: SendbirdUIKit.SBUGroupChannelModuleInputDataSource, mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -7615,7 +7769,7 @@ extension SendbirdUIKit.SBUOpenChannelViewController { public protocol SBUBaseChannelListViewModelDelegate : SendbirdUIKit.SBUCommonViewModelDelegate { } @objc open class SBUBaseChannelListViewModel : ObjectiveC.NSObject { - public init(delegate: (any SendbirdUIKit.SBUBaseChannelListViewModelDelegate)?) + public init(delegate: SendbirdUIKit.SBUBaseChannelListViewModelDelegate?) @objc deinit public func initChannelList() public func loadNextChannelList(reset: Swift.Bool) @@ -7695,7 +7849,7 @@ public protocol SBUGroupChannelListModuleHeaderDelegate : SendbirdUIKit.SBUBaseC extension SendbirdUIKit.SBUGroupChannelListModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelListModule.Header { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUGroupChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate? { get set } @@ -7704,7 +7858,7 @@ extension SendbirdUIKit.SBUGroupChannelListModule { @available(*, unavailable, renamed: "SBUGroupChannelListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUGroupChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUGroupChannelListTheme) @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUGroupChannelListTheme? = nil) } } @@ -7805,8 +7959,8 @@ extension Foundation.Date { } @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -7823,9 +7977,9 @@ public typealias SBUNewMessageInfoHandler = () -> Swift.Void @_Concurrency.MainActor(unsafe) public init(type: SendbirdUIKit.NewMessageInfoItemType = .tooltip) @available(*, unavailable, renamed: "SBUNewMessageInfo.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @objc @_Concurrency.MainActor(unsafe) open func onClickNewMessageInfo() @_Concurrency.MainActor(unsafe) open func updateCount(count: Swift.Int, actionHandler: SendbirdUIKit.SBUNewMessageInfoHandler?) @@ -7883,6 +8037,16 @@ open class SBUInviteUserModule { get } @objc @_Concurrency.MainActor(unsafe) public var webView: SendbirdUIKit.SBUMessageWebView + @objc @_Concurrency.MainActor(unsafe) public var shouldHideQuickReply: Swift.Bool { + get + } + @objc @_Concurrency.MainActor(unsafe) public var quickReplyView: SendbirdUIKit.SBUQuickReplyView? { + get + } + @objc @_Concurrency.MainActor(unsafe) public var quickReplySelectHandler: ((_ selectedOptionView: SendbirdUIKit.SBUQuickReplyOptionView) -> Swift.Void)? + @objc @_Concurrency.MainActor(unsafe) public var cardListView: SendbirdUIKit.SBUCardListView? { + get + } @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() @@ -7895,11 +8059,16 @@ open class SBUInviteUserModule { @_Concurrency.MainActor(unsafe) override open func configure(highlightInfo: SendbirdUIKit.SBUHighlightMessageInfo?) @_Concurrency.MainActor(unsafe) @objc override dynamic public func setSelected(_ selected: Swift.Bool, animated: Swift.Bool) @objc @_Concurrency.MainActor(unsafe) open func onTapWebview(sender: UIKit.UITapGestureRecognizer) + @objc @_Concurrency.MainActor(unsafe) public func updateQuickReplyView(with options: [Swift.String]) + @_Concurrency.MainActor(unsafe) public func addCardListView(with items: [SendbirdUIKit.SBUCardViewParams]) @objc @_Concurrency.MainActor(unsafe) open func userMessageTextView(_ textView: SendbirdUIKit.SBUUserMessageTextView, didTapMention user: SendbirdUIKit.SBUUser) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(style: UIKit.UITableViewCell.CellStyle, reuseIdentifier: Swift.String?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +extension SendbirdUIKit.SBUUserMessageCell : SendbirdUIKit.SBUQuickReplyViewDelegate { + @objc @_Concurrency.MainActor(unsafe) dynamic public func quickReplyView(_ view: SendbirdUIKit.SBUQuickReplyView, didSelectOption optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelSettingCell : SendbirdUIKit.SBUBaseChannelSettingCell { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(style: UIKit.UITableViewCell.CellStyle, reuseIdentifier: Swift.String?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @@ -7990,11 +8159,11 @@ public protocol SBUGroupChannelSettingsModuleHeaderDataSource : SendbirdUIKit.SB } extension SendbirdUIKit.SBUGroupChannelSettingsModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelSettingsModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource? { get set } @@ -8003,7 +8172,7 @@ extension SendbirdUIKit.SBUGroupChannelSettingsModule { @available(*, unavailable, renamed: "SBUGroupChannelSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -8097,11 +8266,11 @@ public protocol SBUOpenChannelListModuleListDataSource : SendbirdUIKit.SBUBaseCh extension SendbirdUIKit.SBUOpenChannelListModule { @_inheritsConvenienceInitializers @objc(SBUOpenChannelListModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelListModule.List { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUOpenChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelListModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelListModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelListModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelListModuleListDataSource? { get set } @@ -8113,7 +8282,7 @@ extension SendbirdUIKit.SBUOpenChannelListModule { @available(*, unavailable, renamed: "SBUOpenChannelListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelListModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelListModuleListDataSource, theme: SendbirdUIKit.SBUOpenChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelListModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelListModuleListDataSource, theme: SendbirdUIKit.SBUOpenChannelListTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUOpenChannelListTheme? = nil) } @@ -8141,7 +8310,7 @@ public protocol SBUMentionManagerDataSource : AnyObject { public var defaultTextAttributes: [Foundation.NSAttributedString.Key : Any] public var mentionTextAttributes: [Foundation.NSAttributedString.Key : Any] @objc override dynamic public init() - public func configure(delegate: (any SendbirdUIKit.SBUMentionManagerDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, defaultTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil, mentionTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil) + public func configure(delegate: SendbirdUIKit.SBUMentionManagerDelegate? = nil, dataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, defaultTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil, mentionTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil) @discardableResult public func addMention(at textView: UIKit.UITextView, user: SendbirdUIKit.SBUUser) -> Swift.Bool public func clearMentions(_ mentions: [SendbirdUIKit.SBUMention], with replaceText: Swift.String = "", on textView: UIKit.UITextView, at range: Foundation.NSRange) @@ -8208,7 +8377,7 @@ public protocol SBUMessageThreadViewControllerDelegate : AnyObject { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadViewControllerDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadViewControllerDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public var channel: SendbirdChatSDK.GroupChannel? { @objc get } @@ -8217,7 +8386,7 @@ public protocol SBUMessageThreadViewControllerDelegate : AnyObject { } @available(*, unavailable) @_Concurrency.MainActor(unsafe) required public init(channelURL: Swift.String, startingPoint: Swift.Int64? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil) - @_Concurrency.MainActor(unsafe) required public init(channel: SendbirdChatSDK.GroupChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = nil, delegate: (any SendbirdUIKit.SBUMessageThreadViewControllerDelegate)? = nil, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) + @_Concurrency.MainActor(unsafe) required public init(channel: SendbirdChatSDK.GroupChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = nil, delegate: SendbirdUIKit.SBUMessageThreadViewControllerDelegate? = nil, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarStyle: UIKit.UIStatusBarStyle { @objc get } @@ -8301,7 +8470,7 @@ public protocol SBUFileViewControllerDelegate : AnyObject { @objc set } @objc @_Concurrency.MainActor(unsafe) public var bottomView: UIKit.UIView - @_Concurrency.MainActor(unsafe) required public init(fileMessage: SendbirdChatSDK.FileMessage, delegate: (any SendbirdUIKit.SBUFileViewControllerDelegate)?) + @_Concurrency.MainActor(unsafe) required public init(fileMessage: SendbirdChatSDK.FileMessage, delegate: SendbirdUIKit.SBUFileViewControllerDelegate?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillAppear(_ animated: Swift.Bool) @@ -8387,14 +8556,14 @@ public protocol SBUVoiceRecorderDelegate : AnyObject { public var progressTimer: Foundation.Timer? { get } - public init(delegate: (any SendbirdUIKit.SBUVoiceRecorderDelegate)?) + public init(delegate: SendbirdUIKit.SBUVoiceRecorderDelegate?) @objc deinit @discardableResult public func record() -> Swift.Bool public func stop() public func resetRecorder() @objc public func audioRecorderDidFinishRecording(_ recorder: AVFAudio.AVAudioRecorder, successfully success: Swift.Bool) - @objc public func audioRecorderEncodeErrorDidOccur(_ recorder: AVFAudio.AVAudioRecorder, error: (any Swift.Error)?) + @objc public func audioRecorderEncodeErrorDidOccur(_ recorder: AVFAudio.AVAudioRecorder, error: Swift.Error?) } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUBaseFileContentView : SendbirdUIKit.SBUView { @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme { @@ -8455,9 +8624,9 @@ extension SendbirdUIKit.SBUMessageCellTheme { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "SBUNavigationTitleView.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @_Concurrency.MainActor(unsafe) public func configure(title: Swift.String?) @@ -8504,7 +8673,7 @@ public protocol SBUVoicePlayerDelegate : AnyObject { public var progressTimer: Foundation.Timer? { get } - public init(delegate: (any SendbirdUIKit.SBUVoicePlayerDelegate)?) + public init(delegate: SendbirdUIKit.SBUVoicePlayerDelegate?) public func configure(voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo) @objc deinit public func play(fromTime time: Foundation.TimeInterval = 0) @@ -8512,7 +8681,7 @@ public protocol SBUVoicePlayerDelegate : AnyObject { public func stop() public func resetPlayer() @objc public func audioPlayerDidFinishPlaying(_ player: AVFAudio.AVAudioPlayer, successfully success: Swift.Bool) - @objc public func audioPlayerDecodeErrorDidOccur(_ player: AVFAudio.AVAudioPlayer, error: (any Swift.Error)?) + @objc public func audioPlayerDecodeErrorDidOccur(_ player: AVFAudio.AVAudioPlayer, error: Swift.Error?) } public protocol SBUOpenChannelModuleMediaDelegate : AnyObject { func openChannelModule(_ mediaComponent: SendbirdUIKit.SBUOpenChannelModule.Media, didTapMediaView mediaView: UIKit.UIView) @@ -8521,8 +8690,8 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class Media : UIKit.UIView { @_Concurrency.MainActor(unsafe) public var mediaView: UIKit.UIView @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleMediaDelegate)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleMediaDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleMediaDelegate? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleMediaDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -8544,11 +8713,11 @@ public protocol SBUGroupChannelSettingsModuleListDataSource : SendbirdUIKit.SBUB } extension SendbirdUIKit.SBUGroupChannelSettingsModule { @_inheritsConvenienceInitializers @objc(SBUGroupChannelSettingsModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelSettingsModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource? { get set } @@ -8560,7 +8729,7 @@ extension SendbirdUIKit.SBUGroupChannelSettingsModule { @available(*, unavailable, renamed: "SBUGroupChannelSettingsModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupItems() @_Concurrency.MainActor(unsafe) open func createModerationsItem() -> SendbirdUIKit.SBUChannelSettingItem @@ -8598,13 +8767,13 @@ extension SendbirdUIKit.SBUMessageSearchModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageSearchTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUMessageSearchModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUMessageSearchModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate, theme: SendbirdUIKit.SBUMessageSearchTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate, theme: SendbirdUIKit.SBUMessageSearchTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageSearchTheme? = nil) @@ -8965,7 +9134,7 @@ public class SBUMessageCellTheme { public static var overlay: SendbirdUIKit.SBUMessageCellTheme { get } - public init(backgroundColor: UIKit.UIColor = SBUColorSet.background50, leftBackgroundColor: UIKit.UIColor = SBUColorSet.background100, leftPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary100, rightBackgroundColor: UIKit.UIColor = SBUColorSet.primary300, rightPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary400, openChannelBackgroundColor: UIKit.UIColor = .clear, openChannelPressedBackgroundColor: UIKit.UIColor = SBUColorSet.background100, dateFont: UIKit.UIFont = SBUFontSet.caption1, dateTextColor: UIKit.UIColor = SBUColorSet.ondark01, dateBackgroundColor: UIKit.UIColor = SBUColorSet.overlay02, userPlaceholderBackgroundColor: UIKit.UIColor = SBUColorSet.background300, userPlaceholderTintColor: UIKit.UIColor = SBUColorSet.ondark01, userNameFont: UIKit.UIFont = SBUFontSet.caption1, userNameTextColor: UIKit.UIColor = SBUColorSet.onlight02, currentUserNameTextColor: UIKit.UIColor = SBUColorSet.secondary300, timeFont: UIKit.UIFont = SBUFontSet.caption4, timeTextColor: UIKit.UIColor = SBUColorSet.onlight03, pendingStateColor: UIKit.UIColor = SBUColorSet.primary300, failedStateColor: UIKit.UIColor = SBUColorSet.error300, succeededStateColor: UIKit.UIColor = SBUColorSet.onlight03, readReceiptStateColor: UIKit.UIColor = SBUColorSet.secondary300, deliveryReceiptStateColor: UIKit.UIColor = SBUColorSet.onlight03, userMessageFont: UIKit.UIFont = SBUFontSet.body3, userMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageLeftEditTextColor: UIKit.UIColor = SBUColorSet.onlight02, userMessageLeftHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, userMessageRightEditTextColor: UIKit.UIColor = SBUColorSet.ondark02, userMessageRightHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileIconBackgroundColor: UIKit.UIColor = SBUColorSet.background50, fileImageBackgroundColor: UIKit.UIColor = SBUColorSet.ondark01, fileImageIconColor: UIKit.UIColor = SBUColorSet.onlight02, fileIconColor: UIKit.UIColor = SBUColorSet.primary300, fileMessageNameFont: UIKit.UIFont = SBUFontSet.body3, fileMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, fileMessagePlaceholderColor: UIKit.UIColor = SBUColorSet.onlight02, adminMessageFont: UIKit.UIFont = SBUFontSet.caption2, adminMessageTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescFont: UIKit.UIFont = SBUFontSet.body3, unknownMessageDescLeftTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescRightTextColor: UIKit.UIColor = SBUColorSet.ondark02, ogTitleFont: UIKit.UIFont = SBUFontSet.body2, ogTitleColor: UIKit.UIColor = SBUColorSet.onlight01, ogDescriptionFont: UIKit.UIFont = SBUFontSet.caption2, ogDescriptionColor: UIKit.UIColor = SBUColorSet.onlight01, ogURLAddressFont: UIKit.UIFont = SBUFontSet.caption2, ogURLAddressColor: UIKit.UIColor = SBUColorSet.onlight02, openChannelOGTitleColor: UIKit.UIColor = SBUColorSet.primary300, linkColor: UIKit.UIColor = SBUColorSet.primary300, contentBackgroundColor: UIKit.UIColor = SBUColorSet.background100, pressedContentBackgroundColor: UIKit.UIColor = SBUColorSet.background300, quotedMessageLeftBackgroundColor: UIKit.UIColor = SBUColorSet.background100.withAlphaComponent(0.5), quotedMessageRightBackgroundColor: UIKit.UIColor = SBUColorSet.background100, quotedFileMessageThumbnailColor: UIKit.UIColor = SBUColorSet.onlight02, quotedMessageTextColor: UIKit.UIColor = SBUColorSet.onlight03, quotedMessageTextFont: UIKit.UIFont = SBUFontSet.body3, repliedIconColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextFont: UIKit.UIFont = SBUFontSet.caption1, repliedCountTextColor: UIKit.UIColor = SBUColorSet.primary300, repliedCountTextFont: UIKit.UIFont = SBUFontSet.caption3, repliedUsersMoreIconBackgroundColor: UIKit.UIColor = SBUColorSet.background700.withAlphaComponent(0.64), repliedUsersMoreIconTintColor: UIKit.UIColor = SBUColorSet.ondark01, mentionTextFont: UIKit.UIFont = SBUFontSet.body4, mentionLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, mentionRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, mentionLeftTextBackgroundColor: UIKit.UIColor = .clear, mentionRightTextBackgroundColor: UIKit.UIColor = .clear, buttonBackgroundColor: UIKit.UIColor = SBUColorSet.background200, buttonTitleColor: UIKit.UIColor = SBUColorSet.primary300, sideButtonIconColor: UIKit.UIColor = SBUColorSet.onlight03, newMessageBadgeColor: UIKit.UIColor = SBUColorSet.secondary300, parentInfoBackgroundColor: UIKit.UIColor = SBUColorSet.background50, parentInfoUserNameTextFont: UIKit.UIFont = SBUFontSet.h3, parentInfoUserNameTextColor: UIKit.UIColor = SBUColorSet.onlight01, parentInfoDateFont: UIKit.UIFont = SBUFontSet.caption2, parentInfoDateTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoMoreButtonTintColor: UIKit.UIColor = SBUColorSet.onlight02, parentInfoSeparateBarColor: UIKit.UIColor = SBUColorSet.onlight04, parentInfoReplyCountTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoReplyCountTextFont: UIKit.UIFont = SBUFontSet.body3, parentInfoProgressBackgroundColor: UIKit.UIColor = SBUColorSet.background100, progressTrackTintColor: UIKit.UIColor = SBUColorSet.onlight03, progressTimeFont: UIKit.UIFont = SBUFontSet.body3, progressTimeRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, progressTimeLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, statusButtonBackgroundColor: UIKit.UIColor = SBUColorSet.background50, loadingButtonTintColor: UIKit.UIColor = SBUColorSet.primary200, playButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, pauseButtonTintColor: UIKit.UIColor = SBUColorSet.primary300) + public init(backgroundColor: UIKit.UIColor = SBUColorSet.background50, leftBackgroundColor: UIKit.UIColor = SBUColorSet.background100, leftPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary100, rightBackgroundColor: UIKit.UIColor = SBUColorSet.primary300, rightPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary400, openChannelBackgroundColor: UIKit.UIColor = .clear, openChannelPressedBackgroundColor: UIKit.UIColor = SBUColorSet.background100, dateFont: UIKit.UIFont = SBUFontSet.caption1, dateTextColor: UIKit.UIColor = SBUColorSet.ondark01, dateBackgroundColor: UIKit.UIColor = SBUColorSet.overlay02, userPlaceholderBackgroundColor: UIKit.UIColor = SBUColorSet.background300, userPlaceholderTintColor: UIKit.UIColor = SBUColorSet.ondark01, userNameFont: UIKit.UIFont = SBUFontSet.caption1, userNameTextColor: UIKit.UIColor = SBUColorSet.onlight02, currentUserNameTextColor: UIKit.UIColor = SBUColorSet.secondary300, timeFont: UIKit.UIFont = SBUFontSet.caption4, timeTextColor: UIKit.UIColor = SBUColorSet.onlight03, pendingStateColor: UIKit.UIColor = SBUColorSet.primary300, failedStateColor: UIKit.UIColor = SBUColorSet.error300, succeededStateColor: UIKit.UIColor = SBUColorSet.onlight03, readReceiptStateColor: UIKit.UIColor = SBUColorSet.secondary300, deliveryReceiptStateColor: UIKit.UIColor = SBUColorSet.onlight03, userMessageFont: UIKit.UIFont = SBUFontSet.body3, userMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageLeftEditTextColor: UIKit.UIColor = SBUColorSet.onlight02, userMessageLeftHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, userMessageRightEditTextColor: UIKit.UIColor = SBUColorSet.ondark02, userMessageRightHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileIconBackgroundColor: UIKit.UIColor = SBUColorSet.background50, fileImageBackgroundColor: UIKit.UIColor = SBUColorSet.ondark01, fileImageIconColor: UIKit.UIColor = SBUColorSet.onlight02, fileIconColor: UIKit.UIColor = SBUColorSet.primary300, fileMessageNameFont: UIKit.UIFont = SBUFontSet.body3, fileMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, fileMessagePlaceholderColor: UIKit.UIColor = SBUColorSet.onlight02, adminMessageFont: UIKit.UIFont = SBUFontSet.caption2, adminMessageTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescFont: UIKit.UIFont = SBUFontSet.body3, unknownMessageDescLeftTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescRightTextColor: UIKit.UIColor = SBUColorSet.ondark02, ogTitleFont: UIKit.UIFont = SBUFontSet.body2, ogTitleColor: UIKit.UIColor = SBUColorSet.onlight01, ogDescriptionFont: UIKit.UIFont = SBUFontSet.caption2, ogDescriptionColor: UIKit.UIColor = SBUColorSet.onlight01, ogURLAddressFont: UIKit.UIFont = SBUFontSet.caption2, ogURLAddressColor: UIKit.UIColor = SBUColorSet.onlight02, openChannelOGTitleColor: UIKit.UIColor = SBUColorSet.primary300, linkColor: UIKit.UIColor = SBUColorSet.primary300, contentBackgroundColor: UIKit.UIColor = SBUColorSet.background100, pressedContentBackgroundColor: UIKit.UIColor = SBUColorSet.background300, quotedMessageLeftBackgroundColor: UIKit.UIColor = SBUColorSet.background100.withAlphaComponent(0.5), quotedMessageRightBackgroundColor: UIKit.UIColor = SBUColorSet.background100, quotedFileMessageThumbnailColor: UIKit.UIColor = SBUColorSet.onlight02, quotedMessageTextColor: UIKit.UIColor = SBUColorSet.onlight03, quotedMessageTextFont: UIKit.UIFont = SBUFontSet.body3, repliedIconColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextFont: UIKit.UIFont = SBUFontSet.caption1, repliedCountTextColor: UIKit.UIColor = SBUColorSet.primary300, repliedCountTextFont: UIKit.UIFont = SBUFontSet.caption3, repliedUsersMoreIconBackgroundColor: UIKit.UIColor = SBUColorSet.background700.withAlphaComponent(0.64), repliedUsersMoreIconTintColor: UIKit.UIColor = SBUColorSet.ondark01, mentionTextFont: UIKit.UIFont = SBUFontSet.body4, mentionLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, mentionRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, mentionLeftTextBackgroundColor: UIKit.UIColor = .clear, mentionRightTextBackgroundColor: UIKit.UIColor = .clear, buttonBackgroundColor: UIKit.UIColor = SBUColorSet.background200, buttonTitleColor: UIKit.UIColor = SBUColorSet.primary300, sideButtonIconColor: UIKit.UIColor = SBUColorSet.onlight03, newMessageBadgeColor: UIKit.UIColor = SBUColorSet.secondary300, parentInfoBackgroundColor: UIKit.UIColor = SBUColorSet.background50, parentInfoUserNameTextFont: UIKit.UIFont = SBUFontSet.h3, parentInfoUserNameTextColor: UIKit.UIColor = SBUColorSet.onlight01, parentInfoDateFont: UIKit.UIFont = SBUFontSet.caption2, parentInfoDateTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoMoreButtonTintColor: UIKit.UIColor = SBUColorSet.onlight02, parentInfoSeparateBarColor: UIKit.UIColor = SBUColorSet.onlight04, parentInfoReplyCountTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoReplyCountTextFont: UIKit.UIFont = SBUFontSet.body3, parentInfoProgressBackgroundColor: UIKit.UIColor = SBUColorSet.background100, progressTrackTintColor: UIKit.UIColor = SBUColorSet.onlight03, progressTimeFont: UIKit.UIFont = SBUFontSet.body3, progressTimeRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, progressTimeLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, statusButtonBackgroundColor: UIKit.UIColor = SBUColorSet.background50, loadingButtonTintColor: UIKit.UIColor = SBUColorSet.primary200, playButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, pauseButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, selectableTitleFont: UIKit.UIFont = SBUFontSet.button2) public var backgroundColor: UIKit.UIColor public var leftBackgroundColor: UIKit.UIColor public var leftPressedBackgroundColor: UIKit.UIColor @@ -9062,6 +9231,7 @@ public class SBUMessageCellTheme { public var playerLoadingButtonTintColor: UIKit.UIColor public var playerPlayButtonTintColor: UIKit.UIColor public var playerPauseButtonTintColor: UIKit.UIColor + public var selectableTitleFont: UIKit.UIFont @objc deinit } public class SBUUserListTheme { @@ -9405,8 +9575,8 @@ public class SBUMessageTemplateTheme { @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var widthConstraint: UIKit.NSLayoutConstraint! @_Concurrency.MainActor(unsafe) public var heightConstraint: UIKit.NSLayoutConstraint! - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupSizeContraint() @_Concurrency.MainActor(unsafe) override open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition) @_Concurrency.MainActor(unsafe) public func setImage(_ image: UIKit.UIImage?, size: CoreFoundation.CGSize? = nil) @@ -9500,14 +9670,14 @@ public protocol SBUUserMessageTextViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) public var needsToRemoveMargin: Swift.Bool { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserMessageTextViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserMessageTextViewDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) public init(channelType: SendbirdChatSDK.ChannelType = .group, removeMargin: Swift.Bool = false) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateSideConstraint() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(model: SendbirdUIKit.SBUUserMessageTextViewModel) @objc deinit } @@ -9535,13 +9705,13 @@ extension SendbirdUIKit.SBUModerationsModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUModerationsModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUModerationsModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUModerationsModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUModerationsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUModerationsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUModerationsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil) @@ -9733,8 +9903,8 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { } @_Concurrency.MainActor(unsafe) public var channelNameInputField: SendbirdUIKit.SBUUnderLineTextField @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUCreateOpenChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate)?, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate?, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUCreateOpenChannelTheme? = nil) @@ -9868,11 +10038,11 @@ public protocol SBUMessageThreadViewModelDelegate : SendbirdUIKit.SBUBaseChannel func messageThreadViewModelShouldDismissMessageThread(_ viewModel: SendbirdUIKit.SBUMessageThreadViewModel) } @objc open class SBUMessageThreadViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUMessageThreadViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUMessageThreadViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUMessageThreadViewModelDataSource? { get set } @@ -9882,7 +10052,7 @@ public protocol SBUMessageThreadViewModelDelegate : SendbirdUIKit.SBUBaseChannel public var threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = 0, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: (any SendbirdUIKit.SBUMessageThreadViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUMessageThreadViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = 0, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: SendbirdUIKit.SBUMessageThreadViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUMessageThreadViewModelDataSource? = nil) @objc deinit public func loadChannelAndMessages(channelURL: Swift.String?) override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) @@ -9956,7 +10126,7 @@ extension SendbirdUIKit.SBUUserListModule { } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserListModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserListModuleHeaderDelegate? @objc @_Concurrency.MainActor(unsafe) public var channelType: SendbirdChatSDK.ChannelType @_Concurrency.MainActor(unsafe) public var userListType: SendbirdUIKit.ChannelUserListType { get @@ -9966,7 +10136,7 @@ extension SendbirdUIKit.SBUUserListModule { @available(*, unavailable, renamed: "SBUUserListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUUserListModuleHeaderDelegate, userListType: SendbirdUIKit.ChannelUserListType, channelType: SendbirdChatSDK.ChannelType = .group, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUUserListModuleHeaderDelegate, userListType: SendbirdUIKit.ChannelUserListType, channelType: SendbirdChatSDK.ChannelType = .group, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUUserListTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -10096,7 +10266,7 @@ public enum SBUReplyType : Swift.Int, Swift.Codable { public var filterValue: SendbirdChatSDK.ReplyType { get } - public init(from decoder: any Swift.Decoder) throws + public init(from decoder: Swift.Decoder) throws public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { @@ -10107,13 +10277,18 @@ public enum SBUThreadReplySelectType : Swift.Int, Swift.Codable { case none case parent case thread - public init(from decoder: any Swift.Decoder) throws + public init(from decoder: Swift.Decoder) throws public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } +public struct SBUQuickReplyOptions : Swift.Codable { + public let options: [Swift.String] + public func encode(to encoder: Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws +} public protocol SBUGroupChannelViewModelDataSource : SendbirdUIKit.SBUBaseChannelViewModelDataSource { func groupChannelViewModel(_ viewModel: SendbirdUIKit.SBUGroupChannelViewModel, startingPointIndexPathsForChannel channel: SendbirdChatSDK.GroupChannel?) -> [Foundation.IndexPath]? } @@ -10121,15 +10296,15 @@ public protocol SBUGroupChannelViewModelDelegate : SendbirdUIKit.SBUBaseChannelV func groupChannelViewModel(_ viewModel: SendbirdUIKit.SBUGroupChannelViewModel, didReceiveSuggestedMentions members: [SendbirdUIKit.SBUUser]?) } @objc open class SBUGroupChannelViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUGroupChannelViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: (any SendbirdUIKit.SBUGroupChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUGroupChannelViewModelDataSource)? = nil, displaysLocalCachedListFirst: Swift.Bool = false) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: SendbirdUIKit.SBUGroupChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUGroupChannelViewModelDataSource? = nil, displaysLocalCachedListFirst: Swift.Bool = false) @objc deinit override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) override public func refreshChannel() @@ -10235,10 +10410,10 @@ extension SendbirdUIKit.SBUGroupChannelViewModel : SendbirdChatSDK.GroupChannelD } @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUQuoteMessageInputViewParams) public enum Edge : Swift.Int { case vertical @@ -10261,7 +10436,7 @@ public protocol SBUOpenChannelSettingsModuleHeaderDelegate : SendbirdUIKit.SBUBa } extension SendbirdUIKit.SBUOpenChannelSettingsModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelSettingsModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate? { get set } @@ -10270,7 +10445,7 @@ extension SendbirdUIKit.SBUOpenChannelSettingsModule { @available(*, unavailable, renamed: "SBUOpenChannelSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @_Concurrency.MainActor(unsafe) @objc public func didUpdateRightItem() @@ -10327,11 +10502,11 @@ public protocol SBUCreateChannelModuleListDataSource : SendbirdUIKit.SBUBaseSele } extension SendbirdUIKit.SBUCreateChannelModule { @_inheritsConvenienceInitializers @objc(SBUCreateChannelModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUCreateChannelModuleListDataSource? { get set } @@ -10340,7 +10515,7 @@ extension SendbirdUIKit.SBUCreateChannelModule { @available(*, unavailable, renamed: "SBUCreateChannelModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUCreateChannelModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUCreateChannelModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/SendbirdUIKit b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/SendbirdUIKit index afcc37d2d..69ada58a4 100755 Binary files a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/SendbirdUIKit and b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/SendbirdUIKit differ diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/_CodeSignature/CodeResources b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/_CodeSignature/CodeResources index 36fdd5622..8ceca642d 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/_CodeSignature/CodeResources +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/_CodeSignature/CodeResources @@ -6,11 +6,11 @@ Assets.car - zLif5njaheFXLJXfycB4wkmYcxo= + Pa/JoihXWB6QTu+wUsphlYtejho= Base.xcconfig - oPehnrXhL1+LVmu45DN/mQ7/MRo= + 3wU24nLP/aMTu4m/+naedHoxtGA= Debug.xcconfig @@ -18,31 +18,31 @@ Headers/SendbirdUIKit-Swift.h - 2fCE9c+RR0i2WWVIVFxesIpafVY= + bd52wR4HfgwuhUeVJkT0oZLHRto= Info.plist - f6D/hC9i2KlJcZsfhY7bOwstTOc= + 48HDjzIgmzisjniYJArsmU1roRA= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.abi.json - T4c3mGriDYqPpWxVop8zRXf5VN4= + wWY72h7GaRsSXvQj3+i+VTKKdH4= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.private.swiftinterface - nWugLmHfz7jpqj5VRgy2SOroNuk= + RLyKJEf9cLUYI3ZlFan+8cfyo0g= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.swiftdoc - MGdmlvRVQmvIbccekWLdTR5bPm0= + CbGAUTHzAyZ1CfQf4hJ1xa07eig= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.swiftinterface - nWugLmHfz7jpqj5VRgy2SOroNuk= + RLyKJEf9cLUYI3ZlFan+8cfyo0g= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.swiftmodule - l+TJwdzMS1r+7az+mY/h/AqMHnk= + torMBzurFWCPf8KCkeVkCMZ6vyw= Modules/module.modulemap @@ -71,14 +71,14 @@ hash2 - GqqFNVvRCZMWOgKRio8rFwu7mpr7BgObmW5lbb9x7n4= + iCkd44zGOcs+XOb49Jkv9HSjFaHSAX3WepYp24kBi80= Base.xcconfig hash2 - vAhM12n3Ni/d5+HH6gX9WBcJb6+2YgRBqpEzlPDKIP4= + 4gu7DLeaNf4TessB6+fnqU7mVrHAIl1L95V11D6kZy0= Debug.xcconfig @@ -92,42 +92,42 @@ hash2 - QfWTTAhB+h+ncRFnD9GQ/4llpFBy7zAYMTPvTyuNYBg= + oxGwQesByIgzNyxFDL0yXDnuZs06s9atIBkW0PliAmw= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.abi.json hash2 - PVXcGnTzXcfEQu1HN8bYxzNZ5bsduHntLsvnxLXZiG0= + gw3r96CGubNCZZdW9erW6jWwM+0AuN/qJgWHf74F3Zg= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.private.swiftinterface hash2 - qgzqywY8DBO+/xo71mPyl5ORvWI39Xr7EKfh4J4ohzg= + ta3NR62ckOyL0nvZT49tYzDrhdaUMsBgF0ZHbBS/SuE= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.swiftdoc hash2 - igwJB+fzPq74LisZ4DPKLQqHvC7Gjh7/p713uKiHnkM= + CplJ55ALWgdI6936HQzjzyJ2cSDvIVs+CdMH1saAMyA= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.swiftinterface hash2 - qgzqywY8DBO+/xo71mPyl5ORvWI39Xr7EKfh4J4ohzg= + ta3NR62ckOyL0nvZT49tYzDrhdaUMsBgF0ZHbBS/SuE= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios.swiftmodule hash2 - PWqEEWho39cBW29O9szPbvhrFgbLV0W4kyRxT34SLS0= + FKUlvAnP5Lx3PY6TGvzl5YHYZcdhPjAV3UQCylfldjI= Modules/module.modulemap diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Info.plist b/Framework/SendbirdUIKit.xcframework/ios-arm64/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Info.plist index 8f0ff3b26..b3c05c898 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Info.plist +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Info.plist @@ -13,7 +13,7 @@ CFBundleSignature ???? CFBundleShortVersionString - 3.6.2 + 3.7.0 CFBundleVersion 1 diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/DWARF/SendbirdUIKit b/Framework/SendbirdUIKit.xcframework/ios-arm64/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/DWARF/SendbirdUIKit index e97f28f16..4a84c414a 100644 Binary files a/Framework/SendbirdUIKit.xcframework/ios-arm64/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/DWARF/SendbirdUIKit and b/Framework/SendbirdUIKit.xcframework/ios-arm64/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/DWARF/SendbirdUIKit differ diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/Swift/aarch64/SendbirdChatSDK.swiftinterface b/Framework/SendbirdUIKit.xcframework/ios-arm64/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/Swift/aarch64/SendbirdChatSDK.swiftinterface index b60d847ff..1b51072c8 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/Swift/aarch64/SendbirdChatSDK.swiftinterface +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/Swift/aarch64/SendbirdChatSDK.swiftinterface @@ -515,6 +515,7 @@ extension SendbirdChatSDK.PreviousMessageListQuery { @objc final public let isActive: Swift.Bool @objc final public let friendDiscoveryKey: Swift.String? @objc final public let friendName: Swift.String? + @objc final public let isBot: Swift.Bool @objc open var preferredLanguages: [Swift.String]? { get } @@ -1563,7 +1564,7 @@ extension SendbirdChatSDK.PollRetrievalParams : Swift.Encodable { get } @objc public var uploadSizeLimit: Swift.Int64 { - get + @objc get } @objc public var premiumFeatureList: [Swift.String]? { get diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Assets.car b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Assets.car index de20304cf..b686af34b 100644 Binary files a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Assets.car and b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Assets.car differ diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Base.xcconfig b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Base.xcconfig index c5519d339..9ea7846e1 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Base.xcconfig +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Base.xcconfig @@ -9,5 +9,5 @@ // Configuration settings file format documentation can be found at: // https://help.apple.com/xcode/#/dev745c5c974 -SBU_APP_VERSION = 3.6.2 +SBU_APP_VERSION = 3.7.0 SENDBIRD_CHAT_SDK_VERSION = 4.9.5 diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Headers/SendbirdUIKit-Swift.h b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Headers/SendbirdUIKit-Swift.h index e936c42e8..cd5871d6d 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Headers/SendbirdUIKit-Swift.h +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Headers/SendbirdUIKit-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) +// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) #ifndef SENDBIRDUIKIT_SWIFT_H #define SENDBIRDUIKIT_SWIFT_H #pragma clang diagnostic push @@ -23,6 +23,7 @@ # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" #if defined(__OBJC__) #include @@ -31,24 +32,10 @@ #include #include #include -#include -#include -#include -#include #else #include #include #include -#include -#endif -#if defined(__cplusplus) -#if __has_include() -# include -#else -# ifndef __ptrauth_swift_value_witness_function_pointer -# define __ptrauth_swift_value_witness_function_pointer(x) -# endif -#endif #endif #if !defined(SWIFT_TYPEDEFS) @@ -84,66 +71,53 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# define SWIFT_CLASS_PROPERTY(...) # endif #endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif + +#if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) #endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif +#if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) #endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif +#if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) #endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif +#if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE #endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif +#if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +#else +# define SWIFT_RELEASES_ARGUMENT #endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif +#if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +#else +# define SWIFT_WARN_UNUSED_RESULT #endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif +#if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +#else +# define SWIFT_NORETURN #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -163,25 +137,28 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) # endif #endif + #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA #endif + #if !defined(SWIFT_EXTENSION) # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) #endif + #if !defined(OBJC_DESIGNATED_INITIALIZER) # if __has_attribute(objc_designated_initializer) # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) # else -# define OBJC_DESIGNATED_INITIALIZER +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) +# if defined(__has_attribute) && __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -210,16 +187,14 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_DEPRECATED_MSG) # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) #endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif +#if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +#else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif #if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction #endif #endif #if !defined(SWIFT_EXTERN) @@ -232,31 +207,26 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_CALL) # define SWIFT_CALL __attribute__((swiftcall)) #endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif #if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) # define SWIFT_NOEXCEPT noexcept +#endif #else +#if !defined(SWIFT_NOEXCEPT) # define SWIFT_NOEXCEPT #endif -#if defined(_WIN32) -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) #endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} #endif #endif #if defined(__OBJC__) -#if __has_feature(objc_modules) +#if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @@ -299,7 +269,6 @@ SWIFT_CLASS("_TtCC13SendbirdUIKit9SBUConfig9BaseInput") @end - @interface BaseInput (SWIFT_EXTENSION(SendbirdUIKit)) @end @@ -307,6 +276,7 @@ SWIFT_CLASS("_TtCC13SendbirdUIKit9SBUConfig9BaseInput") + SWIFT_CLASS("_TtCCC13SendbirdUIKit9SBUConfig12GroupChannel7Channel") @interface Channel : NSObject - (nonnull instancetype)init SWIFT_UNAVAILABLE; @@ -445,20 +415,6 @@ SWIFT_CLASS_NAMED("List") @end -/// A module component that represent the list of SBURegisterOperatorModule. -SWIFT_CLASS_NAMED("List") -@interface SBURegisterOperatorModuleList : SBUBaseChannelSettingsModuleList -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBURegisterOperatorModule.List()'"); -- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBURegisterOperatorModule.List()'"); -- (void)configureCell:(UITableViewCell * _Nullable)cell indexPath:(NSIndexPath * _Nonnull)indexPath; -@end - - -@interface SBURegisterOperatorModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)didSelectRetry; -@end - - /// A module component that represent the list of SBUCreateChannelModule. SWIFT_CLASS_NAMED("List") @interface SBUCreateChannelModuleList : SBUBaseChannelSettingsModuleList @@ -494,6 +450,21 @@ SWIFT_CLASS_NAMED("List") - (void)didSelectRetry; @end + +/// A module component that represent the list of SBURegisterOperatorModule. +SWIFT_CLASS_NAMED("List") +@interface SBURegisterOperatorModuleList : SBUBaseChannelSettingsModuleList +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBURegisterOperatorModule.List()'"); +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBURegisterOperatorModule.List()'"); +- (void)configureCell:(UITableViewCell * _Nullable)cell indexPath:(NSIndexPath * _Nonnull)indexPath; +@end + + +@interface SBURegisterOperatorModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)didSelectRetry; +@end + + @class SBDBaseChannel; @class SBDBaseMessage; @class UIScrollView; @@ -616,6 +587,88 @@ SWIFT_CLASS_NAMED("List") - (enum MessageGroupPosition)getMessageGroupingPositionWithCurrentIndex:(NSInteger)currentIndex SWIFT_WARN_UNUSED_RESULT; @end + +@interface SBUBaseChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +/// Reload data from the channel. This function invokes SBUBaseChannelModuleListDelegate baseChannelModuleDidSelectRetry(_:) +- (void)didSelectRetry; +@end + +@class SBUBaseChannelCell; + +/// A module component that represent the list of SBUBaseChannelListModule. +SWIFT_CLASS_NAMED("List") +@interface SBUBaseChannelListModuleList : UIView +/// The table view to show the list of channels +@property (nonatomic, strong) UITableView * _Nonnull tableView; +/// A view that shows when there is no channel. +@property (nonatomic, strong) UIView * _Nullable emptyView; +/// The channel cell for SBUBaseChannelCell object. Use register(channelCell:nib:) to update. +@property (nonatomic, strong) SBUBaseChannelCell * _Nullable channelCell; +/// The custom channel cell for SBUBaseChannelCell object. Use register(customCell:nib:) to update. +@property (nonatomic, strong) SBUBaseChannelCell * _Nullable customCell; +/// The current channel list object from channelListModule(_:channelsInTableView:) data source method. +@property (nonatomic, readonly, copy) NSArray * _Nullable baseChannelList; +/// If this value is enabled, pull to refresh feature is enabled. +/// since: +/// 3.2.0 +@property (nonatomic) BOOL isPullToRefreshEnabled; +/// Set values of the views in the list component when it needs. +- (void)setupViews; +/// Sets layouts of the views in the list component. +- (void)setupLayouts; +- (void)setupPullToRefresh; +/// Configures cell for a particular row. +/// \param channelCell SBUBaseChannelCell object +/// +/// \param indexPath An index path representing the channelCell +/// +- (void)configureCell:(SBUBaseChannelCell * _Nullable)channelCell indexPath:(NSIndexPath * _Nonnull)indexPath; +/// Registers a custom cell as a channel cell based on SBUBaseChannelCell. +/// important: +/// To register custom channel cell, please use this function before calling configure(delegate:dataSource:theme:) +/// \code +/// listComponent.register(channelCell: MyChannelCell) +/// listComponent.configure(delegate: self, dataSource: self, theme: theme) +/// +/// \endcode\param channelCell Customized channel cell +/// +/// \param nib nib information. If the value is nil, the nib file is not used. +/// +- (void)registerWithChannelCell:(SBUBaseChannelCell * _Nonnull)channelCell nib:(UINib * _Nullable)nib; +/// Registers a additional cell as a custom cell based on SBUBaseChannelCell. +/// important: +/// To register additional channel cell, please use this function before calling configure(delegate:dataSource:theme:) +/// \code +/// listComponent.register(customCell: MyChannelCell) +/// listComponent.configure(delegate: self, dataSource: self, theme: theme) +/// +/// \endcode\param customCell Additional channel cell +/// +/// \param nib nib information. If the value is nil, the nib file is not used. +/// +- (void)registerWithCustomCell:(SBUBaseChannelCell * _Nullable)customCell nib:(UINib * _Nullable)nib; +/// Pulls to refresh. +/// since: +/// 3.2.0 +/// \param sender Sender +/// +- (void)pullToRefresh:(id _Nonnull)sender; +/// Reloads table view. This method corresponds to UITableView reloadData(). +- (void)reloadTableView; +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + + +@interface SBUBaseChannelListModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)didSelectRetry; +@end + + +@interface SBUBaseChannelSettingsModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)didSelectRetry; +@end + @class SBUBaseMessageCell; @class SBDGroupChannel; enum MessagePosition : NSInteger; @@ -761,24 +814,58 @@ SWIFT_CLASS_NAMED("List") @end -@interface SBUBaseChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -/// Reload data from the channel. This function invokes SBUBaseChannelModuleListDelegate baseChannelModuleDidSelectRetry(_:) -- (void)didSelectRetry; -@end -@class SBUQuotedBaseMessageView; - -SWIFT_PROTOCOL("_TtP13SendbirdUIKit28SBUQuotedMessageViewDelegate_") -@protocol SBUQuotedMessageViewDelegate -/// Called when SBUQuotedBaseMessageView was tapped. -/// \param quotedMessageView The tapped quoted message view +/// A module component that represent the list of SBUUserListModule. +SWIFT_CLASS_NAMED("List") +@interface SBUUserListModuleList : UIView +/// The table view that shows the list of the users. +@property (nonatomic, strong) UITableView * _Nonnull tableView; +/// A view that displays when the table view is empty. +@property (nonatomic, strong) UIView * _Nullable emptyView; +/// The user cell for UITableViewCell object. Use register(userCell:nib:) to update. +@property (nonatomic, strong) UITableViewCell * _Nullable userCell; +@property (nonatomic, readonly, strong) SBDBaseChannel * _Nullable channel; +@property (nonatomic, readonly, copy) NSArray * _Nonnull userList; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBUUserListModule.List()'"); +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBUUserListModule.List()'"); +- (void)setupViews; +- (void)setupLayouts; +/// Reloads table view. This method corresponds to UITableView reloadData(). +- (void)reloadTableView; +/// Registers a custom cell as a user cell based on UITableViewCell. +/// important: +/// To register custom user cell, please use this function before calling configure(delegate:dataSource:userListType:theme:componentTheme:) +/// \code +/// listComponent.register(userCell: MyUserCell) +/// listComponent.configure(delegate: self, dataSource: self, userListType: .type, theme: theme, componentTheme: componentTheme) /// -- (void)didTapQuotedMessageView:(SBUQuotedBaseMessageView * _Nonnull)quotedMessageView; +/// \endcode\param channelCell Customized user cell +/// +/// \param nib nib information. If the value is nil, the nib file is not used. +/// +- (void)registerWithUserCell:(UITableViewCell * _Nonnull)userCell nib:(UINib * _Nullable)nib; +/// Configures cell for a particular row. +/// \param cell UITableViewCell object +/// +/// \param indexPath An index path representing the cell +/// +- (void)configureCell:(UITableViewCell * _Nullable)cell indexPath:(NSIndexPath * _Nonnull)indexPath; +/// Sets up the cell’s more menu button action. +/// important: +/// Only for the group channel +/// \param user SBUUser obejct +/// +- (void)setMoreMenuTapAction:(SBUUser * _Nonnull)user; +/// Sets up the user profile tap action. +/// If you do not want to use the user profile function, override this function and leave it empty. +/// \param user SBUUser object used for user profile configuration +/// +- (void)setUserProfileTapAction:(SBUUser * _Nonnull)user; @end -@interface SBUGroupChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)didTapQuotedMessageView:(SBUQuotedBaseMessageView * _Nonnull)quotedMessageView; +@interface SBUUserListModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)didSelectRetry; @end @class SBUMessageSearchResultCell; @@ -834,138 +921,21 @@ SWIFT_CLASS_NAMED("List") - (void)didSelectRetry; @end +@class SBUQuotedBaseMessageView; + +SWIFT_PROTOCOL("_TtP13SendbirdUIKit28SBUQuotedMessageViewDelegate_") +@protocol SBUQuotedMessageViewDelegate +/// Called when SBUQuotedBaseMessageView was tapped. +/// \param quotedMessageView The tapped quoted message view +/// +- (void)didTapQuotedMessageView:(SBUQuotedBaseMessageView * _Nonnull)quotedMessageView; +@end -@interface SBUBaseChannelSettingsModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)didSelectRetry; +@interface SBUGroupChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)didTapQuotedMessageView:(SBUQuotedBaseMessageView * _Nonnull)quotedMessageView; @end -@class SBUBaseChannelCell; - -/// A module component that represent the list of SBUBaseChannelListModule. -SWIFT_CLASS_NAMED("List") -@interface SBUBaseChannelListModuleList : UIView -/// The table view to show the list of channels -@property (nonatomic, strong) UITableView * _Nonnull tableView; -/// A view that shows when there is no channel. -@property (nonatomic, strong) UIView * _Nullable emptyView; -/// The channel cell for SBUBaseChannelCell object. Use register(channelCell:nib:) to update. -@property (nonatomic, strong) SBUBaseChannelCell * _Nullable channelCell; -/// The custom channel cell for SBUBaseChannelCell object. Use register(customCell:nib:) to update. -@property (nonatomic, strong) SBUBaseChannelCell * _Nullable customCell; -/// The current channel list object from channelListModule(_:channelsInTableView:) data source method. -@property (nonatomic, readonly, copy) NSArray * _Nullable baseChannelList; -/// If this value is enabled, pull to refresh feature is enabled. -/// since: -/// 3.2.0 -@property (nonatomic) BOOL isPullToRefreshEnabled; -/// Set values of the views in the list component when it needs. -- (void)setupViews; -/// Sets layouts of the views in the list component. -- (void)setupLayouts; -- (void)setupPullToRefresh; -/// Configures cell for a particular row. -/// \param channelCell SBUBaseChannelCell object -/// -/// \param indexPath An index path representing the channelCell -/// -- (void)configureCell:(SBUBaseChannelCell * _Nullable)channelCell indexPath:(NSIndexPath * _Nonnull)indexPath; -/// Registers a custom cell as a channel cell based on SBUBaseChannelCell. -/// important: -/// To register custom channel cell, please use this function before calling configure(delegate:dataSource:theme:) -/// \code -/// listComponent.register(channelCell: MyChannelCell) -/// listComponent.configure(delegate: self, dataSource: self, theme: theme) -/// -/// \endcode\param channelCell Customized channel cell -/// -/// \param nib nib information. If the value is nil, the nib file is not used. -/// -- (void)registerWithChannelCell:(SBUBaseChannelCell * _Nonnull)channelCell nib:(UINib * _Nullable)nib; -/// Registers a additional cell as a custom cell based on SBUBaseChannelCell. -/// important: -/// To register additional channel cell, please use this function before calling configure(delegate:dataSource:theme:) -/// \code -/// listComponent.register(customCell: MyChannelCell) -/// listComponent.configure(delegate: self, dataSource: self, theme: theme) -/// -/// \endcode\param customCell Additional channel cell -/// -/// \param nib nib information. If the value is nil, the nib file is not used. -/// -- (void)registerWithCustomCell:(SBUBaseChannelCell * _Nullable)customCell nib:(UINib * _Nullable)nib; -/// Pulls to refresh. -/// since: -/// 3.2.0 -/// \param sender Sender -/// -- (void)pullToRefresh:(id _Nonnull)sender; -/// Reloads table view. This method corresponds to UITableView reloadData(). -- (void)reloadTableView; -- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface SBUBaseChannelListModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)didSelectRetry; -@end - - -/// A module component that represent the list of SBUUserListModule. -SWIFT_CLASS_NAMED("List") -@interface SBUUserListModuleList : UIView -/// The table view that shows the list of the users. -@property (nonatomic, strong) UITableView * _Nonnull tableView; -/// A view that displays when the table view is empty. -@property (nonatomic, strong) UIView * _Nullable emptyView; -/// The user cell for UITableViewCell object. Use register(userCell:nib:) to update. -@property (nonatomic, strong) UITableViewCell * _Nullable userCell; -@property (nonatomic, readonly, strong) SBDBaseChannel * _Nullable channel; -@property (nonatomic, readonly, copy) NSArray * _Nonnull userList; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBUUserListModule.List()'"); -- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBUUserListModule.List()'"); -- (void)setupViews; -- (void)setupLayouts; -/// Reloads table view. This method corresponds to UITableView reloadData(). -- (void)reloadTableView; -/// Registers a custom cell as a user cell based on UITableViewCell. -/// important: -/// To register custom user cell, please use this function before calling configure(delegate:dataSource:userListType:theme:componentTheme:) -/// \code -/// listComponent.register(userCell: MyUserCell) -/// listComponent.configure(delegate: self, dataSource: self, userListType: .type, theme: theme, componentTheme: componentTheme) -/// -/// \endcode\param channelCell Customized user cell -/// -/// \param nib nib information. If the value is nil, the nib file is not used. -/// -- (void)registerWithUserCell:(UITableViewCell * _Nonnull)userCell nib:(UINib * _Nullable)nib; -/// Configures cell for a particular row. -/// \param cell UITableViewCell object -/// -/// \param indexPath An index path representing the cell -/// -- (void)configureCell:(UITableViewCell * _Nullable)cell indexPath:(NSIndexPath * _Nonnull)indexPath; -/// Sets up the cell’s more menu button action. -/// important: -/// Only for the group channel -/// \param user SBUUser obejct -/// -- (void)setMoreMenuTapAction:(SBUUser * _Nonnull)user; -/// Sets up the user profile tap action. -/// If you do not want to use the user profile function, override this function and leave it empty. -/// \param user SBUUser object used for user profile configuration -/// -- (void)setUserProfileTapAction:(SBUUser * _Nonnull)user; -@end - - -@interface SBUUserListModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)didSelectRetry; -@end - - @interface SBURegisterOperatorModuleList (SWIFT_EXTENSION(SendbirdUIKit)) - (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; @@ -973,13 +943,13 @@ SWIFT_CLASS_NAMED("List") @end -@interface SBUInviteUserModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +@interface SBUCreateChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) - (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; - (void)tableView:(UITableView * _Nonnull)tableView willDisplayCell:(UITableViewCell * _Nonnull)cell forRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; @end -@interface SBUCreateChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +@interface SBUInviteUserModuleList (SWIFT_EXTENSION(SendbirdUIKit)) - (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; - (void)tableView:(UITableView * _Nonnull)tableView willDisplayCell:(UITableViewCell * _Nonnull)cell forRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; @end @@ -1075,6 +1045,7 @@ SWIFT_CLASS_NAMED("List") + /// A module component that represent the list of SBUOpenChannelListModule. SWIFT_CLASS_NAMED("List") @interface SBUOpenChannelListModuleList : SBUBaseChannelListModuleList @@ -1095,7 +1066,6 @@ SWIFT_CLASS_NAMED("List") - (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; @end - @class SBUParentMessageInfoView; /// A module component that represent the list of SBUMessageThreadModule. @@ -1240,23 +1210,6 @@ SWIFT_CLASS_NAMED("List") @end -/// A module component that represent the list of SBUGroupChannelPushSettingsModule. -SWIFT_CLASS_NAMED("List") -@interface SBUGroupChannelPushSettingsModuleList : UIView -- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface SBUGroupChannelPushSettingsModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (UIView * _Nullable)tableView:(UITableView * _Nonnull)tableView viewForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; -- (CGFloat)tableView:(UITableView * _Nonnull)tableView heightForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; -- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; -- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; -- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; -@end - - @interface List (SWIFT_EXTENSION(SendbirdUIKit)) - (UIView * _Nullable)tableView:(UITableView * _Nonnull)tableView viewForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; - (CGFloat)tableView:(UITableView * _Nonnull)tableView heightForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; @@ -1309,6 +1262,23 @@ SWIFT_CLASS_NAMED("List") - (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; @end + +/// A module component that represent the list of SBUGroupChannelPushSettingsModule. +SWIFT_CLASS_NAMED("List") +@interface SBUGroupChannelPushSettingsModuleList : UIView +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + + +@interface SBUGroupChannelPushSettingsModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (UIView * _Nullable)tableView:(UITableView * _Nonnull)tableView viewForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; +- (CGFloat)tableView:(UITableView * _Nonnull)tableView heightForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +@end + @class UIContextualAction; /// A module component that represent the list of SBUGroupChannelListModule. @@ -1544,9 +1514,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit7SBUView") SWIFT_CLASS("_TtC13SendbirdUIKit27QuotedFileCommonContentView") @interface QuotedFileCommonContentView : SBUView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -1554,9 +1521,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit27QuotedFileCommonContentView") SWIFT_CLASS("_TtC13SendbirdUIKit26QuotedFileImageContentView") @interface QuotedFileImageContentView : SBUView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -2370,13 +2334,28 @@ SWIFT_CLASS("_TtC13SendbirdUIKit26SBUBaseSelectUserViewModel") @end +SWIFT_CLASS("_TtC13SendbirdUIKit15SBUCardListView") +@interface SBUCardListView : SBUView +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC13SendbirdUIKit11SBUCardView") +@interface SBUCardView : SBUView +/// Opens URL with (SBUCardViewParams/link) +/// since: +/// 3.7.0 +- (void)openURL; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +@end + + /// A view contains a channel information such as cover image, channel name and info button. SWIFT_CLASS("_TtC13SendbirdUIKit24SBUChannelInfoHeaderView") @interface SBUChannelInfoHeaderView : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (void)layoutSubviews; - (void)onClickChannelInfo; - (void)onClickChannelMembers; @@ -2391,9 +2370,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit33SBUChannelSettingsChannelInfoView") - (nonnull instancetype)init SWIFT_UNAVAILABLE; + (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); - (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (void)layoutSubviews; @end @@ -2456,9 +2432,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit40SBUChatNotificationChannelViewController") SWIFT_CLASS("_TtC13SendbirdUIKit20SBUCommonContentView") @interface SBUCommonContentView : SBUBaseFileContentView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -2493,12 +2466,12 @@ SWIFT_CLASS("_TtC13SendbirdUIKit9SBUConfig") @end - @interface SBUConfig (SWIFT_EXTENSION(SendbirdUIKit)) @end + @interface SBUConfig (SWIFT_EXTENSION(SendbirdUIKit)) @end @@ -2635,10 +2608,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit17SBUCoverImageView") SWIFT_CLASS("_TtC13SendbirdUIKit28SBUCreateChannelTypeSelector") @interface SBUCreateChannelTypeSelector : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'CreateChannelTypeSelectView.init(delegate:)'"); -- (void)setupViews; -- (void)setupStyles; -- (void)updateStyles; -- (void)setupLayouts; - (void)onClickClose; - (void)onClickCreateGroupChannel; - (void)onClickCreateSuperGroupChannel; @@ -2793,9 +2762,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit12SBUEmptyView") @interface SBUEmptyView : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; /// This function actions when the retry button click. /// \param sender sender /// @@ -3328,6 +3294,14 @@ SWIFT_CLASS("_TtC13SendbirdUIKit29SBUGroupChannelViewController") - (void)groupChannelModule:(SBUGroupChannelModuleList * _Nonnull)listComponent didTapQuotedMessageView:(SBUQuotedBaseMessageView * _Nonnull)quotedMessageView; - (void)groupChannelModule:(SBUGroupChannelModuleList * _Nonnull)listComponent didTapMentionUser:(SBUUser * _Nonnull)user; - (void)groupChannelModuleDidTapThreadInfoView:(SBUThreadInfoView * _Nonnull)threadInfoView; +/// Called when one of the quick reply options is tapped. +/// note: +/// As a default, it sends user message with text by using viewModel +/// since: +/// 3.7.0 +/// \param text The reply text that is selected by user +/// +- (void)groupChannelModule:(SBUGroupChannelModuleList * _Nonnull)listComponent didSelectQuickReplyOption:(NSString * _Nonnull)text; - (void)baseChannelModule:(SBUBaseChannelModuleList * _Nonnull)listComponent didTapVoiceMessage:(SBDFileMessage * _Nonnull)fileMessage cell:(UITableViewCell * _Nonnull)cell forRowAt:(NSIndexPath * _Nonnull)indexPath; - (void)baseChannelModuleDidTapScrollToButton:(SBUBaseChannelModuleList * _Nonnull)listComponent animated:(BOOL)animated; - (void)baseChannelModule:(SBUBaseChannelModuleList * _Nonnull)listComponent didScroll:(UIScrollView * _Nonnull)scrollView; @@ -3421,8 +3395,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUGroupChannelViewModel") SWIFT_CLASS("_TtC13SendbirdUIKit19SBUImageContentView") @interface SBUImageContentView : SBUBaseFileContentView -- (void)setupViews; -- (void)setupLayouts; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -3557,9 +3529,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit26SBUMenuSheetViewController") /// This class used to display the date separator in the message list. SWIFT_CLASS("_TtC13SendbirdUIKit18SBUMessageDateView") @interface SBUMessageDateView : SBUView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -3588,12 +3557,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit19SBUMessageInputView") @interface SBUMessageInputView : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -/// This function handles the initialization of views. -- (void)setupViews; -/// This function handles the initialization of autolayouts. -- (void)setupLayouts; -/// This function handles the initialization of styles. -- (void)setupStyles; - (void)layoutSubviews; - (void)onTapAddButton:(id _Nonnull)sender; - (void)onTapSendButton:(id _Nonnull)sender; @@ -3622,9 +3585,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit21SBUMessageProfileView") @interface SBUMessageProfileView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; @end @class UICollectionViewLayout; @@ -3634,9 +3594,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit22SBUMessageReactionView") @interface SBUMessageReactionView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (void)onTapMoreEmojiWithSender:(UITapGestureRecognizer * _Nonnull)sender; - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView * _Nonnull)collectionView SWIFT_WARN_UNUSED_RESULT; - (NSInteger)collectionView:(UICollectionView * _Nonnull)collectionView numberOfItemsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; @@ -3758,9 +3715,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit30SBUMessageSearchViewController") SWIFT_CLASS("_TtC13SendbirdUIKit19SBUMessageStateView") @interface SBUMessageStateView : SBUView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init SWIFT_UNAVAILABLE; + (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); - (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; @@ -3770,9 +3724,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit19SBUMessageStateView") SWIFT_CLASS("_TtC13SendbirdUIKit25SBUMessageThreadTitleView") @interface SBUMessageThreadTitleView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (void)layoutSubviews; - (void)onTapChannelNameWithSender:(UITapGestureRecognizer * _Nonnull)sender; - (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; @@ -3887,38 +3838,12 @@ SWIFT_CLASS("_TtC13SendbirdUIKit25SBUMessageThreadViewModel") @end -/// The protocol to manage the life cylce of some views. It defines setting views, styles, auto layouts and actions. -/// since: -/// 2.2.0 -SWIFT_PROTOCOL("_TtP13SendbirdUIKit16SBUViewLifeCycle_") -@protocol SBUViewLifeCycle -/// This function handles the initialization of views. -- (void)setupViews; -/// This function handles the initialization of styles. -- (void)setupStyles; -/// This function updates styles. -- (void)updateStyles; -/// This function handles the initialization of autolayouts. -- (void)setupLayouts; -/// This function updates layouts. -- (void)updateLayouts; -/// This function handles the initialization of actions. -- (void)setupActions; -@end - - /// A view shows preview of web link on the message. SWIFT_CLASS("_TtC13SendbirdUIKit17SBUMessageWebView") -@interface SBUMessageWebView : UIStackView +@interface SBUMessageWebView : UIStackView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; - (void)layoutSubviews; -- (void)setupViews; -- (void)setupLayouts; -- (void)updateLayouts; -- (void)setupStyles; -- (void)updateStyles; -- (void)setupActions; @end @class Header; @@ -4001,9 +3926,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit22SBUNavigationTitleView") @interface SBUNavigationTitleView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (void)drawRect:(CGRect)rect; - (void)layoutSubviews; @end @@ -4012,12 +3934,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit22SBUNavigationTitleView") SWIFT_CLASS("_TtC13SendbirdUIKit17SBUNewMessageInfo") @interface SBUNewMessageInfo : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -/// This function handles the initialization of views. -- (void)setupViews; -/// This function handles the initialization of autolayouts. -- (void)setupLayouts; -/// This function handles the initialization of styles. -- (void)setupStyles; - (void)drawRect:(CGRect)rect; - (void)onClickNewMessageInfo; - (nonnull instancetype)init SWIFT_UNAVAILABLE; @@ -4144,8 +4060,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit18SBUOpenChannelCell") SWIFT_CLASS("_TtC13SendbirdUIKit31SBUOpenChannelCommonContentView") @interface SBUOpenChannelCommonContentView : SBUCommonContentView -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -4298,9 +4212,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit27SBUOpenChannelListViewModel") /// A view shows preview of web link on the message in the open channel. SWIFT_CLASS("_TtC13SendbirdUIKit28SBUOpenChannelMessageWebView") @interface SBUOpenChannelMessageWebView : SBUMessageWebView -- (void)setupViews; -- (void)setupStyles; -- (void)setupLayouts; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; @end @@ -4639,7 +4550,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit23SBUOpenChannelViewModel") SWIFT_CLASS("_TtC13SendbirdUIKit32SBUParentMessageInfoReactionView") @interface SBUParentMessageInfoReactionView : SBUMessageReactionView -- (void)setupStyles; - (NSInteger)collectionView:(UICollectionView * _Nonnull)collectionView numberOfItemsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; - (CGSize)collectionView:(UICollectionView * _Nonnull)collectionView layout:(UICollectionViewLayout * _Nonnull)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @@ -4674,34 +4584,39 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUParentMessageInfoView") /// The collection view cell for SBUSelectablePhotoViewController. SWIFT_CLASS("_TtC13SendbirdUIKit26SBUPhotoCollectionViewCell") -@interface SBUPhotoCollectionViewCell : UICollectionViewCell +@interface SBUPhotoCollectionViewCell : UICollectionViewCell - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; - (void)layoutSubviews; -/// This function handles the initialization of views. -- (void)setupViews; -/// This function handles the initialization of auto layouts. -- (void)setupLayouts; -/// This function handles the initialization of styles. -- (void)setupStyles; -/// This function handles the initialization of actions. -- (void)setupActions; -/// This function updates layouts. -- (void)updateLayouts; -/// This function updates styles. -- (void)updateStyles; @end -IB_DESIGNABLE -SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuoteMessageInputView") -@interface SBUQuoteMessageInputView : SBUView -- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +SWIFT_CLASS("_TtC13SendbirdUIKit23SBUQuickReplyOptionView") +@interface SBUQuickReplyOptionView : SBUView +/// Calls SBUQuickReplyOptionViewDelegate/quickReplyOptionViewDidSelect(_:) +/// note: +/// If text is nil, it won’t invoke the delegate method. +/// since: +/// 3.7.0 +- (void)onSelectOption; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +@end + + +IB_DESIGNABLE +SWIFT_CLASS("_TtC13SendbirdUIKit17SBUQuickReplyView") +@interface SBUQuickReplyView : SBUView +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +@end + + +IB_DESIGNABLE +SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuoteMessageInputView") +@interface SBUQuoteMessageInputView : SBUView +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupActions; -- (void)setupStyles; @end @@ -4710,10 +4625,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuotedBaseMessageView") @interface SBUQuotedBaseMessageView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; -- (void)setupActions; /// The action invokes SBUQuotedMessageViewDelegate didTapQuotedMessageView(_:) method and scrolls to parent message cell. - (void)didTapQuotedMessageViewWithSender:(UITapGestureRecognizer * _Nonnull)sender; @end @@ -4721,8 +4632,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuotedBaseMessageView") SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuotedFileMessageView") @interface SBUQuotedFileMessageView : SBUQuotedBaseMessageView -- (void)setupViews; -- (void)setupLayouts; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -4731,9 +4640,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuotedFileMessageView") SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuotedUserMessageView") @interface SBUQuotedUserMessageView : SBUQuotedBaseMessageView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -4864,9 +4770,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit22SBUSelectableStackView") @interface SBUSelectableStackView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; @end @@ -4881,9 +4784,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit12SBUStackView") SWIFT_CLASS("_TtC13SendbirdUIKit23SBUSuggestedMentionList") @interface SBUSuggestedMentionList : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; /// Override configureCell(_:forRowAt:) to customize cell configuration with user object for each index path. - (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; @@ -4900,7 +4800,7 @@ SWIFT_CLASS("_TtC13SendbirdUIKit23SBUSuggestedMentionList") @end -@interface SBUTableViewCell (SWIFT_EXTENSION(SendbirdUIKit)) +@interface SBUTableViewCell (SWIFT_EXTENSION(SendbirdUIKit)) /// This function handles the initialization of views. /// note: /// It is called from intializer of SBUTableViewCell @@ -4926,10 +4826,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit17SBUThreadInfoView") @interface SBUThreadInfoView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupStyles; -- (void)setupLayouts; -- (void)setupActions; - (void)onTapThreadInfoWithSender:(UITapGestureRecognizer * _Nonnull)sender; @end @@ -4952,12 +4848,33 @@ SWIFT_CLASS("_TtC13SendbirdUIKit18SBUUserMessageCell") @property (nonatomic, readonly, strong) SBUSelectableStackView * _Nonnull additionContainerView; /// A SBUMessageWebView which represents a preview of the web link @property (nonatomic, strong) SBUMessageWebView * _Nonnull webView; +/// The boolean value whether the quickReplyView instance should appear or not. The default is true +/// important: +/// If it’s true, quickReplyView never appears even if the userMessage has quick reply options. +/// since: +/// 3.7.0 +@property (nonatomic, readonly) BOOL shouldHideQuickReply; +/// SBUQuickReplyView instance. +/// since: +/// 3.7.0 +@property (nonatomic, readonly, strong) SBUQuickReplyView * _Nullable quickReplyView; +/// The action of SBUQuickReplyView that is called when a SBUQuickReplyOptionView is selected. +/// since: +/// 3.7.0 +/// \param selectedOptionView The selected SBUQuickReplyOptionView object. +/// +@property (nonatomic, copy) void (^ _Nullable quickReplySelectHandler)(SBUQuickReplyOptionView * _Nonnull); +/// SBUCardListView instance. +/// since: +/// 3.7.0 +@property (nonatomic, readonly, strong) SBUCardListView * _Nullable cardListView; - (void)setupViews; - (void)setupLayouts; - (void)setupActions; - (void)setupStyles; - (void)setSelected:(BOOL)selected animated:(BOOL)animated; - (void)onTapWebviewWithSender:(UITapGestureRecognizer * _Nonnull)sender; +- (void)updateQuickReplyViewWith:(NSArray * _Nonnull)options; /// As a default, it calls groupChannelModule(_:didTapMentionUser:) in SBUGroupChannelModuleListDelegate. - (void)userMessageTextView:(SBUUserMessageTextView * _Nonnull)textView didTapMention:(SBUUser * _Nonnull)user; - (nonnull instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString * _Nullable)reuseIdentifier OBJC_DESIGNATED_INITIALIZER; @@ -5134,18 +5051,18 @@ SWIFT_CLASS("_TtC13SendbirdUIKit20SBUUserListViewModel") @end -@interface SBUUserListViewModel (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)channel:(SBDOpenChannel * _Nonnull)channel userDidExit:(SBDUser * _Nonnull)user; -- (void)channel:(SBDOpenChannel * _Nonnull)channel userDidEnter:(SBDUser * _Nonnull)user; -@end - - @interface SBUUserListViewModel (SWIFT_EXTENSION(SendbirdUIKit)) - (void)channel:(SBDGroupChannel * _Nonnull)channel userDidJoin:(SBDUser * _Nonnull)user; - (void)channel:(SBDGroupChannel * _Nonnull)channel userDidLeave:(SBDUser * _Nonnull)user; @end +@interface SBUUserListViewModel (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)channel:(SBDOpenChannel * _Nonnull)channel userDidExit:(SBDUser * _Nonnull)user; +- (void)channel:(SBDOpenChannel * _Nonnull)channel userDidEnter:(SBDUser * _Nonnull)user; +@end + + @interface SBUUserListViewModel (SWIFT_EXTENSION(SendbirdUIKit)) - (void)channel:(SBDBaseChannel * _Nonnull)channel userWasMuted:(SBDRestrictedUser * _Nonnull)user; - (void)channel:(SBDBaseChannel * _Nonnull)channel userWasUnmuted:(SBDUser * _Nonnull)user; @@ -5157,13 +5074,15 @@ SWIFT_CLASS("_TtC13SendbirdUIKit20SBUUserListViewModel") +@interface SBUUserMessageCell (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)quickReplyView:(SBUQuickReplyView * _Nonnull)view didSelectOption:(SBUQuickReplyOptionView * _Nonnull)optionView; +@end + + SWIFT_CLASS("_TtC13SendbirdUIKit22SBUUserMessageTextView") @interface SBUUserMessageTextView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; @end @@ -5176,33 +5095,14 @@ SWIFT_CLASS("_TtC13SendbirdUIKit15SBUUserNameView") @interface SBUUserNameView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)updateLayouts; -- (void)setupStyles; -- (void)updateStyles; @end -@interface SBUView (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)setupViews; -- (void)setupLayouts; -- (void)updateLayouts; -- (void)setupStyles; -- (void)updateStyles; -- (void)setupActions; -@end - - - /// The SBUBaseFileContentView that displays the voice message SWIFT_CLASS("_TtC13SendbirdUIKit19SBUVoiceContentView") @interface SBUVoiceContentView : SBUBaseFileContentView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -5220,14 +5120,8 @@ SWIFT_CLASS("_TtC13SendbirdUIKit16SBUVoiceFileInfo") /// since: /// 3.4.0 SWIFT_CLASS("_TtC13SendbirdUIKit24SBUVoiceMessageInputView") -@interface SBUVoiceMessageInputView : NSObject +@interface SBUVoiceMessageInputView : NSObject - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)updateLayouts; -- (void)setupStyles; -- (void)updateStyles; -- (void)setupActions; @end @@ -5299,6 +5193,7 @@ SWIFT_CLASS("_TtC13SendbirdUIKit16SBUVoiceRecorder") + #endif #if defined(__cplusplus) #endif @@ -5309,7 +5204,7 @@ SWIFT_CLASS("_TtC13SendbirdUIKit16SBUVoiceRecorder") #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) +// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) #ifndef SENDBIRDUIKIT_SWIFT_H #define SENDBIRDUIKIT_SWIFT_H #pragma clang diagnostic push @@ -5332,6 +5227,7 @@ SWIFT_CLASS("_TtC13SendbirdUIKit16SBUVoiceRecorder") # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" #if defined(__OBJC__) #include @@ -5340,24 +5236,10 @@ SWIFT_CLASS("_TtC13SendbirdUIKit16SBUVoiceRecorder") #include #include #include -#include -#include -#include -#include #else #include #include #include -#include -#endif -#if defined(__cplusplus) -#if __has_include() -# include -#else -# ifndef __ptrauth_swift_value_witness_function_pointer -# define __ptrauth_swift_value_witness_function_pointer(x) -# endif -#endif #endif #if !defined(SWIFT_TYPEDEFS) @@ -5393,66 +5275,53 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# define SWIFT_CLASS_PROPERTY(...) # endif #endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif + +#if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) #endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif +#if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) #endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif +#if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) #endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif +#if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE #endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif +#if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +#else +# define SWIFT_RELEASES_ARGUMENT #endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif +#if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +#else +# define SWIFT_WARN_UNUSED_RESULT #endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif +#if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +#else +# define SWIFT_NORETURN #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -5472,25 +5341,28 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) # endif #endif + #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA #endif + #if !defined(SWIFT_EXTENSION) # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) #endif + #if !defined(OBJC_DESIGNATED_INITIALIZER) # if __has_attribute(objc_designated_initializer) # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) # else -# define OBJC_DESIGNATED_INITIALIZER +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) +# if defined(__has_attribute) && __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -5519,16 +5391,14 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_DEPRECATED_MSG) # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) #endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif +#if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +#else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif #if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction #endif #endif #if !defined(SWIFT_EXTERN) @@ -5541,31 +5411,26 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_CALL) # define SWIFT_CALL __attribute__((swiftcall)) #endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif #if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) # define SWIFT_NOEXCEPT noexcept +#endif #else +#if !defined(SWIFT_NOEXCEPT) # define SWIFT_NOEXCEPT #endif -#if defined(_WIN32) -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) #endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} #endif #endif #if defined(__OBJC__) -#if __has_feature(objc_modules) +#if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @@ -5608,7 +5473,6 @@ SWIFT_CLASS("_TtCC13SendbirdUIKit9SBUConfig9BaseInput") @end - @interface BaseInput (SWIFT_EXTENSION(SendbirdUIKit)) @end @@ -5616,6 +5480,7 @@ SWIFT_CLASS("_TtCC13SendbirdUIKit9SBUConfig9BaseInput") + SWIFT_CLASS("_TtCCC13SendbirdUIKit9SBUConfig12GroupChannel7Channel") @interface Channel : NSObject - (nonnull instancetype)init SWIFT_UNAVAILABLE; @@ -5754,20 +5619,6 @@ SWIFT_CLASS_NAMED("List") @end -/// A module component that represent the list of SBURegisterOperatorModule. -SWIFT_CLASS_NAMED("List") -@interface SBURegisterOperatorModuleList : SBUBaseChannelSettingsModuleList -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBURegisterOperatorModule.List()'"); -- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBURegisterOperatorModule.List()'"); -- (void)configureCell:(UITableViewCell * _Nullable)cell indexPath:(NSIndexPath * _Nonnull)indexPath; -@end - - -@interface SBURegisterOperatorModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)didSelectRetry; -@end - - /// A module component that represent the list of SBUCreateChannelModule. SWIFT_CLASS_NAMED("List") @interface SBUCreateChannelModuleList : SBUBaseChannelSettingsModuleList @@ -5803,6 +5654,21 @@ SWIFT_CLASS_NAMED("List") - (void)didSelectRetry; @end + +/// A module component that represent the list of SBURegisterOperatorModule. +SWIFT_CLASS_NAMED("List") +@interface SBURegisterOperatorModuleList : SBUBaseChannelSettingsModuleList +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBURegisterOperatorModule.List()'"); +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBURegisterOperatorModule.List()'"); +- (void)configureCell:(UITableViewCell * _Nullable)cell indexPath:(NSIndexPath * _Nonnull)indexPath; +@end + + +@interface SBURegisterOperatorModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)didSelectRetry; +@end + + @class SBDBaseChannel; @class SBDBaseMessage; @class UIScrollView; @@ -5925,6 +5791,88 @@ SWIFT_CLASS_NAMED("List") - (enum MessageGroupPosition)getMessageGroupingPositionWithCurrentIndex:(NSInteger)currentIndex SWIFT_WARN_UNUSED_RESULT; @end + +@interface SBUBaseChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +/// Reload data from the channel. This function invokes SBUBaseChannelModuleListDelegate baseChannelModuleDidSelectRetry(_:) +- (void)didSelectRetry; +@end + +@class SBUBaseChannelCell; + +/// A module component that represent the list of SBUBaseChannelListModule. +SWIFT_CLASS_NAMED("List") +@interface SBUBaseChannelListModuleList : UIView +/// The table view to show the list of channels +@property (nonatomic, strong) UITableView * _Nonnull tableView; +/// A view that shows when there is no channel. +@property (nonatomic, strong) UIView * _Nullable emptyView; +/// The channel cell for SBUBaseChannelCell object. Use register(channelCell:nib:) to update. +@property (nonatomic, strong) SBUBaseChannelCell * _Nullable channelCell; +/// The custom channel cell for SBUBaseChannelCell object. Use register(customCell:nib:) to update. +@property (nonatomic, strong) SBUBaseChannelCell * _Nullable customCell; +/// The current channel list object from channelListModule(_:channelsInTableView:) data source method. +@property (nonatomic, readonly, copy) NSArray * _Nullable baseChannelList; +/// If this value is enabled, pull to refresh feature is enabled. +/// since: +/// 3.2.0 +@property (nonatomic) BOOL isPullToRefreshEnabled; +/// Set values of the views in the list component when it needs. +- (void)setupViews; +/// Sets layouts of the views in the list component. +- (void)setupLayouts; +- (void)setupPullToRefresh; +/// Configures cell for a particular row. +/// \param channelCell SBUBaseChannelCell object +/// +/// \param indexPath An index path representing the channelCell +/// +- (void)configureCell:(SBUBaseChannelCell * _Nullable)channelCell indexPath:(NSIndexPath * _Nonnull)indexPath; +/// Registers a custom cell as a channel cell based on SBUBaseChannelCell. +/// important: +/// To register custom channel cell, please use this function before calling configure(delegate:dataSource:theme:) +/// \code +/// listComponent.register(channelCell: MyChannelCell) +/// listComponent.configure(delegate: self, dataSource: self, theme: theme) +/// +/// \endcode\param channelCell Customized channel cell +/// +/// \param nib nib information. If the value is nil, the nib file is not used. +/// +- (void)registerWithChannelCell:(SBUBaseChannelCell * _Nonnull)channelCell nib:(UINib * _Nullable)nib; +/// Registers a additional cell as a custom cell based on SBUBaseChannelCell. +/// important: +/// To register additional channel cell, please use this function before calling configure(delegate:dataSource:theme:) +/// \code +/// listComponent.register(customCell: MyChannelCell) +/// listComponent.configure(delegate: self, dataSource: self, theme: theme) +/// +/// \endcode\param customCell Additional channel cell +/// +/// \param nib nib information. If the value is nil, the nib file is not used. +/// +- (void)registerWithCustomCell:(SBUBaseChannelCell * _Nullable)customCell nib:(UINib * _Nullable)nib; +/// Pulls to refresh. +/// since: +/// 3.2.0 +/// \param sender Sender +/// +- (void)pullToRefresh:(id _Nonnull)sender; +/// Reloads table view. This method corresponds to UITableView reloadData(). +- (void)reloadTableView; +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + + +@interface SBUBaseChannelListModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)didSelectRetry; +@end + + +@interface SBUBaseChannelSettingsModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)didSelectRetry; +@end + @class SBUBaseMessageCell; @class SBDGroupChannel; enum MessagePosition : NSInteger; @@ -6070,24 +6018,58 @@ SWIFT_CLASS_NAMED("List") @end -@interface SBUBaseChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -/// Reload data from the channel. This function invokes SBUBaseChannelModuleListDelegate baseChannelModuleDidSelectRetry(_:) -- (void)didSelectRetry; -@end - -@class SBUQuotedBaseMessageView; -SWIFT_PROTOCOL("_TtP13SendbirdUIKit28SBUQuotedMessageViewDelegate_") -@protocol SBUQuotedMessageViewDelegate -/// Called when SBUQuotedBaseMessageView was tapped. -/// \param quotedMessageView The tapped quoted message view +/// A module component that represent the list of SBUUserListModule. +SWIFT_CLASS_NAMED("List") +@interface SBUUserListModuleList : UIView +/// The table view that shows the list of the users. +@property (nonatomic, strong) UITableView * _Nonnull tableView; +/// A view that displays when the table view is empty. +@property (nonatomic, strong) UIView * _Nullable emptyView; +/// The user cell for UITableViewCell object. Use register(userCell:nib:) to update. +@property (nonatomic, strong) UITableViewCell * _Nullable userCell; +@property (nonatomic, readonly, strong) SBDBaseChannel * _Nullable channel; +@property (nonatomic, readonly, copy) NSArray * _Nonnull userList; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBUUserListModule.List()'"); +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBUUserListModule.List()'"); +- (void)setupViews; +- (void)setupLayouts; +/// Reloads table view. This method corresponds to UITableView reloadData(). +- (void)reloadTableView; +/// Registers a custom cell as a user cell based on UITableViewCell. +/// important: +/// To register custom user cell, please use this function before calling configure(delegate:dataSource:userListType:theme:componentTheme:) +/// \code +/// listComponent.register(userCell: MyUserCell) +/// listComponent.configure(delegate: self, dataSource: self, userListType: .type, theme: theme, componentTheme: componentTheme) /// -- (void)didTapQuotedMessageView:(SBUQuotedBaseMessageView * _Nonnull)quotedMessageView; +/// \endcode\param channelCell Customized user cell +/// +/// \param nib nib information. If the value is nil, the nib file is not used. +/// +- (void)registerWithUserCell:(UITableViewCell * _Nonnull)userCell nib:(UINib * _Nullable)nib; +/// Configures cell for a particular row. +/// \param cell UITableViewCell object +/// +/// \param indexPath An index path representing the cell +/// +- (void)configureCell:(UITableViewCell * _Nullable)cell indexPath:(NSIndexPath * _Nonnull)indexPath; +/// Sets up the cell’s more menu button action. +/// important: +/// Only for the group channel +/// \param user SBUUser obejct +/// +- (void)setMoreMenuTapAction:(SBUUser * _Nonnull)user; +/// Sets up the user profile tap action. +/// If you do not want to use the user profile function, override this function and leave it empty. +/// \param user SBUUser object used for user profile configuration +/// +- (void)setUserProfileTapAction:(SBUUser * _Nonnull)user; @end -@interface SBUGroupChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)didTapQuotedMessageView:(SBUQuotedBaseMessageView * _Nonnull)quotedMessageView; +@interface SBUUserListModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)didSelectRetry; @end @class SBUMessageSearchResultCell; @@ -6133,147 +6115,30 @@ SWIFT_CLASS_NAMED("List") /// \param indexPath IndexPath of which you want to retrieve the Message object. /// /// -/// returns: -/// BaseMessage object of the corresponding IndexPath, or nil if the message can’t be found. -- (SBDBaseMessage * _Nullable)messageAt:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; -@end - - -@interface SBUMessageSearchModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)didSelectRetry; -@end - - - -@interface SBUBaseChannelSettingsModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)didSelectRetry; -@end - -@class SBUBaseChannelCell; - -/// A module component that represent the list of SBUBaseChannelListModule. -SWIFT_CLASS_NAMED("List") -@interface SBUBaseChannelListModuleList : UIView -/// The table view to show the list of channels -@property (nonatomic, strong) UITableView * _Nonnull tableView; -/// A view that shows when there is no channel. -@property (nonatomic, strong) UIView * _Nullable emptyView; -/// The channel cell for SBUBaseChannelCell object. Use register(channelCell:nib:) to update. -@property (nonatomic, strong) SBUBaseChannelCell * _Nullable channelCell; -/// The custom channel cell for SBUBaseChannelCell object. Use register(customCell:nib:) to update. -@property (nonatomic, strong) SBUBaseChannelCell * _Nullable customCell; -/// The current channel list object from channelListModule(_:channelsInTableView:) data source method. -@property (nonatomic, readonly, copy) NSArray * _Nullable baseChannelList; -/// If this value is enabled, pull to refresh feature is enabled. -/// since: -/// 3.2.0 -@property (nonatomic) BOOL isPullToRefreshEnabled; -/// Set values of the views in the list component when it needs. -- (void)setupViews; -/// Sets layouts of the views in the list component. -- (void)setupLayouts; -- (void)setupPullToRefresh; -/// Configures cell for a particular row. -/// \param channelCell SBUBaseChannelCell object -/// -/// \param indexPath An index path representing the channelCell -/// -- (void)configureCell:(SBUBaseChannelCell * _Nullable)channelCell indexPath:(NSIndexPath * _Nonnull)indexPath; -/// Registers a custom cell as a channel cell based on SBUBaseChannelCell. -/// important: -/// To register custom channel cell, please use this function before calling configure(delegate:dataSource:theme:) -/// \code -/// listComponent.register(channelCell: MyChannelCell) -/// listComponent.configure(delegate: self, dataSource: self, theme: theme) -/// -/// \endcode\param channelCell Customized channel cell -/// -/// \param nib nib information. If the value is nil, the nib file is not used. -/// -- (void)registerWithChannelCell:(SBUBaseChannelCell * _Nonnull)channelCell nib:(UINib * _Nullable)nib; -/// Registers a additional cell as a custom cell based on SBUBaseChannelCell. -/// important: -/// To register additional channel cell, please use this function before calling configure(delegate:dataSource:theme:) -/// \code -/// listComponent.register(customCell: MyChannelCell) -/// listComponent.configure(delegate: self, dataSource: self, theme: theme) -/// -/// \endcode\param customCell Additional channel cell -/// -/// \param nib nib information. If the value is nil, the nib file is not used. -/// -- (void)registerWithCustomCell:(SBUBaseChannelCell * _Nullable)customCell nib:(UINib * _Nullable)nib; -/// Pulls to refresh. -/// since: -/// 3.2.0 -/// \param sender Sender -/// -- (void)pullToRefresh:(id _Nonnull)sender; -/// Reloads table view. This method corresponds to UITableView reloadData(). -- (void)reloadTableView; -- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface SBUBaseChannelListModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)didSelectRetry; -@end - - -/// A module component that represent the list of SBUUserListModule. -SWIFT_CLASS_NAMED("List") -@interface SBUUserListModuleList : UIView -/// The table view that shows the list of the users. -@property (nonatomic, strong) UITableView * _Nonnull tableView; -/// A view that displays when the table view is empty. -@property (nonatomic, strong) UIView * _Nullable emptyView; -/// The user cell for UITableViewCell object. Use register(userCell:nib:) to update. -@property (nonatomic, strong) UITableViewCell * _Nullable userCell; -@property (nonatomic, readonly, strong) SBDBaseChannel * _Nullable channel; -@property (nonatomic, readonly, copy) NSArray * _Nonnull userList; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBUUserListModule.List()'"); -- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'SBUUserListModule.List()'"); -- (void)setupViews; -- (void)setupLayouts; -/// Reloads table view. This method corresponds to UITableView reloadData(). -- (void)reloadTableView; -/// Registers a custom cell as a user cell based on UITableViewCell. -/// important: -/// To register custom user cell, please use this function before calling configure(delegate:dataSource:userListType:theme:componentTheme:) -/// \code -/// listComponent.register(userCell: MyUserCell) -/// listComponent.configure(delegate: self, dataSource: self, userListType: .type, theme: theme, componentTheme: componentTheme) -/// -/// \endcode\param channelCell Customized user cell -/// -/// \param nib nib information. If the value is nil, the nib file is not used. -/// -- (void)registerWithUserCell:(UITableViewCell * _Nonnull)userCell nib:(UINib * _Nullable)nib; -/// Configures cell for a particular row. -/// \param cell UITableViewCell object -/// -/// \param indexPath An index path representing the cell -/// -- (void)configureCell:(UITableViewCell * _Nullable)cell indexPath:(NSIndexPath * _Nonnull)indexPath; -/// Sets up the cell’s more menu button action. -/// important: -/// Only for the group channel -/// \param user SBUUser obejct -/// -- (void)setMoreMenuTapAction:(SBUUser * _Nonnull)user; -/// Sets up the user profile tap action. -/// If you do not want to use the user profile function, override this function and leave it empty. -/// \param user SBUUser object used for user profile configuration -/// -- (void)setUserProfileTapAction:(SBUUser * _Nonnull)user; +/// returns: +/// BaseMessage object of the corresponding IndexPath, or nil if the message can’t be found. +- (SBDBaseMessage * _Nullable)messageAt:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; @end -@interface SBUUserListModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +@interface SBUMessageSearchModuleList (SWIFT_EXTENSION(SendbirdUIKit)) - (void)didSelectRetry; @end +@class SBUQuotedBaseMessageView; + +SWIFT_PROTOCOL("_TtP13SendbirdUIKit28SBUQuotedMessageViewDelegate_") +@protocol SBUQuotedMessageViewDelegate +/// Called when SBUQuotedBaseMessageView was tapped. +/// \param quotedMessageView The tapped quoted message view +/// +- (void)didTapQuotedMessageView:(SBUQuotedBaseMessageView * _Nonnull)quotedMessageView; +@end + + +@interface SBUGroupChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)didTapQuotedMessageView:(SBUQuotedBaseMessageView * _Nonnull)quotedMessageView; +@end @interface SBURegisterOperatorModuleList (SWIFT_EXTENSION(SendbirdUIKit)) @@ -6282,13 +6147,13 @@ SWIFT_CLASS_NAMED("List") @end -@interface SBUInviteUserModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +@interface SBUCreateChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) - (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; - (void)tableView:(UITableView * _Nonnull)tableView willDisplayCell:(UITableViewCell * _Nonnull)cell forRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; @end -@interface SBUCreateChannelModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +@interface SBUInviteUserModuleList (SWIFT_EXTENSION(SendbirdUIKit)) - (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; - (void)tableView:(UITableView * _Nonnull)tableView willDisplayCell:(UITableViewCell * _Nonnull)cell forRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; @end @@ -6384,6 +6249,7 @@ SWIFT_CLASS_NAMED("List") + /// A module component that represent the list of SBUOpenChannelListModule. SWIFT_CLASS_NAMED("List") @interface SBUOpenChannelListModuleList : SBUBaseChannelListModuleList @@ -6404,7 +6270,6 @@ SWIFT_CLASS_NAMED("List") - (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; @end - @class SBUParentMessageInfoView; /// A module component that represent the list of SBUMessageThreadModule. @@ -6549,23 +6414,6 @@ SWIFT_CLASS_NAMED("List") @end -/// A module component that represent the list of SBUGroupChannelPushSettingsModule. -SWIFT_CLASS_NAMED("List") -@interface SBUGroupChannelPushSettingsModuleList : UIView -- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface SBUGroupChannelPushSettingsModuleList (SWIFT_EXTENSION(SendbirdUIKit)) -- (UIView * _Nullable)tableView:(UITableView * _Nonnull)tableView viewForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; -- (CGFloat)tableView:(UITableView * _Nonnull)tableView heightForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; -- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; -- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; -- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; -@end - - @interface List (SWIFT_EXTENSION(SendbirdUIKit)) - (UIView * _Nullable)tableView:(UITableView * _Nonnull)tableView viewForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; - (CGFloat)tableView:(UITableView * _Nonnull)tableView heightForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; @@ -6618,6 +6466,23 @@ SWIFT_CLASS_NAMED("List") - (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; @end + +/// A module component that represent the list of SBUGroupChannelPushSettingsModule. +SWIFT_CLASS_NAMED("List") +@interface SBUGroupChannelPushSettingsModuleList : UIView +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + + +@interface SBUGroupChannelPushSettingsModuleList (SWIFT_EXTENSION(SendbirdUIKit)) +- (UIView * _Nullable)tableView:(UITableView * _Nonnull)tableView viewForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; +- (CGFloat)tableView:(UITableView * _Nonnull)tableView heightForHeaderInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +@end + @class UIContextualAction; /// A module component that represent the list of SBUGroupChannelListModule. @@ -6853,9 +6718,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit7SBUView") SWIFT_CLASS("_TtC13SendbirdUIKit27QuotedFileCommonContentView") @interface QuotedFileCommonContentView : SBUView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -6863,9 +6725,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit27QuotedFileCommonContentView") SWIFT_CLASS("_TtC13SendbirdUIKit26QuotedFileImageContentView") @interface QuotedFileImageContentView : SBUView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -7679,13 +7538,28 @@ SWIFT_CLASS("_TtC13SendbirdUIKit26SBUBaseSelectUserViewModel") @end +SWIFT_CLASS("_TtC13SendbirdUIKit15SBUCardListView") +@interface SBUCardListView : SBUView +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC13SendbirdUIKit11SBUCardView") +@interface SBUCardView : SBUView +/// Opens URL with (SBUCardViewParams/link) +/// since: +/// 3.7.0 +- (void)openURL; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +@end + + /// A view contains a channel information such as cover image, channel name and info button. SWIFT_CLASS("_TtC13SendbirdUIKit24SBUChannelInfoHeaderView") @interface SBUChannelInfoHeaderView : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (void)layoutSubviews; - (void)onClickChannelInfo; - (void)onClickChannelMembers; @@ -7700,9 +7574,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit33SBUChannelSettingsChannelInfoView") - (nonnull instancetype)init SWIFT_UNAVAILABLE; + (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); - (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (void)layoutSubviews; @end @@ -7765,9 +7636,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit40SBUChatNotificationChannelViewController") SWIFT_CLASS("_TtC13SendbirdUIKit20SBUCommonContentView") @interface SBUCommonContentView : SBUBaseFileContentView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -7802,12 +7670,12 @@ SWIFT_CLASS("_TtC13SendbirdUIKit9SBUConfig") @end - @interface SBUConfig (SWIFT_EXTENSION(SendbirdUIKit)) @end + @interface SBUConfig (SWIFT_EXTENSION(SendbirdUIKit)) @end @@ -7944,10 +7812,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit17SBUCoverImageView") SWIFT_CLASS("_TtC13SendbirdUIKit28SBUCreateChannelTypeSelector") @interface SBUCreateChannelTypeSelector : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER SWIFT_UNAVAILABLE_MSG("'init' has been renamed to 'CreateChannelTypeSelectView.init(delegate:)'"); -- (void)setupViews; -- (void)setupStyles; -- (void)updateStyles; -- (void)setupLayouts; - (void)onClickClose; - (void)onClickCreateGroupChannel; - (void)onClickCreateSuperGroupChannel; @@ -8102,9 +7966,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit12SBUEmptyView") @interface SBUEmptyView : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; /// This function actions when the retry button click. /// \param sender sender /// @@ -8637,6 +8498,14 @@ SWIFT_CLASS("_TtC13SendbirdUIKit29SBUGroupChannelViewController") - (void)groupChannelModule:(SBUGroupChannelModuleList * _Nonnull)listComponent didTapQuotedMessageView:(SBUQuotedBaseMessageView * _Nonnull)quotedMessageView; - (void)groupChannelModule:(SBUGroupChannelModuleList * _Nonnull)listComponent didTapMentionUser:(SBUUser * _Nonnull)user; - (void)groupChannelModuleDidTapThreadInfoView:(SBUThreadInfoView * _Nonnull)threadInfoView; +/// Called when one of the quick reply options is tapped. +/// note: +/// As a default, it sends user message with text by using viewModel +/// since: +/// 3.7.0 +/// \param text The reply text that is selected by user +/// +- (void)groupChannelModule:(SBUGroupChannelModuleList * _Nonnull)listComponent didSelectQuickReplyOption:(NSString * _Nonnull)text; - (void)baseChannelModule:(SBUBaseChannelModuleList * _Nonnull)listComponent didTapVoiceMessage:(SBDFileMessage * _Nonnull)fileMessage cell:(UITableViewCell * _Nonnull)cell forRowAt:(NSIndexPath * _Nonnull)indexPath; - (void)baseChannelModuleDidTapScrollToButton:(SBUBaseChannelModuleList * _Nonnull)listComponent animated:(BOOL)animated; - (void)baseChannelModule:(SBUBaseChannelModuleList * _Nonnull)listComponent didScroll:(UIScrollView * _Nonnull)scrollView; @@ -8730,8 +8599,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUGroupChannelViewModel") SWIFT_CLASS("_TtC13SendbirdUIKit19SBUImageContentView") @interface SBUImageContentView : SBUBaseFileContentView -- (void)setupViews; -- (void)setupLayouts; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -8866,9 +8733,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit26SBUMenuSheetViewController") /// This class used to display the date separator in the message list. SWIFT_CLASS("_TtC13SendbirdUIKit18SBUMessageDateView") @interface SBUMessageDateView : SBUView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -8897,12 +8761,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit19SBUMessageInputView") @interface SBUMessageInputView : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -/// This function handles the initialization of views. -- (void)setupViews; -/// This function handles the initialization of autolayouts. -- (void)setupLayouts; -/// This function handles the initialization of styles. -- (void)setupStyles; - (void)layoutSubviews; - (void)onTapAddButton:(id _Nonnull)sender; - (void)onTapSendButton:(id _Nonnull)sender; @@ -8931,9 +8789,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit21SBUMessageProfileView") @interface SBUMessageProfileView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; @end @class UICollectionViewLayout; @@ -8943,9 +8798,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit22SBUMessageReactionView") @interface SBUMessageReactionView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (void)onTapMoreEmojiWithSender:(UITapGestureRecognizer * _Nonnull)sender; - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView * _Nonnull)collectionView SWIFT_WARN_UNUSED_RESULT; - (NSInteger)collectionView:(UICollectionView * _Nonnull)collectionView numberOfItemsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; @@ -9067,9 +8919,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit30SBUMessageSearchViewController") SWIFT_CLASS("_TtC13SendbirdUIKit19SBUMessageStateView") @interface SBUMessageStateView : SBUView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init SWIFT_UNAVAILABLE; + (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); - (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; @@ -9079,9 +8928,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit19SBUMessageStateView") SWIFT_CLASS("_TtC13SendbirdUIKit25SBUMessageThreadTitleView") @interface SBUMessageThreadTitleView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (void)layoutSubviews; - (void)onTapChannelNameWithSender:(UITapGestureRecognizer * _Nonnull)sender; - (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; @@ -9196,38 +9042,12 @@ SWIFT_CLASS("_TtC13SendbirdUIKit25SBUMessageThreadViewModel") @end -/// The protocol to manage the life cylce of some views. It defines setting views, styles, auto layouts and actions. -/// since: -/// 2.2.0 -SWIFT_PROTOCOL("_TtP13SendbirdUIKit16SBUViewLifeCycle_") -@protocol SBUViewLifeCycle -/// This function handles the initialization of views. -- (void)setupViews; -/// This function handles the initialization of styles. -- (void)setupStyles; -/// This function updates styles. -- (void)updateStyles; -/// This function handles the initialization of autolayouts. -- (void)setupLayouts; -/// This function updates layouts. -- (void)updateLayouts; -/// This function handles the initialization of actions. -- (void)setupActions; -@end - - /// A view shows preview of web link on the message. SWIFT_CLASS("_TtC13SendbirdUIKit17SBUMessageWebView") -@interface SBUMessageWebView : UIStackView +@interface SBUMessageWebView : UIStackView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; - (void)layoutSubviews; -- (void)setupViews; -- (void)setupLayouts; -- (void)updateLayouts; -- (void)setupStyles; -- (void)updateStyles; -- (void)setupActions; @end @class Header; @@ -9310,9 +9130,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit22SBUNavigationTitleView") @interface SBUNavigationTitleView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (void)drawRect:(CGRect)rect; - (void)layoutSubviews; @end @@ -9321,12 +9138,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit22SBUNavigationTitleView") SWIFT_CLASS("_TtC13SendbirdUIKit17SBUNewMessageInfo") @interface SBUNewMessageInfo : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -/// This function handles the initialization of views. -- (void)setupViews; -/// This function handles the initialization of autolayouts. -- (void)setupLayouts; -/// This function handles the initialization of styles. -- (void)setupStyles; - (void)drawRect:(CGRect)rect; - (void)onClickNewMessageInfo; - (nonnull instancetype)init SWIFT_UNAVAILABLE; @@ -9453,8 +9264,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit18SBUOpenChannelCell") SWIFT_CLASS("_TtC13SendbirdUIKit31SBUOpenChannelCommonContentView") @interface SBUOpenChannelCommonContentView : SBUCommonContentView -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -9607,9 +9416,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit27SBUOpenChannelListViewModel") /// A view shows preview of web link on the message in the open channel. SWIFT_CLASS("_TtC13SendbirdUIKit28SBUOpenChannelMessageWebView") @interface SBUOpenChannelMessageWebView : SBUMessageWebView -- (void)setupViews; -- (void)setupStyles; -- (void)setupLayouts; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; @end @@ -9948,7 +9754,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit23SBUOpenChannelViewModel") SWIFT_CLASS("_TtC13SendbirdUIKit32SBUParentMessageInfoReactionView") @interface SBUParentMessageInfoReactionView : SBUMessageReactionView -- (void)setupStyles; - (NSInteger)collectionView:(UICollectionView * _Nonnull)collectionView numberOfItemsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; - (CGSize)collectionView:(UICollectionView * _Nonnull)collectionView layout:(UICollectionViewLayout * _Nonnull)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @@ -9983,22 +9788,31 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUParentMessageInfoView") /// The collection view cell for SBUSelectablePhotoViewController. SWIFT_CLASS("_TtC13SendbirdUIKit26SBUPhotoCollectionViewCell") -@interface SBUPhotoCollectionViewCell : UICollectionViewCell +@interface SBUPhotoCollectionViewCell : UICollectionViewCell - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; - (void)layoutSubviews; -/// This function handles the initialization of views. -- (void)setupViews; -/// This function handles the initialization of auto layouts. -- (void)setupLayouts; -/// This function handles the initialization of styles. -- (void)setupStyles; -/// This function handles the initialization of actions. -- (void)setupActions; -/// This function updates layouts. -- (void)updateLayouts; -/// This function updates styles. -- (void)updateStyles; +@end + + +SWIFT_CLASS("_TtC13SendbirdUIKit23SBUQuickReplyOptionView") +@interface SBUQuickReplyOptionView : SBUView +/// Calls SBUQuickReplyOptionViewDelegate/quickReplyOptionViewDidSelect(_:) +/// note: +/// If text is nil, it won’t invoke the delegate method. +/// since: +/// 3.7.0 +- (void)onSelectOption; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +@end + + +IB_DESIGNABLE +SWIFT_CLASS("_TtC13SendbirdUIKit17SBUQuickReplyView") +@interface SBUQuickReplyView : SBUView +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -10007,10 +9821,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuoteMessageInputView") @interface SBUQuoteMessageInputView : SBUView - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupActions; -- (void)setupStyles; @end @@ -10019,10 +9829,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuotedBaseMessageView") @interface SBUQuotedBaseMessageView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; -- (void)setupActions; /// The action invokes SBUQuotedMessageViewDelegate didTapQuotedMessageView(_:) method and scrolls to parent message cell. - (void)didTapQuotedMessageViewWithSender:(UITapGestureRecognizer * _Nonnull)sender; @end @@ -10030,8 +9836,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuotedBaseMessageView") SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuotedFileMessageView") @interface SBUQuotedFileMessageView : SBUQuotedBaseMessageView -- (void)setupViews; -- (void)setupLayouts; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -10040,9 +9844,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuotedFileMessageView") SWIFT_CLASS("_TtC13SendbirdUIKit24SBUQuotedUserMessageView") @interface SBUQuotedUserMessageView : SBUQuotedBaseMessageView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -10173,9 +9974,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit22SBUSelectableStackView") @interface SBUSelectableStackView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; @end @@ -10190,9 +9988,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit12SBUStackView") SWIFT_CLASS("_TtC13SendbirdUIKit23SBUSuggestedMentionList") @interface SBUSuggestedMentionList : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT; /// Override configureCell(_:forRowAt:) to customize cell configuration with user object for each index path. - (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; @@ -10209,7 +10004,7 @@ SWIFT_CLASS("_TtC13SendbirdUIKit23SBUSuggestedMentionList") @end -@interface SBUTableViewCell (SWIFT_EXTENSION(SendbirdUIKit)) +@interface SBUTableViewCell (SWIFT_EXTENSION(SendbirdUIKit)) /// This function handles the initialization of views. /// note: /// It is called from intializer of SBUTableViewCell @@ -10235,10 +10030,6 @@ SWIFT_CLASS("_TtC13SendbirdUIKit17SBUThreadInfoView") @interface SBUThreadInfoView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupStyles; -- (void)setupLayouts; -- (void)setupActions; - (void)onTapThreadInfoWithSender:(UITapGestureRecognizer * _Nonnull)sender; @end @@ -10261,12 +10052,33 @@ SWIFT_CLASS("_TtC13SendbirdUIKit18SBUUserMessageCell") @property (nonatomic, readonly, strong) SBUSelectableStackView * _Nonnull additionContainerView; /// A SBUMessageWebView which represents a preview of the web link @property (nonatomic, strong) SBUMessageWebView * _Nonnull webView; +/// The boolean value whether the quickReplyView instance should appear or not. The default is true +/// important: +/// If it’s true, quickReplyView never appears even if the userMessage has quick reply options. +/// since: +/// 3.7.0 +@property (nonatomic, readonly) BOOL shouldHideQuickReply; +/// SBUQuickReplyView instance. +/// since: +/// 3.7.0 +@property (nonatomic, readonly, strong) SBUQuickReplyView * _Nullable quickReplyView; +/// The action of SBUQuickReplyView that is called when a SBUQuickReplyOptionView is selected. +/// since: +/// 3.7.0 +/// \param selectedOptionView The selected SBUQuickReplyOptionView object. +/// +@property (nonatomic, copy) void (^ _Nullable quickReplySelectHandler)(SBUQuickReplyOptionView * _Nonnull); +/// SBUCardListView instance. +/// since: +/// 3.7.0 +@property (nonatomic, readonly, strong) SBUCardListView * _Nullable cardListView; - (void)setupViews; - (void)setupLayouts; - (void)setupActions; - (void)setupStyles; - (void)setSelected:(BOOL)selected animated:(BOOL)animated; - (void)onTapWebviewWithSender:(UITapGestureRecognizer * _Nonnull)sender; +- (void)updateQuickReplyViewWith:(NSArray * _Nonnull)options; /// As a default, it calls groupChannelModule(_:didTapMentionUser:) in SBUGroupChannelModuleListDelegate. - (void)userMessageTextView:(SBUUserMessageTextView * _Nonnull)textView didTapMention:(SBUUser * _Nonnull)user; - (nonnull instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString * _Nullable)reuseIdentifier OBJC_DESIGNATED_INITIALIZER; @@ -10443,18 +10255,18 @@ SWIFT_CLASS("_TtC13SendbirdUIKit20SBUUserListViewModel") @end -@interface SBUUserListViewModel (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)channel:(SBDOpenChannel * _Nonnull)channel userDidExit:(SBDUser * _Nonnull)user; -- (void)channel:(SBDOpenChannel * _Nonnull)channel userDidEnter:(SBDUser * _Nonnull)user; -@end - - @interface SBUUserListViewModel (SWIFT_EXTENSION(SendbirdUIKit)) - (void)channel:(SBDGroupChannel * _Nonnull)channel userDidJoin:(SBDUser * _Nonnull)user; - (void)channel:(SBDGroupChannel * _Nonnull)channel userDidLeave:(SBDUser * _Nonnull)user; @end +@interface SBUUserListViewModel (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)channel:(SBDOpenChannel * _Nonnull)channel userDidExit:(SBDUser * _Nonnull)user; +- (void)channel:(SBDOpenChannel * _Nonnull)channel userDidEnter:(SBDUser * _Nonnull)user; +@end + + @interface SBUUserListViewModel (SWIFT_EXTENSION(SendbirdUIKit)) - (void)channel:(SBDBaseChannel * _Nonnull)channel userWasMuted:(SBDRestrictedUser * _Nonnull)user; - (void)channel:(SBDBaseChannel * _Nonnull)channel userWasUnmuted:(SBDUser * _Nonnull)user; @@ -10466,13 +10278,15 @@ SWIFT_CLASS("_TtC13SendbirdUIKit20SBUUserListViewModel") +@interface SBUUserMessageCell (SWIFT_EXTENSION(SendbirdUIKit)) +- (void)quickReplyView:(SBUQuickReplyView * _Nonnull)view didSelectOption:(SBUQuickReplyOptionView * _Nonnull)optionView; +@end + + SWIFT_CLASS("_TtC13SendbirdUIKit22SBUUserMessageTextView") @interface SBUUserMessageTextView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; @end @@ -10485,33 +10299,14 @@ SWIFT_CLASS("_TtC13SendbirdUIKit15SBUUserNameView") @interface SBUUserNameView : SBUView - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)updateLayouts; -- (void)setupStyles; -- (void)updateStyles; @end -@interface SBUView (SWIFT_EXTENSION(SendbirdUIKit)) -- (void)setupViews; -- (void)setupLayouts; -- (void)updateLayouts; -- (void)setupStyles; -- (void)updateStyles; -- (void)setupActions; -@end - - - /// The SBUBaseFileContentView that displays the voice message SWIFT_CLASS("_TtC13SendbirdUIKit19SBUVoiceContentView") @interface SBUVoiceContentView : SBUBaseFileContentView -- (void)setupViews; -- (void)setupLayouts; -- (void)setupStyles; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; @end @@ -10529,14 +10324,8 @@ SWIFT_CLASS("_TtC13SendbirdUIKit16SBUVoiceFileInfo") /// since: /// 3.4.0 SWIFT_CLASS("_TtC13SendbirdUIKit24SBUVoiceMessageInputView") -@interface SBUVoiceMessageInputView : NSObject +@interface SBUVoiceMessageInputView : NSObject - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)setupViews; -- (void)setupLayouts; -- (void)updateLayouts; -- (void)setupStyles; -- (void)updateStyles; -- (void)setupActions; @end @@ -10608,6 +10397,7 @@ SWIFT_CLASS("_TtC13SendbirdUIKit16SBUVoiceRecorder") + #endif #if defined(__cplusplus) #endif diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Info.plist b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Info.plist index 0c02e98ee..34986977d 100644 Binary files a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Info.plist and b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Info.plist differ diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.abi.json b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.abi.json index 20cf9b5a1..537f99dd3 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.abi.json +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -2972,15 +2972,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileCommonContentView(im)setupViews", + "usr": "s:13SendbirdUIKit27QuotedFileCommonContentViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit27QuotedFileCommonContentViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -2999,15 +2996,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileCommonContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit27QuotedFileCommonContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit27QuotedFileCommonContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -3026,15 +3020,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileCommonContentView(im)setupStyles", + "usr": "s:13SendbirdUIKit27QuotedFileCommonContentViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit27QuotedFileCommonContentViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -3270,6 +3261,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -3332,13 +3330,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -5813,7 +5804,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -6135,7 +6126,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -6174,15 +6165,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUParentMessageInfoReactionView(im)setupStyles", + "usr": "s:13SendbirdUIKit32SBUParentMessageInfoReactionViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit32SBUParentMessageInfoReactionViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -6435,6 +6423,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -6497,13 +6492,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -12002,15 +11990,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageDateView(im)setupViews", + "usr": "s:13SendbirdUIKit18SBUMessageDateViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit18SBUMessageDateViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -12029,15 +12014,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageDateView(im)setupLayouts", + "usr": "s:13SendbirdUIKit18SBUMessageDateViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit18SBUMessageDateViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -12056,15 +12038,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageDateView(im)setupStyles", + "usr": "s:13SendbirdUIKit18SBUMessageDateViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit18SBUMessageDateViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -12180,6 +12159,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -12242,13 +12228,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -13038,18 +13017,15 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)setupViews", + "usr": "s:13SendbirdUIKit7SBUViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { @@ -13064,18 +13040,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)setupLayouts", + "usr": "s:13SendbirdUIKit7SBUViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { @@ -13090,18 +13062,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)updateLayouts", + "usr": "s:13SendbirdUIKit7SBUViewC13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { @@ -13116,18 +13084,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)setupStyles", + "usr": "s:13SendbirdUIKit7SBUViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { @@ -13142,18 +13106,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)updateStyles", + "usr": "s:13SendbirdUIKit7SBUViewC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC12updateStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { @@ -13168,18 +13128,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)setupActions", + "usr": "s:13SendbirdUIKit7SBUViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" } ], @@ -13207,7 +13163,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -13457,9 +13413,9 @@ "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC9emojiListSay0A7ChatSDK5EmojiCGvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -13568,9 +13524,9 @@ "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC9reactionsSay0A7ChatSDK0D0CGvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -13671,9 +13627,9 @@ "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC8maxWidth12CoreGraphics7CGFloatVvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -13851,9 +13807,9 @@ "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC010collectionE16HeightConstraintSo08NSLayoutH0CSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "SetterAccess", "AccessControl" ], @@ -13913,9 +13869,9 @@ "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC010collectionE17MinWidthContraintSo18NSLayoutConstraintCSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "SetterAccess", "AccessControl" ], @@ -14072,15 +14028,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageReactionView(im)setupViews", + "usr": "s:13SendbirdUIKit22SBUMessageReactionViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -14099,15 +14052,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageReactionView(im)setupLayouts", + "usr": "s:13SendbirdUIKit22SBUMessageReactionViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -14126,15 +14076,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageReactionView(im)setupStyles", + "usr": "s:13SendbirdUIKit22SBUMessageReactionViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -14484,6 +14431,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -14546,13 +14500,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -16326,8 +16273,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -16445,8 +16392,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -16564,8 +16511,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -18214,8 +18161,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -18317,8 +18264,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -18436,8 +18383,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -19917,8 +19864,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -20036,8 +19983,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -20155,8 +20102,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -21752,14 +21699,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelSettingsChannelInfoView(im)setupViews", + "usr": "s:13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -21778,14 +21722,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelSettingsChannelInfoView(im)setupLayouts", + "usr": "s:13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -21804,14 +21745,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelSettingsChannelInfoView(im)setupStyles", + "usr": "s:13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -21900,6 +21838,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -21962,13 +21907,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -25595,7 +25533,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -26823,15 +26761,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUEmptyView(im)setupViews", + "usr": "s:13SendbirdUIKit12SBUEmptyViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit12SBUEmptyViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -26850,15 +26785,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUEmptyView(im)setupLayouts", + "usr": "s:13SendbirdUIKit12SBUEmptyViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit12SBUEmptyViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -26905,15 +26837,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUEmptyView(im)setupStyles", + "usr": "s:13SendbirdUIKit12SBUEmptyViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit12SBUEmptyViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -27020,6 +26949,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -27082,13 +27018,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -33793,15 +33722,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelInfoHeaderView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUChannelInfoHeaderViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUChannelInfoHeaderViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -33820,15 +33746,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelInfoHeaderView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUChannelInfoHeaderViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUChannelInfoHeaderViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -33847,15 +33770,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelInfoHeaderView(im)setupStyles", + "usr": "s:13SendbirdUIKit24SBUChannelInfoHeaderViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUChannelInfoHeaderViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -34096,6 +34016,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -34158,13 +34085,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -35443,15 +35363,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCommonContentView(im)setupViews", + "usr": "s:13SendbirdUIKit20SBUCommonContentViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit20SBUCommonContentViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -35470,15 +35387,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCommonContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit20SBUCommonContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit20SBUCommonContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -35497,15 +35411,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCommonContentView(im)setupStyles", + "usr": "s:13SendbirdUIKit20SBUCommonContentViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit20SBUCommonContentViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -35680,6 +35591,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -35742,13 +35660,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -35764,29 +35675,312 @@ }, { "kind": "TypeDecl", - "name": "SBUColorSet", - "printedName": "SBUColorSet", + "name": "SBUCardView", + "printedName": "SBUCardView", "children": [ + { + "kind": "TypeDecl", + "name": "Metric", + "printedName": "Metric", + "children": [ + { + "kind": "Var", + "name": "maxWidth", + "printedName": "maxWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvpZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvpZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvgZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvsZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvMZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textMinWidth", + "printedName": "textMinWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvpZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvpZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvgZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvsZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvMZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageSize", + "printedName": "imageSize", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvpZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvpZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvgZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvsZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvMZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl" + ] + }, { "kind": "Var", - "name": "primary100", - "printedName": "primary100", + "name": "theme", + "printedName": "theme", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -35800,20 +35994,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -35828,20 +36018,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -35856,42 +36042,43 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "primary200", - "printedName": "primary200", + "name": "imageURL", + "printedName": "imageURL", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC8imageURLSSSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC8imageURLSSSgvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "Custom", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -35900,98 +36087,172 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC8imageURLSSSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC8imageURLSSSgvg", "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "title", + "printedName": "title", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC5titleSSSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5titleSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC5titleSSSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5titleSSSgvg", "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "subtitle", + "printedName": "subtitle", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } ], - "accessorKind": "set" - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC8subtitleSSSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC8subtitleSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC8subtitleSSSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC8subtitleSSSgvg", "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "primary300", - "printedName": "primary300", + "name": "text", + "printedName": "text", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC4textSSSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC4textSSSgvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "Custom", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -36000,96 +36261,170 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC4textSSSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC4textSSSgvg", "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "link", + "printedName": "link", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC4linkSSSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC4linkSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC4linkSSSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC4linkSSSgvg", "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "params", + "printedName": "params", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } ], - "accessorKind": "set" - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC6paramsAA0cD6ParamsVSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6paramsAA0cD6ParamsVSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC6paramsAA0cD6ParamsVSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6paramsAA0cD6ParamsVSgvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "primary400", - "printedName": "primary400", + "name": "contentStackView", + "printedName": "contentStackView", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -36100,20 +36435,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36128,20 +36459,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36156,40 +36483,36 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0CvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0CvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "primary500", - "printedName": "primary500", + "name": "mainInfoStackView", + "printedName": "mainInfoStackView", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -36200,20 +36523,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36228,20 +36547,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36256,38 +36571,33 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0CvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0CvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondary100", - "printedName": "secondary100", + "name": "titleStackView", + "printedName": "titleStackView", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -36301,20 +36611,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36329,20 +36635,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36357,40 +36659,36 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0CvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0CvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondary200", - "printedName": "secondary200", + "name": "titleLabel", + "printedName": "titleLabel", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -36401,20 +36699,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36429,20 +36723,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36457,40 +36747,36 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondary300", - "printedName": "secondary300", + "name": "subtitleLabel", + "printedName": "subtitleLabel", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -36501,20 +36787,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36529,20 +36811,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36557,42 +36835,36 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondary400", - "printedName": "secondary400", + "name": "imageView", + "printedName": "imageView", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "Custom", + "Lazy", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -36601,20 +36873,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36629,20 +36897,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36657,40 +36921,36 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0CvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0CvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondary500", - "printedName": "secondary500", + "name": "descriptionTextView", + "printedName": "descriptionTextView", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UITextView", + "printedName": "UIKit.UITextView", + "usr": "c:objc(cs)UITextView" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -36701,20 +36961,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UITextView", + "printedName": "UIKit.UITextView", + "usr": "c:objc(cs)UITextView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36729,20 +36985,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UITextView", + "printedName": "UIKit.UITextView", + "usr": "c:objc(cs)UITextView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36757,41 +37009,43 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0CvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0CvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "background50", - "printedName": "background50", + "name": "textLeftConstraint", + "printedName": "textLeftConstraint", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -36802,20 +37056,24 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36830,20 +37088,24 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36858,38 +37120,41 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "background100", - "printedName": "background100", + "name": "textRightConstraint", + "printedName": "textRightConstraint", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", "AccessControl" ], @@ -36902,20 +37167,24 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36930,20 +37199,24 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36958,22 +37231,327 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, + { + "kind": "Function", + "name": "setupViews", + "printedName": "setupViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit11SBUCardViewC10setupViewsyyF", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC10setupViewsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupLayouts", + "printedName": "setupLayouts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit11SBUCardViewC12setupLayoutsyyF", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC12setupLayoutsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupStyles", + "printedName": "setupStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit11SBUCardViewC11setupStylesyyF", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC11setupStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupActions", + "printedName": "setupActions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit11SBUCardViewC12setupActionsyyF", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC12setupActionsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit11SBUCardViewC9configure4withyAA0cD6ParamsV_tF", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC9configure4withyAA0cD6ParamsV_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "openURL", + "printedName": "openURL()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView(im)openURL", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC7openURLyyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardView", + "printedName": "SendbirdUIKit.SBUCardView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView(im)init", + "mangledName": "$s13SendbirdUIKit11SBUCardViewCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardView", + "printedName": "SendbirdUIKit.SBUCardView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView(im)initWithFrame:", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5frameACSo6CGRectV_tcfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:@M@SendbirdUIKit@objc(cs)SBUView", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "SendbirdUIKit.SBUView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUColorSet", + "printedName": "SBUColorSet", + "children": [ { "kind": "Var", - "name": "background200", - "printedName": "background200", + "name": "primary100", + "printedName": "primary100", "children": [ { "kind": "TypeNominal", @@ -36983,15 +37561,16 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -37008,8 +37587,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37036,8 +37615,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37058,8 +37637,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37072,8 +37651,8 @@ }, { "kind": "Var", - "name": "background300", - "printedName": "background300", + "name": "primary200", + "printedName": "primary200", "children": [ { "kind": "TypeNominal", @@ -37083,8 +37662,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37108,8 +37687,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37136,8 +37715,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37158,8 +37737,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37172,8 +37751,8 @@ }, { "kind": "Var", - "name": "background400", - "printedName": "background400", + "name": "primary300", + "printedName": "primary300", "children": [ { "kind": "TypeNominal", @@ -37183,8 +37762,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37208,8 +37787,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37236,8 +37815,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37258,8 +37837,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37272,8 +37851,8 @@ }, { "kind": "Var", - "name": "background500", - "printedName": "background500", + "name": "primary400", + "printedName": "primary400", "children": [ { "kind": "TypeNominal", @@ -37283,8 +37862,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37308,8 +37887,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37336,8 +37915,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37358,8 +37937,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37372,8 +37951,8 @@ }, { "kind": "Var", - "name": "background600", - "printedName": "background600", + "name": "primary500", + "printedName": "primary500", "children": [ { "kind": "TypeNominal", @@ -37383,8 +37962,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37408,8 +37987,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37436,8 +38015,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37458,8 +38037,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37472,8 +38051,8 @@ }, { "kind": "Var", - "name": "background700", - "printedName": "background700", + "name": "secondary100", + "printedName": "secondary100", "children": [ { "kind": "TypeNominal", @@ -37483,15 +38062,16 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -37508,8 +38088,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37536,8 +38116,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37558,8 +38138,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37572,8 +38152,8 @@ }, { "kind": "Var", - "name": "overlay01", - "printedName": "overlay01", + "name": "secondary200", + "printedName": "secondary200", "children": [ { "kind": "TypeNominal", @@ -37583,16 +38163,15 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -37609,8 +38188,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37637,8 +38216,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37659,8 +38238,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37673,8 +38252,8 @@ }, { "kind": "Var", - "name": "overlay02", - "printedName": "overlay02", + "name": "secondary300", + "printedName": "secondary300", "children": [ { "kind": "TypeNominal", @@ -37684,8 +38263,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37709,8 +38288,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37737,8 +38316,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37759,8 +38338,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37773,8 +38352,8 @@ }, { "kind": "Var", - "name": "onlight01", - "printedName": "onlight01", + "name": "secondary400", + "printedName": "secondary400", "children": [ { "kind": "TypeNominal", @@ -37784,16 +38363,15 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -37810,8 +38388,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37838,8 +38416,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37860,8 +38438,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37874,8 +38452,8 @@ }, { "kind": "Var", - "name": "onlight02", - "printedName": "onlight02", + "name": "secondary500", + "printedName": "secondary500", "children": [ { "kind": "TypeNominal", @@ -37885,8 +38463,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37910,8 +38488,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37938,8 +38516,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37960,8 +38538,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37974,8 +38552,8 @@ }, { "kind": "Var", - "name": "onlight03", - "printedName": "onlight03", + "name": "background50", + "printedName": "background50", "children": [ { "kind": "TypeNominal", @@ -37985,15 +38563,16 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -38010,8 +38589,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38038,8 +38617,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38060,8 +38639,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38074,8 +38653,8 @@ }, { "kind": "Var", - "name": "onlight04", - "printedName": "onlight04", + "name": "background100", + "printedName": "background100", "children": [ { "kind": "TypeNominal", @@ -38085,8 +38664,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38110,109 +38689,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvgZ", - "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvsZ", - "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvMZ", - "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "ondark01", - "printedName": "ondark01", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvpZ", - "moduleName": "SendbirdUIKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38239,8 +38717,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38261,8 +38739,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38275,8 +38753,8 @@ }, { "kind": "Var", - "name": "ondark02", - "printedName": "ondark02", + "name": "background200", + "printedName": "background200", "children": [ { "kind": "TypeNominal", @@ -38286,8 +38764,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38311,8 +38789,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38339,8 +38817,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38361,8 +38839,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38375,8 +38853,8 @@ }, { "kind": "Var", - "name": "ondark03", - "printedName": "ondark03", + "name": "background300", + "printedName": "background300", "children": [ { "kind": "TypeNominal", @@ -38386,8 +38864,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38411,8 +38889,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38439,8 +38917,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38461,8 +38939,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38475,8 +38953,8 @@ }, { "kind": "Var", - "name": "ondark04", - "printedName": "ondark04", + "name": "background400", + "printedName": "background400", "children": [ { "kind": "TypeNominal", @@ -38486,8 +38964,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38511,8 +38989,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38539,8 +39017,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38561,8 +39039,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38575,8 +39053,8 @@ }, { "kind": "Var", - "name": "error100", - "printedName": "error100", + "name": "background500", + "printedName": "background500", "children": [ { "kind": "TypeNominal", @@ -38586,16 +39064,15 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -38612,8 +39089,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38640,8 +39117,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38662,8 +39139,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38676,8 +39153,8 @@ }, { "kind": "Var", - "name": "error200", - "printedName": "error200", + "name": "background600", + "printedName": "background600", "children": [ { "kind": "TypeNominal", @@ -38687,8 +39164,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38712,8 +39189,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38740,8 +39217,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38762,8 +39239,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38776,8 +39253,8 @@ }, { "kind": "Var", - "name": "error300", - "printedName": "error300", + "name": "background700", + "printedName": "background700", "children": [ { "kind": "TypeNominal", @@ -38787,8 +39264,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38812,8 +39289,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38840,8 +39317,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38862,8 +39339,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38876,8 +39353,8 @@ }, { "kind": "Var", - "name": "error400", - "printedName": "error400", + "name": "overlay01", + "printedName": "overlay01", "children": [ { "kind": "TypeNominal", @@ -38887,15 +39364,16 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -38912,8 +39390,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38940,8 +39418,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38962,8 +39440,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38976,8 +39454,8 @@ }, { "kind": "Var", - "name": "error500", - "printedName": "error500", + "name": "overlay02", + "printedName": "overlay02", "children": [ { "kind": "TypeNominal", @@ -38987,8 +39465,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -39012,8 +39490,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39040,8 +39518,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39062,8 +39540,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39076,8 +39554,8 @@ }, { "kind": "Var", - "name": "information", - "printedName": "information", + "name": "onlight01", + "printedName": "onlight01", "children": [ { "kind": "TypeNominal", @@ -39087,8 +39565,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -39113,8 +39591,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39141,8 +39619,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39163,8 +39641,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39177,8 +39655,8 @@ }, { "kind": "Var", - "name": "highlight", - "printedName": "highlight", + "name": "onlight02", + "printedName": "onlight02", "children": [ { "kind": "TypeNominal", @@ -39188,16 +39666,15 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -39214,8 +39691,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39242,8 +39719,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39264,8 +39741,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39275,84 +39752,29 @@ "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "s:13SendbirdUIKit11SBUColorSetC", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SendbirdChatSDK", - "printedName": "SendbirdChatSDK", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "Import", - "name": "PhotosUI", - "printedName": "PhotosUI", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "Import", - "name": "MobileCoreServices", - "printedName": "MobileCoreServices", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "TypeDecl", - "name": "SBUCreateOpenChannelViewController", - "printedName": "SBUCreateOpenChannelViewController", - "children": [ + }, { "kind": "Var", - "name": "headerComponent", - "printedName": "headerComponent", + "name": "onlight03", + "printedName": "onlight03", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", - "children": [ - { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)headerComponent", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvp", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ "HasInitialValue", - "Custom", + "Final", "HasStorage", - "AccessControl", - "RawDocComment", - "ObjC" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -39363,26 +39785,19 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", - "children": [ - { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)headerComponent", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvg", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvgZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" }, @@ -39398,26 +39813,19 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", - "children": [ - { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setHeaderComponent:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvs", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvsZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "set" }, @@ -39433,44 +39841,40 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvM", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvM", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvMZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "profileInputComponent", - "printedName": "profileInputComponent", + "name": "onlight04", + "printedName": "onlight04", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProfileInput", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)profileInputComponent", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvp", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ "HasInitialValue", - "Custom", + "Final", "HasStorage", - "AccessControl", - "ObjC" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -39481,26 +39885,19 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProfileInput", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)profileInputComponent", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvg", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvgZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" }, @@ -39516,26 +39913,19 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProfileInput", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setProfileInputComponent:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvs", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvsZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "set" }, @@ -39551,36 +39941,43 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvM", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvM", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvMZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "theme", - "printedName": "theme", + "name": "ondark01", + "printedName": "ondark01", "children": [ { "kind": "TypeNominal", - "name": "SBUCreateOpenChannelTheme", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", - "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvp", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvp", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ - "Custom", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", - "Custom", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -39589,16 +39986,20 @@ "children": [ { "kind": "TypeNominal", - "name": "SBUCreateOpenChannelTheme", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", - "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvg", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvg", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvgZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -39613,16 +40014,20 @@ }, { "kind": "TypeNominal", - "name": "SBUCreateOpenChannelTheme", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", - "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvs", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvs", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvsZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -39637,44 +40042,40 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvM", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvM", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvMZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "viewModel", - "printedName": "viewModel", + "name": "ondark02", + "printedName": "ondark02", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUCreateOpenChannelViewModel", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", - "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvp", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvp", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ "HasInitialValue", - "Custom", + "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -39685,24 +40086,20 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUCreateOpenChannelViewModel", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", - "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvg", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvg", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvgZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -39717,24 +40114,20 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUCreateOpenChannelViewModel", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", - "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvs", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvs", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvsZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -39749,127 +40142,142 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvM", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvM", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvMZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUCreateOpenChannelViewController", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewController", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController" - } - ], - "declKind": "Constructor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)init", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerCACycfc", - "moduleName": "SendbirdUIKit", - "overriding": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "viewDidLoad", - "printedName": "viewDidLoad()", + "kind": "Var", + "name": "ondark03", + "printedName": "ondark03", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)viewDidLoad", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC11viewDidLoadyyF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "viewDidLoad", + "static": true, "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "viewWillAppear", - "printedName": "viewWillAppear(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)viewWillAppear:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC14viewWillAppearyySbF", - "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "viewWillAppear:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "preferredStatusBarStyle", - "printedName": "preferredStatusBarStyle", + "name": "ondark04", + "printedName": "ondark04", "children": [ { "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)preferredStatusBarStyle", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC23preferredStatusBarStyleSo08UIStatusjK0Vvp", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarStyle", + "static": true, "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -39878,730 +40286,2103 @@ "children": [ { "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)preferredStatusBarStyle", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC23preferredStatusBarStyleSo08UIStatusjK0Vvg", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvgZ", "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarStyle", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "Final" ], "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "createViewModel", - "printedName": "createViewModel()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createViewModel", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createF5ModelyyF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "setupViews", - "printedName": "setupViews()", + "kind": "Var", + "name": "error100", + "printedName": "error100", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupViews", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC10setupViewsyyF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "setupViews", + "static": true, "declAttributes": [ - "ObjC", - "Custom", - "Override", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setupLayouts", - "printedName": "setupLayouts()", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupLayouts", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12setupLayoutsyyF", - "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "setupLayouts", - "declAttributes": [ - "ObjC", - "Custom", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setupStyles", - "printedName": "setupStyles()", - "children": [ + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupStyles", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC11setupStylesyyF", - "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "setupStyles", - "declAttributes": [ - "ObjC", - "Custom", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateStyles", - "printedName": "updateStyles()", - "children": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)updateStyles", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12updateStylesyyF", - "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "updateStyles", - "declAttributes": [ - "ObjC", - "Custom", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "createChannel", - "printedName": "createChannel()", + "kind": "Var", + "name": "error200", + "printedName": "error200", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createChannel", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createE0yyF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createChannel", - "printedName": "createChannel(channelName:coverImage:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createChannelWithChannelName:coverImage:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createE011channelName10coverImageySS_So7UIImageCSgtF", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "selectChannelImage", - "printedName": "selectChannelImage(needRemoveItem:)", + "kind": "Var", + "name": "error300", + "printedName": "error300", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)selectChannelImageWithNeedRemoveItem:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06selectE5Image14needRemoveItemySb_tF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "showChannelImagePicker", - "printedName": "showChannelImagePicker(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "MediaResourceType", - "printedName": "SendbirdUIKit.MediaResourceType", - "usr": "c:@M@SendbirdUIKit@E@MediaResourceType" - } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showChannelImagePickerWith:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC04showE11ImagePicker4withyAA17MediaResourceTypeO_tF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "showCamera", - "printedName": "showCamera()", - "children": [ + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showCamera", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC10showCamerayyF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "showPhotoLibraryPicker", - "printedName": "showPhotoLibraryPicker()", + "kind": "Var", + "name": "error400", + "printedName": "error400", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showPhotoLibraryPicker", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC22showPhotoLibraryPickeryyF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "isOpen": true, + "static": true, "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "showLimitedPhotoLibraryPicker", - "printedName": "showLimitedPhotoLibraryPicker()", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showLimitedPhotoLibraryPicker", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC29showLimitedPhotoLibraryPickeryyF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "showPermissionAlert", - "printedName": "showPermissionAlert(forType:)", + "kind": "Var", + "name": "error500", + "printedName": "error500", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "PermissionType", - "printedName": "SendbirdUIKit.SBUPermissionManager.PermissionType", - "hasDefaultArg": true, - "usr": "s:13SendbirdUIKit20SBUPermissionManagerC14PermissionTypeO" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC19showPermissionAlert7forTypeyAA20SBUPermissionManagerC0iL0O_tF", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC19showPermissionAlert7forTypeyAA20SBUPermissionManagerC0iL0O_tF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "isOpen": true, + "static": true, "declAttributes": [ - "Custom", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "touchesBegan", - "printedName": "touchesBegan(_:with:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", + "kind": "Accessor", "name": "Set", - "printedName": "Swift.Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UITouch", - "printedName": "UIKit.UITouch", - "usr": "c:objc(cs)UITouch" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "usr": "s:Sh" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIEvent?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UIEvent", - "printedName": "UIKit.UIEvent", - "usr": "c:objc(cs)UIEvent" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "information", + "printedName": "information", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)touchesBegan:withEvent:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12touchesBegan_4withyShySo7UITouchCG_So7UIEventCSgtF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "touchesBegan:withEvent:", + "static": true, "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dismissAndMoveToChannel", - "printedName": "dismissAndMoveToChannel(_:messageListParams:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "BaseChannel", - "printedName": "SendbirdChatSDK.BaseChannel", - "usr": "c:@M@SendbirdChatSDK@objc(cs)SBDBaseChannel" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdChatSDK.MessageListParams?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "MessageListParams", - "printedName": "SendbirdChatSDK.MessageListParams", - "usr": "c:@M@SendbirdChatSDK@objc(cs)SBDMessageListParams" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "highlight", + "printedName": "highlight", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)dismissAndMoveToChannel:messageListParams:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC016dismissAndMoveToE0_17messageListParamsy0A7ChatSDK04BaseE0C_AF07MessagemN0CSgtF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "isOpen": true, + "static": true, "declAttributes": [ - "Custom", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", - "RawDocComment", - "ObjC" + "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "errorHandler", - "printedName": "errorHandler(_:_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12errorHandleryySSSg_SiSgtF", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12errorHandleryySSSg_SiSgtF", - "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "declAttributes": [ - "Custom", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, + ] + } + ], + "declKind": "Class", + "usr": "s:13SendbirdUIKit11SBUColorSetC", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "Import", + "name": "PhotosUI", + "printedName": "PhotosUI", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "Import", + "name": "MobileCoreServices", + "printedName": "MobileCoreServices", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "TypeDecl", + "name": "SBUCreateOpenChannelViewController", + "printedName": "SBUCreateOpenChannelViewController", + "children": [ { - "kind": "Function", - "name": "createOpenChannelModule", - "printedName": "createOpenChannelModule(_:didUpdateTitleView:)", + "kind": "Var", + "name": "headerComponent", + "printedName": "headerComponent", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIView?", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", "children": [ { "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateTitleView:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_014didUpdateTitleF0yAA0cdeI0C6HeaderC_So6UIViewCSgtF", + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)headerComponent", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvp", "moduleName": "SendbirdUIKit", - "isOpen": true, "declAttributes": [ + "HasInitialValue", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createOpenChannelModule", - "printedName": "createOpenChannelModule(_:didUpdateLeftItem:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", + "children": [ + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)headerComponent", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", + "children": [ + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setHeaderComponent:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIBarButtonItem?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvM", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateLeftItem:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_17didUpdateLeftItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CSgtF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "createOpenChannelModule", - "printedName": "createOpenChannelModule(_:didUpdateRightItem:)", + "kind": "Var", + "name": "profileInputComponent", + "printedName": "profileInputComponent", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIBarButtonItem?", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "ProfileInput", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateRightItem:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_18didUpdateRightItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CSgtF", + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)profileInputComponent", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvp", "moduleName": "SendbirdUIKit", - "isOpen": true, "declAttributes": [ + "HasInitialValue", "Custom", + "HasStorage", "AccessControl", "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createOpenChannelModule", - "printedName": "createOpenChannelModule(_:didTapLeftItem:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileInput", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)profileInputComponent", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileInput", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setProfileInputComponent:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvM", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "theme", + "printedName": "theme", + "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "SBUCreateOpenChannelTheme", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", + "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didTapLeftItem:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_14didTapLeftItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CtF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvp", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvp", "moduleName": "SendbirdUIKit", - "isOpen": true, "declAttributes": [ "Custom", "AccessControl", - "ObjC" + "Custom", + "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createOpenChannelModule", - "printedName": "createOpenChannelModule(_:didTapRightItem:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelTheme", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", + "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvg", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelTheme", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", + "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvs", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvM", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "viewModel", + "printedName": "viewModel", + "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelViewModel", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", + "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didTapRightItem:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_15didTapRightItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CtF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvp", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvp", "moduleName": "SendbirdUIKit", - "isOpen": true, "declAttributes": [ + "HasInitialValue", "Custom", + "HasStorage", "AccessControl", - "ObjC" + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelViewModel", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", + "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvg", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelViewModel", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", + "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvs", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvM", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelViewController", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewController", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)init", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "AccessControl", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "viewDidLoad", + "printedName": "viewDidLoad()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)viewDidLoad", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC11viewDidLoadyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "viewDidLoad", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewWillAppear", + "printedName": "viewWillAppear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)viewWillAppear:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC14viewWillAppearyySbF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "viewWillAppear:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "preferredStatusBarStyle", + "printedName": "preferredStatusBarStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStatusBarStyle", + "printedName": "UIKit.UIStatusBarStyle", + "usr": "c:@E@UIStatusBarStyle" + } + ], + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)preferredStatusBarStyle", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC23preferredStatusBarStyleSo08UIStatusjK0Vvp", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "preferredStatusBarStyle", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStatusBarStyle", + "printedName": "UIKit.UIStatusBarStyle", + "usr": "c:@E@UIStatusBarStyle" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)preferredStatusBarStyle", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC23preferredStatusBarStyleSo08UIStatusjK0Vvg", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "preferredStatusBarStyle", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createViewModel", + "printedName": "createViewModel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createViewModel", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createF5ModelyyF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupViews", + "printedName": "setupViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupViews", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC10setupViewsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "setupViews", + "declAttributes": [ + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupLayouts", + "printedName": "setupLayouts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupLayouts", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12setupLayoutsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "setupLayouts", + "declAttributes": [ + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupStyles", + "printedName": "setupStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupStyles", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC11setupStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "setupStyles", + "declAttributes": [ + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateStyles", + "printedName": "updateStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)updateStyles", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12updateStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "updateStyles", + "declAttributes": [ + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChannel", + "printedName": "createChannel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createChannel", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createE0yyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChannel", + "printedName": "createChannel(channelName:coverImage:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createChannelWithChannelName:coverImage:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createE011channelName10coverImageySS_So7UIImageCSgtF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "selectChannelImage", + "printedName": "selectChannelImage(needRemoveItem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)selectChannelImageWithNeedRemoveItem:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06selectE5Image14needRemoveItemySb_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showChannelImagePicker", + "printedName": "showChannelImagePicker(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaResourceType", + "printedName": "SendbirdUIKit.MediaResourceType", + "usr": "c:@M@SendbirdUIKit@E@MediaResourceType" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showChannelImagePickerWith:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC04showE11ImagePicker4withyAA17MediaResourceTypeO_tF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showCamera", + "printedName": "showCamera()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showCamera", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC10showCamerayyF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showPhotoLibraryPicker", + "printedName": "showPhotoLibraryPicker()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showPhotoLibraryPicker", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC22showPhotoLibraryPickeryyF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showLimitedPhotoLibraryPicker", + "printedName": "showLimitedPhotoLibraryPicker()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showLimitedPhotoLibraryPicker", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC29showLimitedPhotoLibraryPickeryyF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showPermissionAlert", + "printedName": "showPermissionAlert(forType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PermissionType", + "printedName": "SendbirdUIKit.SBUPermissionManager.PermissionType", + "hasDefaultArg": true, + "usr": "s:13SendbirdUIKit20SBUPermissionManagerC14PermissionTypeO" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC19showPermissionAlert7forTypeyAA20SBUPermissionManagerC0iL0O_tF", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC19showPermissionAlert7forTypeyAA20SBUPermissionManagerC0iL0O_tF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "touchesBegan", + "printedName": "touchesBegan(_:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "UITouch", + "printedName": "UIKit.UITouch", + "usr": "c:objc(cs)UITouch" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIEvent", + "printedName": "UIKit.UIEvent", + "usr": "c:objc(cs)UIEvent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)touchesBegan:withEvent:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12touchesBegan_4withyShySo7UITouchCG_So7UIEventCSgtF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "touchesBegan:withEvent:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dismissAndMoveToChannel", + "printedName": "dismissAndMoveToChannel(_:messageListParams:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BaseChannel", + "printedName": "SendbirdChatSDK.BaseChannel", + "usr": "c:@M@SendbirdChatSDK@objc(cs)SBDBaseChannel" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdChatSDK.MessageListParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageListParams", + "printedName": "SendbirdChatSDK.MessageListParams", + "usr": "c:@M@SendbirdChatSDK@objc(cs)SBDMessageListParams" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)dismissAndMoveToChannel:messageListParams:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC016dismissAndMoveToE0_17messageListParamsy0A7ChatSDK04BaseE0C_AF07MessagemN0CSgtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "errorHandler", + "printedName": "errorHandler(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12errorHandleryySSSg_SiSgtF", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12errorHandleryySSSg_SiSgtF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createOpenChannelModule", + "printedName": "createOpenChannelModule(_:didUpdateTitleView:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateTitleView:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_014didUpdateTitleF0yAA0cdeI0C6HeaderC_So6UIViewCSgtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createOpenChannelModule", + "printedName": "createOpenChannelModule(_:didUpdateLeftItem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIBarButtonItem?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateLeftItem:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_17didUpdateLeftItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CSgtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createOpenChannelModule", + "printedName": "createOpenChannelModule(_:didUpdateRightItem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIBarButtonItem?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateRightItem:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_18didUpdateRightItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CSgtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createOpenChannelModule", + "printedName": "createOpenChannelModule(_:didTapLeftItem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + }, + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didTapLeftItem:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_14didTapLeftItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createOpenChannelModule", + "printedName": "createOpenChannelModule(_:didTapRightItem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + }, + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didTapRightItem:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_15didTapRightItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" ], "funcSelfKind": "NonMutating" }, @@ -57988,7 +59769,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -82389,15 +84170,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileImageContentView(im)setupViews", + "usr": "s:13SendbirdUIKit26QuotedFileImageContentViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit26QuotedFileImageContentViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -82417,15 +84195,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileImageContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit26QuotedFileImageContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit26QuotedFileImageContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -82466,15 +84241,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileImageContentView(im)setupStyles", + "usr": "s:13SendbirdUIKit26QuotedFileImageContentViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit26QuotedFileImageContentViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -82691,6 +84463,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -82753,13 +84532,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -83940,13 +85712,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)setupViews", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -83964,13 +85734,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)setupLayouts", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -83988,13 +85756,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)updateLayouts", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateLayouts", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -84012,13 +85778,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)setupStyles", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -84036,13 +85800,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)updateStyles", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC12updateStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -84060,13 +85822,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)setupActions", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -84125,7 +85885,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -86770,15 +88530,14 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)setupViews", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP10setupViewsyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP10setupViewsyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" @@ -86795,15 +88554,14 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)setupStyles", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP11setupStylesyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP11setupStylesyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" @@ -86820,15 +88578,14 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)updateStyles", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP12updateStylesyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP12updateStylesyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" @@ -86845,15 +88602,14 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)setupLayouts", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" @@ -86870,15 +88626,14 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)updateLayouts", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" @@ -86895,29 +88650,25 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)setupActions", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP12setupActionsyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP12setupActionsyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" } ], "declKind": "Protocol", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP", "moduleName": "SendbirdUIKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ] }, @@ -87816,7 +89567,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -88895,7 +90646,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -91087,8 +92838,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "ReferenceOwnership", "AccessControl", "RawDocComment" @@ -93394,7 +95145,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -97489,14 +99240,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelMessageWebView(im)setupViews", + "usr": "s:13SendbirdUIKit28SBUOpenChannelMessageWebViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit28SBUOpenChannelMessageWebViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "ObjC", "Custom", "Override", "AccessControl" @@ -97515,14 +99264,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelMessageWebView(im)setupStyles", + "usr": "s:13SendbirdUIKit28SBUOpenChannelMessageWebViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit28SBUOpenChannelMessageWebViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "ObjC", "Custom", "Override", "AccessControl" @@ -97541,14 +99288,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelMessageWebView(im)setupLayouts", + "usr": "s:13SendbirdUIKit28SBUOpenChannelMessageWebViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit28SBUOpenChannelMessageWebViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "ObjC", "Custom", "Override", "AccessControl" @@ -97677,7 +99422,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -97918,13 +99663,12 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC10setupViewsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ "Dynamic", - "ObjC", "Custom", "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -97945,13 +99689,12 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ "Dynamic", - "ObjC", "Custom", "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -97972,12 +99715,11 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateLayouts", "declAttributes": [ "Dynamic", - "ObjC", "Custom", - "AccessControl" + "AccessControl", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -97998,13 +99740,12 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC11setupStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ "Dynamic", - "ObjC", "Custom", "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -98025,12 +99766,11 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC12updateStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ "Dynamic", - "ObjC", "Custom", - "AccessControl" + "AccessControl", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -98051,13 +99791,12 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC12setupActionsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ "Dynamic", - "ObjC", "Custom", "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -98089,7 +99828,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -102040,6 +103779,42 @@ ], "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "groupChannelModule", + "printedName": "groupChannelModule(_:didSelectQuickReplyOption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "List", + "printedName": "SendbirdUIKit.SBUGroupChannelModule.List", + "usr": "s:13SendbirdUIKit21SBUGroupChannelModuleC4ListC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUGroupChannelViewController(im)groupChannelModule:didSelectQuickReplyOption:", + "mangledName": "$s13SendbirdUIKit29SBUGroupChannelViewControllerC05groupD6Module_25didSelectQuickReplyOptionyAA0cdH0C4ListC_SStF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, { "kind": "Function", "name": "baseChannelModule", @@ -104145,15 +105920,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelCommonContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit31SBUOpenChannelCommonContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit31SBUOpenChannelCommonContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -104172,15 +105944,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelCommonContentView(im)setupStyles", + "usr": "s:13SendbirdUIKit31SBUOpenChannelCommonContentViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit31SBUOpenChannelCommonContentViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -104319,6 +106088,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -104381,13 +106157,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -110738,127 +112507,127 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUOpenChannelBaseMessageCell", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvg", + "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUOpenChannelBaseMessageCell", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvs", + "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvM", + "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userMessageCell", + "printedName": "userMessageCell", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUOpenChannelBaseMessageCell", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC15userMessageCellAA0cd4BasehI0CSgvp", + "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC15userMessageCellAA0cd4BasehI0CSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasInitialValue", "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUOpenChannelBaseMessageCell", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvg", - "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvg", - "moduleName": "SendbirdUIKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUOpenChannelBaseMessageCell", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvs", - "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvs", - "moduleName": "SendbirdUIKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvM", - "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvM", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "userMessageCell", - "printedName": "userMessageCell", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUOpenChannelBaseMessageCell", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC15userMessageCellAA0cd4BasehI0CSgvp", - "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC15userMessageCellAA0cd4BasehI0CSgvp", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -110976,8 +112745,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -111095,8 +112864,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -111214,8 +112983,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -113422,9 +115191,9 @@ "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC5MediaC9mediaViewSo6UIViewCvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -117089,9 +118858,9 @@ "mangledName": "$s13SendbirdUIKit22SBUSelectableStackViewC8positionAA15MessagePositionOvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -117232,14 +119001,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView(im)setupViews", + "usr": "s:13SendbirdUIKit22SBUSelectableStackViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit22SBUSelectableStackViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -117259,14 +119025,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView(im)setupLayouts", + "usr": "s:13SendbirdUIKit22SBUSelectableStackViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit22SBUSelectableStackViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -117285,14 +119048,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView(im)setupStyles", + "usr": "s:13SendbirdUIKit22SBUSelectableStackViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit22SBUSelectableStackViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -117432,6 +119192,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -117494,13 +119261,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -121160,15 +122920,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedUserMessageView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUQuotedUserMessageViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedUserMessageViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -121187,15 +122944,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedUserMessageView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUQuotedUserMessageViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedUserMessageViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -121214,15 +122968,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedUserMessageView(im)setupStyles", + "usr": "s:13SendbirdUIKit24SBUQuotedUserMessageViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedUserMessageViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -121347,6 +123098,13 @@ "usr": "s:13SendbirdUIKit28SBUQuotedMessageViewProtocolP", "mangledName": "$s13SendbirdUIKit28SBUQuotedMessageViewProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -121409,13 +123167,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -123445,9 +125196,9 @@ "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC16heightConstraintSo08NSLayoutG0CSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -123611,9 +125362,9 @@ "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC19isLimitGuideEnabledSbvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -123697,9 +125448,9 @@ "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC8delegateAA0cdE8Delegate_pSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "ReferenceOwnership", "AccessControl", "RawDocComment" @@ -123999,15 +125750,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSuggestedMentionList(im)setupViews", + "usr": "s:13SendbirdUIKit23SBUSuggestedMentionListC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -124026,15 +125774,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSuggestedMentionList(im)setupLayouts", + "usr": "s:13SendbirdUIKit23SBUSuggestedMentionListC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -124053,15 +125798,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSuggestedMentionList(im)setupStyles", + "usr": "s:13SendbirdUIKit23SBUSuggestedMentionListC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -124425,272 +126167,272 @@ "ObjectiveC.NSObject" ], "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, { "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SendbirdChatSDK", - "printedName": "SendbirdChatSDK", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SendbirdChatSDK", - "printedName": "SendbirdChatSDK", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "MessageTemplateParser", - "printedName": "MessageTemplateParser", - "children": [ - { - "kind": "Function", - "name": "getMock", - "printedName": "getMock(widthT:widthV:heightT:heightV:contentMode:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit21MessageTemplateParserC7getMock6widthT0H1V7heightT0I1V11contentModeS2S_SiSSSiSStFZ", - "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC7getMock6widthT0H1V7heightT0I1V11contentModeS2S_SiSSSiSStFZ", - "moduleName": "SendbirdUIKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" }, - { - "kind": "Function", - "name": "parserTest", - "printedName": "parserTest()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit21MessageTemplateParserC10parserTestyyF", - "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC10parserTestyyF", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "MessageTemplateParser", - "printedName": "SendbirdUIKit.MessageTemplateParser", - "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser" - } - ], - "declKind": "Constructor", - "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser(im)init", - "mangledName": "$s13SendbirdUIKit21MessageTemplateParserCACycfc", - "moduleName": "SendbirdUIKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser", - "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MessageTemplateParser", + "printedName": "MessageTemplateParser", + "children": [ + { + "kind": "Function", + "name": "getMock", + "printedName": "getMock(widthT:widthV:heightT:heightV:contentMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit21MessageTemplateParserC7getMock6widthT0H1V7heightT0I1V11contentModeS2S_SiSSSiSStFZ", + "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC7getMock6widthT0H1V7heightT0I1V11contentModeS2S_SiSSSiSStFZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parserTest", + "printedName": "parserTest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit21MessageTemplateParserC10parserTestyyF", + "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC10parserTestyyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTemplateParser", + "printedName": "SendbirdUIKit.MessageTemplateParser", + "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser(im)init", + "mangledName": "$s13SendbirdUIKit21MessageTemplateParserCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser", + "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ { "kind": "Conformance", "name": "Equatable", @@ -127083,7 +128825,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -127340,7 +129082,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -133611,6 +135353,885 @@ "declKind": "Import", "moduleName": "SendbirdUIKit" }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SBUQuickReplyViewDelegate", + "children": [ + { + "kind": "Function", + "name": "quickReplyView", + "printedName": "quickReplyView(_:didSelectOption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP05quickdE0_15didSelectOptionyAA0cdE0C_AA0cdjE0CtF", + "mangledName": "$s13SendbirdUIKit25SBUQuickReplyViewDelegateP05quickdE0_15didSelectOptionyAA0cdE0C_AA0cdjE0CtF", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUQuickReplyViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP", + "mangledName": "$s13SendbirdUIKit25SBUQuickReplyViewDelegateP", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyView", + "printedName": "SBUQuickReplyView", + "children": [ + { + "kind": "Var", + "name": "stackView", + "printedName": "stackView", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvs", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0CvM", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0CvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "topSpacer", + "printedName": "topSpacer", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvs", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvM", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC7optionsSaySSGvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC7optionsSaySSGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC7optionsSaySSGvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC7optionsSaySSGvg", + "moduleName": "SendbirdUIKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messageId", + "printedName": "messageId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9messageIds5Int64VSgvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9messageIds5Int64VSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9messageIds5Int64VSgvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9messageIds5Int64VSgvg", + "moduleName": "SendbirdUIKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "params", + "printedName": "params", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewParams", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC6paramsAA0cdE6ParamsVSgvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC6paramsAA0cdE6ParamsVSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewParams", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC6paramsAA0cdE6ParamsVSgvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC6paramsAA0cdE6ParamsVSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate?" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvs", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvM", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setupViews", + "printedName": "setupViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC10setupViewsyyF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC10setupViewsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupLayouts", + "printedName": "setupLayouts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC12setupLayoutsyyF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC12setupLayoutsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupStyles", + "printedName": "setupStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC11setupStylesyyF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC11setupStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(with:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewParams", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9configure4with8delegateyAA0cdE6ParamsV_AA0cdE8Delegate_pSgtF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9configure4with8delegateyAA0cdE6ParamsV_AA0cdE8Delegate_pSgtF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createQuickReplyOptionViews", + "printedName": "createQuickReplyOptionViews(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUQuickReplyOptionView]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC011createQuickD11OptionViews7optionsSayAA0cdhE0CGSaySSG_tF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC011createQuickD11OptionViews7optionsSayAA0cdhE0CGSaySSG_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "quickReplyOptionViewDidSelect", + "printedName": "quickReplyOptionViewDidSelect(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC05quickd6OptionE9DidSelectyyAA0cdgE0CF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC05quickd6OptionE9DidSelectyyAA0cdgE0CF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView(im)init", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView(im)initWithFrame:", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC5frameACSo6CGRectV_tcfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "IBDesignable", + "ObjC" + ], + "superclassUsr": "c:@M@SendbirdUIKit@objc(cs)SBUView", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "SendbirdUIKit.SBUView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SBUQuickReplyOptionViewDelegate", + "printedName": "SBUQuickReplyOptionViewDelegate", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP", + "mangledName": "$s13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP" + }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, { "kind": "TypeDecl", "name": "SBUOpenChannelContentBaseMessageCell", @@ -135116,7 +137737,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -139451,7 +142072,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -139583,7 +142204,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -140135,8 +142756,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "SetterAccess", "AccessControl" ], @@ -140431,15 +143052,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUThreadInfoView(im)setupViews", + "usr": "s:13SendbirdUIKit17SBUThreadInfoViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit17SBUThreadInfoViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -140487,15 +143105,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUThreadInfoView(im)setupStyles", + "usr": "s:13SendbirdUIKit17SBUThreadInfoViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit17SBUThreadInfoViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -140514,15 +143129,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUThreadInfoView(im)setupLayouts", + "usr": "s:13SendbirdUIKit17SBUThreadInfoViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit17SBUThreadInfoViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -140541,15 +143153,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUThreadInfoView(im)setupActions", + "usr": "s:13SendbirdUIKit17SBUThreadInfoViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit17SBUThreadInfoViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -140671,6 +143280,13 @@ "usr": "s:13SendbirdUIKit25SBUThreadInfoViewProtocolP", "mangledName": "$s13SendbirdUIKit25SBUThreadInfoViewProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -140733,13 +143349,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -141361,15 +143970,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageThreadTitleView(im)setupViews", + "usr": "s:13SendbirdUIKit25SBUMessageThreadTitleViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit25SBUMessageThreadTitleViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -141388,15 +143994,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageThreadTitleView(im)setupLayouts", + "usr": "s:13SendbirdUIKit25SBUMessageThreadTitleViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit25SBUMessageThreadTitleViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -141415,15 +144018,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageThreadTitleView(im)setupStyles", + "usr": "s:13SendbirdUIKit25SBUMessageThreadTitleViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit25SBUMessageThreadTitleViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -141591,6 +144191,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -141653,13 +144260,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -144234,15 +146834,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateChannelTypeSelector(im)setupViews", + "usr": "s:13SendbirdUIKit28SBUCreateChannelTypeSelectorC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit28SBUCreateChannelTypeSelectorC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -144261,15 +146858,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateChannelTypeSelector(im)setupStyles", + "usr": "s:13SendbirdUIKit28SBUCreateChannelTypeSelectorC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit28SBUCreateChannelTypeSelectorC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -144288,15 +146882,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateChannelTypeSelector(im)updateStyles", + "usr": "s:13SendbirdUIKit28SBUCreateChannelTypeSelectorC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit28SBUCreateChannelTypeSelectorC12updateStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -144315,15 +146906,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateChannelTypeSelector(im)setupLayouts", + "usr": "s:13SendbirdUIKit28SBUCreateChannelTypeSelectorC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit28SBUCreateChannelTypeSelectorC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -144579,6 +147167,13 @@ "usr": "s:13SendbirdUIKit36SBUCreateChannelTypeSelectorProtocolP", "mangledName": "$s13SendbirdUIKit36SBUCreateChannelTypeSelectorProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -144641,13 +147236,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -147739,6 +150327,39 @@ "mangledName": "$s13SendbirdUIKit19ChannelCreationTypeO9broadcastyA2CmF", "moduleName": "SendbirdUIKit" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.ChannelCreationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ChannelCreationType", + "printedName": "SendbirdUIKit.ChannelCreationType", + "usr": "s:13SendbirdUIKit19ChannelCreationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit19ChannelCreationTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s13SendbirdUIKit19ChannelCreationTypeO8rawValueACSgSi_tcfc", + "moduleName": "SendbirdUIKit", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -147777,39 +150398,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.ChannelCreationType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ChannelCreationType", - "printedName": "SendbirdUIKit.ChannelCreationType", - "usr": "s:13SendbirdUIKit19ChannelCreationTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:13SendbirdUIKit19ChannelCreationTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s13SendbirdUIKit19ChannelCreationTypeO8rawValueACSgSi_tcfc", - "moduleName": "SendbirdUIKit", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -149070,38 +151658,6 @@ "mangledName": "$s13SendbirdUIKit12UserListTypeO16suggestedMentionyACSbcACmF", "moduleName": "SendbirdUIKit" }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "UserListType", - "printedName": "SendbirdUIKit.UserListType", - "usr": "s:13SendbirdUIKit12UserListTypeO" - }, - { - "kind": "TypeNominal", - "name": "UserListType", - "printedName": "SendbirdUIKit.UserListType", - "usr": "s:13SendbirdUIKit12UserListTypeO" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit12UserListTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s13SendbirdUIKit12UserListTypeO2eeoiySbAC_ACtFZ", - "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, { "kind": "Var", "name": "hashValue", @@ -149165,6 +151721,38 @@ "moduleName": "SendbirdUIKit", "implicit": true, "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UserListType", + "printedName": "SendbirdUIKit.UserListType", + "usr": "s:13SendbirdUIKit12UserListTypeO" + }, + { + "kind": "TypeNominal", + "name": "UserListType", + "printedName": "SendbirdUIKit.UserListType", + "usr": "s:13SendbirdUIKit12UserListTypeO" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit12UserListTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s13SendbirdUIKit12UserListTypeO2eeoiySbAC_ACtFZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" } ], "declKind": "Enum", @@ -150770,6 +153358,39 @@ ], "fixedbinaryorder": 4 }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.MediaResourceType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaResourceType", + "printedName": "SendbirdUIKit.MediaResourceType", + "usr": "c:@M@SendbirdUIKit@E@MediaResourceType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit17MediaResourceTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s13SendbirdUIKit17MediaResourceTypeO8rawValueACSgSi_tcfc", + "moduleName": "SendbirdUIKit", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -150808,39 +153429,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.MediaResourceType?", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaResourceType", - "printedName": "SendbirdUIKit.MediaResourceType", - "usr": "c:@M@SendbirdUIKit@E@MediaResourceType" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:13SendbirdUIKit17MediaResourceTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s13SendbirdUIKit17MediaResourceTypeO8rawValueACSgSi_tcfc", - "moduleName": "SendbirdUIKit", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -154335,9 +156923,9 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC015baseFileContentF0AA07SBUBasehiF0Cvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -155130,9 +157718,9 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC21userProfileTapHandleryycSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -155275,9 +157863,9 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC19tapHandlerToContentyycSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -155420,302 +158008,302 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "Custom", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvg", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvg", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvs", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvs", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvM", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvM", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "emojiTapHandler", - "printedName": "emojiTapHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvp", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvp", - "moduleName": "SendbirdUIKit", - "declAttributes": [ "HasInitialValue", "HasStorage", - "Custom", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvg", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvg", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvs", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvs", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvM", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvM", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "moreEmojiTapHandler", - "printedName": "moreEmojiTapHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC19moreEmojiTapHandleryycSgvp", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC19moreEmojiTapHandleryycSgvp", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvg", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvs", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvM", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "emojiTapHandler", + "printedName": "emojiTapHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvp", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvg", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvs", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvM", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "moreEmojiTapHandler", + "printedName": "moreEmojiTapHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC19moreEmojiTapHandleryycSgvp", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC19moreEmojiTapHandleryycSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], @@ -155859,9 +158447,9 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC21emojiLongPressHandlerySScSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -156007,9 +158595,9 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC17mentionTapHandleryAA7SBUUserCcSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -158276,6 +160864,194 @@ "accessorKind": "_modify" } ] + }, + { + "kind": "Var", + "name": "cardViewParamsCollectionBuilder", + "printedName": "cardViewParamsCollectionBuilder", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams])?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvpZ", + "mangledName": "$s13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvpZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams])?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvgZ", + "mangledName": "$s13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams])?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvsZ", + "mangledName": "$s13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvMZ", + "mangledName": "$s13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] } ], "declKind": "Class", @@ -158519,6 +161295,816 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyOptionViewDelegate", + "printedName": "SBUQuickReplyOptionViewDelegate", + "children": [ + { + "kind": "Function", + "name": "quickReplyOptionViewDidSelect", + "printedName": "quickReplyOptionViewDidSelect(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP05quickdeF9DidSelectyyAA0cdeF0CF", + "mangledName": "$s13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP05quickdeF9DidSelectyyAA0cdeF0CF", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUQuickReplyOptionViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP", + "mangledName": "$s13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyOptionView", + "printedName": "SBUQuickReplyOptionView", + "children": [ + { + "kind": "Var", + "name": "theme", + "printedName": "theme", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvs", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvM", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "selectableStackView", + "printedName": "selectableStackView", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUSelectableStackView", + "printedName": "SendbirdUIKit.SBUSelectableStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUSelectableStackView", + "printedName": "SendbirdUIKit.SBUSelectableStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUSelectableStackView", + "printedName": "SendbirdUIKit.SBUSelectableStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvs", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0CvM", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0CvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textView", + "printedName": "textView", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvs", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvM", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC4textSSSgvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC4textSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC4textSSSgvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC4textSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate?" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvs", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvM", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setupViews", + "printedName": "setupViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC10setupViewsyyF", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC10setupViewsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupLayouts", + "printedName": "setupLayouts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC12setupLayoutsyyF", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC12setupLayoutsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupStyles", + "printedName": "setupStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC11setupStylesyyF", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC11setupStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupActions", + "printedName": "setupActions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC12setupActionsyyF", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC12setupActionsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSelectOption", + "printedName": "onSelectOption()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView(im)onSelectOption", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC08onSelectE0yyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(with:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC9configure4with8delegateySS_AA0cdeF8Delegate_pSgtF", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC9configure4with8delegateySS_AA0cdeF8Delegate_pSgtF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView(im)init", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView(im)initWithFrame:", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC5frameACSo6CGRectV_tcfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:@M@SendbirdUIKit@objc(cs)SBUView", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "SendbirdUIKit.SBUView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -158606,9 +162192,9 @@ "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC5themeAA19SBUMessageCellThemeCvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -158694,9 +162280,9 @@ "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC9messageIds5Int64Vvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -159250,9 +162836,9 @@ "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC6paramsAA0cdeF6ParamsCSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "SetterAccess", "AccessControl", "RawDocComment" @@ -159716,9 +163302,9 @@ "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC013mainContainerF0AA018SBUSelectableStackF0Cvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -159965,15 +163551,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedBaseMessageView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUQuotedBaseMessageViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -159993,15 +163576,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedBaseMessageView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUQuotedBaseMessageViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -160020,15 +163600,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedBaseMessageView(im)setupStyles", + "usr": "s:13SendbirdUIKit24SBUQuotedBaseMessageViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -160047,15 +163624,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedBaseMessageView(im)setupActions", + "usr": "s:13SendbirdUIKit24SBUQuotedBaseMessageViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -160148,6 +163722,13 @@ "usr": "s:13SendbirdUIKit28SBUQuotedMessageViewProtocolP", "mangledName": "$s13SendbirdUIKit28SBUQuotedMessageViewProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -160210,13 +163791,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -160582,7 +164156,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -160732,8 +164306,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "ObjC" ], @@ -162893,7 +166467,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -165574,6 +169148,39 @@ ], "fixedbinaryorder": 8 }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.ChannelMemberListType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ChannelMemberListType", + "printedName": "SendbirdUIKit.ChannelMemberListType", + "usr": "c:@M@SendbirdUIKit@E@ChannelMemberListType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit21ChannelMemberListTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s13SendbirdUIKit21ChannelMemberListTypeO8rawValueACSgSi_tcfc", + "moduleName": "SendbirdUIKit", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -165612,39 +169219,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.ChannelMemberListType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ChannelMemberListType", - "printedName": "SendbirdUIKit.ChannelMemberListType", - "usr": "c:@M@SendbirdUIKit@E@ChannelMemberListType" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:13SendbirdUIKit21ChannelMemberListTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s13SendbirdUIKit21ChannelMemberListTypeO8rawValueACSgSi_tcfc", - "moduleName": "SendbirdUIKit", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -165697,6 +169271,474 @@ } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUCardViewParams", + "printedName": "SBUCardViewParams", + "children": [ + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV8imageURLSSSgvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV8imageURLSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV8imageURLSSSgvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV8imageURLSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "title", + "printedName": "title", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV5titleSSSgvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV5titleSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV5titleSSSgvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV5titleSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "subtitle", + "printedName": "subtitle", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV8subtitleSSSgvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV8subtitleSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV8subtitleSSSgvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV8subtitleSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV11descriptionSSSgvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV11descriptionSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV11descriptionSSSgvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV11descriptionSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "link", + "printedName": "link", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV4linkSSSgvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV4linkSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV4linkSSSgvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV4linkSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasLink", + "printedName": "hasLink", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV7hasLinkSbvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV7hasLinkSbvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV7hasLinkSbvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV7hasLinkSbvg", + "moduleName": "SendbirdUIKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(imageURL:title:subtitle:description:link:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV8imageURL5title8subtitle11description4linkACSSSg_A4Itcfc", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV8imageURL5title8subtitle11description4linkACSSSg_A4Itcfc", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -166933,15 +170975,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserNameView(im)setupViews", + "usr": "s:13SendbirdUIKit15SBUUserNameViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit15SBUUserNameViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -166960,15 +170999,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserNameView(im)setupLayouts", + "usr": "s:13SendbirdUIKit15SBUUserNameViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit15SBUUserNameViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -166987,15 +171023,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserNameView(im)updateLayouts", + "usr": "s:13SendbirdUIKit15SBUUserNameViewC13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit15SBUUserNameViewC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "updateLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -167014,15 +171047,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserNameView(im)setupStyles", + "usr": "s:13SendbirdUIKit15SBUUserNameViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit15SBUUserNameViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -167041,15 +171071,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserNameView(im)updateStyles", + "usr": "s:13SendbirdUIKit15SBUUserNameViewC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit15SBUUserNameViewC12updateStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -167138,6 +171165,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -167200,13 +171234,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -167431,6 +171458,186 @@ ], "hasMissingDesignatedInitializers": true }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyViewParams", + "printedName": "SBUQuickReplyViewParams", + "children": [ + { + "kind": "Var", + "name": "messageId", + "printedName": "messageId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV9messageIds5Int64Vvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV9messageIds5Int64Vvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV9messageIds5Int64Vvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV9messageIds5Int64Vvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "replyOptions", + "printedName": "replyOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV12replyOptionsSaySSGvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV12replyOptionsSaySSGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV12replyOptionsSaySSGvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV12replyOptionsSaySSGvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(messageId:replyOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewParams", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV9messageId12replyOptionsACs5Int64V_SaySSGtcfc", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV9messageId12replyOptionsACs5Int64V_SaySSGtcfc", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -169559,8 +173766,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "ObjC" ], @@ -174443,8 +178650,8 @@ "mangledName": "$s13SendbirdUIKit21SBUMessageProfileViewC9urlStringSSvp", "moduleName": "SendbirdUIKit", "declAttributes": [ - "HasStorage", "Custom", + "HasStorage", "AccessControl" ], "hasStorage": true, @@ -174566,9 +178773,9 @@ "mangledName": "$s13SendbirdUIKit21SBUMessageProfileViewC17imageDownloadTaskSo012NSURLSessionH0CSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -174724,15 +178931,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageProfileView(im)setupViews", + "usr": "s:13SendbirdUIKit21SBUMessageProfileViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit21SBUMessageProfileViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -174751,15 +178955,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageProfileView(im)setupLayouts", + "usr": "s:13SendbirdUIKit21SBUMessageProfileViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit21SBUMessageProfileViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -174778,15 +178979,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageProfileView(im)setupStyles", + "usr": "s:13SendbirdUIKit21SBUMessageProfileViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit21SBUMessageProfileViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -174856,6 +179054,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -174918,13 +179123,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -177876,7 +182074,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -178502,8 +182700,15 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SBUQuickReplyViewDelegate", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP", + "mangledName": "$s13SendbirdUIKit25SBUQuickReplyViewDelegateP" } ] }, @@ -179707,7 +183912,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -181397,10 +185602,59 @@ } ] }, + { + "kind": "Var", + "name": "shouldHideQuickReply", + "printedName": "shouldHideQuickReply", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit24SBUUserMessageCellParamsC20shouldHideQuickReplySbvp", + "mangledName": "$s13SendbirdUIKit24SBUUserMessageCellParamsC20shouldHideQuickReplySbvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUUserMessageCellParamsC20shouldHideQuickReplySbvg", + "mangledName": "$s13SendbirdUIKit24SBUUserMessageCellParamsC20shouldHideQuickReplySbvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, { "kind": "Constructor", "name": "init", - "printedName": "init(message:hideDateView:useMessagePosition:groupPosition:receiptState:useReaction:withTextView:isThreadMessage:joinedAt:)", + "printedName": "init(message:hideDateView:useMessagePosition:groupPosition:receiptState:useReaction:withTextView:isThreadMessage:joinedAt:shouldHideQuickReply:)", "children": [ { "kind": "TypeNominal", @@ -181466,11 +185720,18 @@ "printedName": "Swift.Int64", "hasDefaultArg": true, "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], "declKind": "Constructor", - "usr": "s:13SendbirdUIKit24SBUUserMessageCellParamsC7message12hideDateView03useD8Position05groupL012receiptState0K8Reaction08withTextJ008isThreadD08joinedAtAC0A7ChatSDK04UserD0C_S2bAA0d5GroupL0OAA017SBUMessageReceiptO0OS3bs5Int64Vtcfc", - "mangledName": "$s13SendbirdUIKit24SBUUserMessageCellParamsC7message12hideDateView03useD8Position05groupL012receiptState0K8Reaction08withTextJ008isThreadD08joinedAtAC0A7ChatSDK04UserD0C_S2bAA0d5GroupL0OAA017SBUMessageReceiptO0OS3bs5Int64Vtcfc", + "usr": "s:13SendbirdUIKit24SBUUserMessageCellParamsC7message12hideDateView03useD8Position05groupL012receiptState0K8Reaction08withTextJ008isThreadD08joinedAt20shouldHideQuickReplyAC0A7ChatSDK04UserD0C_S2bAA0d5GroupL0OAA017SBUMessageReceiptO0OS3bs5Int64VSbtcfc", + "mangledName": "$s13SendbirdUIKit24SBUUserMessageCellParamsC7message12hideDateView03useD8Position05groupL012receiptState0K8Reaction08withTextJ008isThreadD08joinedAt20shouldHideQuickReplyAC0A7ChatSDK04UserD0C_S2bAA0d5GroupL0OAA017SBUMessageReceiptO0OS3bs5Int64VSbtcfc", "moduleName": "SendbirdUIKit", "declAttributes": [ "AccessControl" @@ -182424,7 +186685,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -183443,15 +187704,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceContentView(im)setupViews", + "usr": "s:13SendbirdUIKit19SBUVoiceContentViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit19SBUVoiceContentViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -183470,15 +187728,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit19SBUVoiceContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit19SBUVoiceContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -183497,15 +187752,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceContentView(im)setupStyles", + "usr": "s:13SendbirdUIKit19SBUVoiceContentViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit19SBUVoiceContentViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -183642,6 +187894,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -183704,13 +187963,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -195327,15 +199579,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageInputView(im)setupViews", + "usr": "s:13SendbirdUIKit19SBUMessageInputViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageInputViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -195355,15 +199604,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageInputView(im)setupLayouts", + "usr": "s:13SendbirdUIKit19SBUMessageInputViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageInputViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -195383,15 +199629,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageInputView(im)setupStyles", + "usr": "s:13SendbirdUIKit19SBUMessageInputViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageInputViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -196203,6 +200446,13 @@ "usr": "s:13SendbirdUIKit22SBUActionSheetDelegateP", "mangledName": "$s13SendbirdUIKit22SBUActionSheetDelegateP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -196265,13 +200515,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -198807,7 +203050,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -198829,6 +203072,23 @@ "declKind": "Import", "moduleName": "SendbirdUIKit" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, { "kind": "Import", "name": "UIKit", @@ -199408,8 +203668,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -199527,8 +203787,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -199646,8 +203906,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -204643,8 +208903,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -205622,6 +209882,781 @@ "declKind": "Import", "moduleName": "SendbirdUIKit" }, + { + "kind": "TypeDecl", + "name": "SBUCardListView", + "printedName": "SBUCardListView", + "children": [ + { + "kind": "TypeDecl", + "name": "Metric", + "printedName": "Metric", + "children": [ + { + "kind": "Var", + "name": "maxWidth", + "printedName": "maxWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvpZ", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvpZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvgZ", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvsZ", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvMZ", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6MetricV", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6MetricV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Var", + "name": "stackView", + "printedName": "stackView", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvs", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0CvM", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0CvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "topSpacer", + "printedName": "topSpacer", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvs", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvM", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "items", + "printedName": "items", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC5itemsSayAA0cE6ParamsVGvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC5itemsSayAA0cE6ParamsVGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC5itemsSayAA0cE6ParamsVGvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC5itemsSayAA0cE6ParamsVGvg", + "moduleName": "SendbirdUIKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messageId", + "printedName": "messageId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9messageIds5Int64VSgvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9messageIds5Int64VSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9messageIds5Int64VSgvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9messageIds5Int64VSgvg", + "moduleName": "SendbirdUIKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "params", + "printedName": "params", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardListViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListViewParams", + "printedName": "SendbirdUIKit.SBUCardListViewParams", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6paramsAA0cdE6ParamsVSgvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6paramsAA0cdE6ParamsVSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardListViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListViewParams", + "printedName": "SendbirdUIKit.SBUCardListViewParams", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6paramsAA0cdE6ParamsVSgvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6paramsAA0cdE6ParamsVSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setupViews", + "printedName": "setupViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListViewC10setupViewsyyF", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC10setupViewsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupLayouts", + "printedName": "setupLayouts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListViewC12setupLayoutsyyF", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC12setupLayoutsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupStyles", + "printedName": "setupStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListViewC11setupStylesyyF", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC11setupStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUCardListViewParams", + "printedName": "SendbirdUIKit.SBUCardListViewParams", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9configure4withyAA0cdE6ParamsV_tF", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9configure4withyAA0cdE6ParamsV_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createCardViews", + "printedName": "createCardViews(items:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardView]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardView", + "printedName": "SendbirdUIKit.SBUCardView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListViewC15createCardViews5itemsSayAA0cE0CGSayAA0cE6ParamsVG_tF", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC15createCardViews5itemsSayAA0cE0CGSayAA0cE6ParamsVG_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListView", + "printedName": "SendbirdUIKit.SBUCardListView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView(im)init", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListView", + "printedName": "SendbirdUIKit.SBUCardListView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView(im)initWithFrame:", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC5frameACSo6CGRectV_tcfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:@M@SendbirdUIKit@objc(cs)SBUView", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "SendbirdUIKit.SBUView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, { "kind": "TypeDecl", "name": "SBUMessageStateViewParams", @@ -206217,9 +211252,9 @@ "mangledName": "$s13SendbirdUIKit19SBUMessageStateViewC9timeLabelSo7UILabelCvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -206528,15 +211563,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageStateView(im)setupViews", + "usr": "s:13SendbirdUIKit19SBUMessageStateViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageStateViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -206555,15 +211587,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageStateView(im)setupLayouts", + "usr": "s:13SendbirdUIKit19SBUMessageStateViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageStateViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -206582,15 +211611,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageStateView(im)setupStyles", + "usr": "s:13SendbirdUIKit19SBUMessageStateViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageStateViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -206762,6 +211788,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -206824,13 +211857,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -207499,7 +212525,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -207919,13 +212945,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)setupViews", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC10setupViewsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -207944,13 +212968,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)setupLayouts", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -208012,13 +213034,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)setupStyles", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC11setupStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -208037,13 +213057,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)setupActions", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC12setupActionsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -208062,13 +213080,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)updateLayouts", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateLayouts", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -208087,13 +213103,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)updateStyles", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC12updateStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -208126,7 +213140,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -217980,11 +222994,177 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUCardListData", + "printedName": "SBUCardListData", + "children": [ + { + "kind": "Var", + "name": "recommends", + "printedName": "recommends", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListDataV10recommendsSayxGvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListDataV10recommendsSayxGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListDataV10recommendsSayxGvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListDataV10recommendsSayxGvg", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListData", + "printedName": "SendbirdUIKit.SBUCardListData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:13SendbirdUIKit15SBUCardListDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit15SBUCardListDataV4fromACyxGs7Decoder_p_tKcfc", + "mangledName": "$s13SendbirdUIKit15SBUCardListDataV4fromACyxGs7Decoder_p_tKcfc", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListDataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s13SendbirdUIKit15SBUCardListDataV6encode2toys7Encoder_p_tKF", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit15SBUCardListDataV", + "mangledName": "$s13SendbirdUIKit15SBUCardListDataV", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, { "kind": "Import", "name": "SendbirdChatSDK", @@ -219069,11 +224249,184 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUCardListViewParams", + "printedName": "SBUCardListViewParams", + "children": [ + { + "kind": "Var", + "name": "messageId", + "printedName": "messageId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV9messageIds5Int64Vvp", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV9messageIds5Int64Vvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV9messageIds5Int64Vvg", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV9messageIds5Int64Vvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "items", + "printedName": "items", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV5itemsSayAA0ceF0VGvp", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV5itemsSayAA0ceF0VGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV5itemsSayAA0ceF0VGvg", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV5itemsSayAA0ceF0VGvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(messageId:items:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListViewParams", + "printedName": "SendbirdUIKit.SBUCardListViewParams", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV9messageId5itemsACs5Int64V_SayAA0ceF0VGtcfc", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV9messageId5itemsACs5Int64V_SayAA0ceF0VGtcfc", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -219622,12 +224975,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", - "objc_name": "setupViews", "declAttributes": [ - "ObjC", "AccessControl", "RawDocComment" ], @@ -219645,12 +224996,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", - "objc_name": "setupLayouts", "declAttributes": [ - "ObjC", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -219667,12 +225016,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)updateLayouts", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", - "objc_name": "updateLayouts", "declAttributes": [ - "ObjC", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -219689,12 +225036,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)setupStyles", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", - "objc_name": "setupStyles", "declAttributes": [ - "ObjC", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -219711,12 +225056,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)updateStyles", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC12updateStylesyyF", "moduleName": "SendbirdUIKit", - "objc_name": "updateStyles", "declAttributes": [ - "ObjC", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -219733,12 +225076,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)setupActions", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", - "objc_name": "setupActions", "declAttributes": [ - "ObjC", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -220116,7 +225457,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -225329,6 +230670,42 @@ ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "groupChannelModule", + "printedName": "groupChannelModule(_:didSelectQuickReplyOption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "List", + "printedName": "SendbirdUIKit.SBUGroupChannelModule.List", + "usr": "s:13SendbirdUIKit21SBUGroupChannelModuleC4ListC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit33SBUGroupChannelModuleListDelegateP05groupdE0_25didSelectQuickReplyOptionyAA0cdE0C0F0C_SStF", + "mangledName": "$s13SendbirdUIKit33SBUGroupChannelModuleListDelegateP05groupdE0_25didSelectQuickReplyOptionyAA0cdE0C0F0C_SStF", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUGroupChannelModuleListDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" } ], "declKind": "Protocol", @@ -229241,307 +234618,307 @@ "ObjectiveC.NSObject" ], "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, { "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SendbirdChatSDK", - "printedName": "SendbirdChatSDK", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "TypeDecl", - "name": "SBUBaseChannelListViewModelDelegate", - "printedName": "SBUBaseChannelListViewModelDelegate", - "declKind": "Protocol", - "usr": "s:13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP", - "mangledName": "$s13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP", - "moduleName": "SendbirdUIKit", - "genericSig": "<τ_0_0 : SendbirdUIKit.SBUCommonViewModelDelegate>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "SBUCommonViewModelDelegate", - "printedName": "SBUCommonViewModelDelegate", - "usr": "s:13SendbirdUIKit26SBUCommonViewModelDelegateP", - "mangledName": "$s13SendbirdUIKit26SBUCommonViewModelDelegateP" - }, - { - "kind": "Conformance", - "name": "SBUCommonDelegate", - "printedName": "SBUCommonDelegate", - "usr": "s:13SendbirdUIKit17SBUCommonDelegateP", - "mangledName": "$s13SendbirdUIKit17SBUCommonDelegateP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SBUBaseChannelListViewModel", - "printedName": "SBUBaseChannelListViewModel", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUBaseChannelListViewModel", - "printedName": "SendbirdUIKit.SBUBaseChannelListViewModel", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUBaseChannelListViewModelDelegate?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUBaseChannelListViewModelDelegate", - "printedName": "SendbirdUIKit.SBUBaseChannelListViewModelDelegate", - "usr": "s:13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC8delegateAcA0cdefG8Delegate_pSg_tcfc", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC8delegateAcA0cdefG8Delegate_pSg_tcfc", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "initChannelList", - "printedName": "initChannelList()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC04initdE0yyF", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC04initdE0yyF", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "loadNextChannelList", - "printedName": "loadNextChannelList(reset:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC08loadNextdE05resetySb_tF", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC08loadNextdE05resetySb_tF", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "reset", - "printedName": "reset()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC5resetyyF", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC5resetyyF", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUBaseChannelListViewModel", - "printedName": "SendbirdUIKit.SBUBaseChannelListViewModel", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel" - } - ], - "declKind": "Constructor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel(im)init", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelCACycfc", - "moduleName": "SendbirdUIKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "didSucceedReconnection", - "printedName": "didSucceedReconnection()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel(im)didSucceedReconnection", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC22didSucceedReconnectionyyF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "objc_name": "didSucceedReconnection", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ConnectionDelegate", - "printedName": "ConnectionDelegate", - "usr": "c:@M@SendbirdChatSDK@objc(pl)SBDConnectionDelegate", - "mangledName": "$s15SendbirdChatSDK18ConnectionDelegateP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "TypeDecl", + "name": "SBUBaseChannelListViewModelDelegate", + "printedName": "SBUBaseChannelListViewModelDelegate", + "declKind": "Protocol", + "usr": "s:13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP", + "mangledName": "$s13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 : SendbirdUIKit.SBUCommonViewModelDelegate>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SBUCommonViewModelDelegate", + "printedName": "SBUCommonViewModelDelegate", + "usr": "s:13SendbirdUIKit26SBUCommonViewModelDelegateP", + "mangledName": "$s13SendbirdUIKit26SBUCommonViewModelDelegateP" + }, + { + "kind": "Conformance", + "name": "SBUCommonDelegate", + "printedName": "SBUCommonDelegate", + "usr": "s:13SendbirdUIKit17SBUCommonDelegateP", + "mangledName": "$s13SendbirdUIKit17SBUCommonDelegateP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SBUBaseChannelListViewModel", + "printedName": "SBUBaseChannelListViewModel", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUBaseChannelListViewModel", + "printedName": "SendbirdUIKit.SBUBaseChannelListViewModel", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUBaseChannelListViewModelDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUBaseChannelListViewModelDelegate", + "printedName": "SendbirdUIKit.SBUBaseChannelListViewModelDelegate", + "usr": "s:13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC8delegateAcA0cdefG8Delegate_pSg_tcfc", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC8delegateAcA0cdefG8Delegate_pSg_tcfc", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "initChannelList", + "printedName": "initChannelList()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC04initdE0yyF", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC04initdE0yyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadNextChannelList", + "printedName": "loadNextChannelList(reset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC08loadNextdE05resetySb_tF", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC08loadNextdE05resetySb_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC5resetyyF", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC5resetyyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUBaseChannelListViewModel", + "printedName": "SendbirdUIKit.SBUBaseChannelListViewModel", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel(im)init", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "didSucceedReconnection", + "printedName": "didSucceedReconnection()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel(im)didSucceedReconnection", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC22didSucceedReconnectionyyF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "objc_name": "didSucceedReconnection", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ConnectionDelegate", + "printedName": "ConnectionDelegate", + "usr": "c:@M@SendbirdChatSDK@objc(pl)SBDConnectionDelegate", + "mangledName": "$s15SendbirdChatSDK18ConnectionDelegateP" }, { "kind": "Conformance", @@ -235317,15 +240694,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedFileMessageView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUQuotedFileMessageViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedFileMessageViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -235344,15 +240718,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedFileMessageView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUQuotedFileMessageViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedFileMessageViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -235477,6 +240848,13 @@ "usr": "s:13SendbirdUIKit28SBUQuotedMessageViewProtocolP", "mangledName": "$s13SendbirdUIKit28SBUQuotedMessageViewProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -235539,13 +240917,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -235901,15 +241272,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNewMessageInfo(im)setupViews", + "usr": "s:13SendbirdUIKit17SBUNewMessageInfoC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit17SBUNewMessageInfoC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -235929,15 +241297,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNewMessageInfo(im)setupLayouts", + "usr": "s:13SendbirdUIKit17SBUNewMessageInfoC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit17SBUNewMessageInfoC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -235957,15 +241322,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNewMessageInfo(im)setupStyles", + "usr": "s:13SendbirdUIKit17SBUNewMessageInfoC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit17SBUNewMessageInfoC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -236129,6 +241491,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -236191,13 +241560,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -244142,6 +249504,346 @@ } ] }, + { + "kind": "Var", + "name": "shouldHideQuickReply", + "printedName": "shouldHideQuickReply", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(py)shouldHideQuickReply", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC20shouldHideQuickReplySbvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)shouldHideQuickReply", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC20shouldHideQuickReplySbvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "quickReplyView", + "printedName": "quickReplyView", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyView?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(py)quickReplyView", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC14quickReplyViewAA08SBUQuickgH0CSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyView?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)quickReplyView", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC14quickReplyViewAA08SBUQuickgH0CSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "quickReplySelectHandler", + "printedName": "quickReplySelectHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((SendbirdUIKit.SBUQuickReplyOptionView) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SendbirdUIKit.SBUQuickReplyOptionView) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(py)quickReplySelectHandler", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC23quickReplySelectHandleryAA08SBUQuickG10OptionViewCcSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((SendbirdUIKit.SBUQuickReplyOptionView) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SendbirdUIKit.SBUQuickReplyOptionView) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)quickReplySelectHandler", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC23quickReplySelectHandleryAA08SBUQuickG10OptionViewCcSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((SendbirdUIKit.SBUQuickReplyOptionView) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SendbirdUIKit.SBUQuickReplyOptionView) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)setQuickReplySelectHandler:", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC23quickReplySelectHandleryAA08SBUQuickG10OptionViewCcSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit18SBUUserMessageCellC23quickReplySelectHandleryAA08SBUQuickG10OptionViewCcSgvM", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC23quickReplySelectHandleryAA08SBUQuickG10OptionViewCcSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cardListView", + "printedName": "cardListView", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardListView?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListView", + "printedName": "SendbirdUIKit.SBUCardListView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(py)cardListView", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC12cardListViewAA07SBUCardgH0CSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardListView?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListView", + "printedName": "SendbirdUIKit.SBUCardListView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)cardListView", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC12cardListViewAA07SBUCardgH0CSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, { "kind": "Function", "name": "setupViews", @@ -244514,6 +250216,79 @@ ], "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "updateQuickReplyView", + "printedName": "updateQuickReplyView(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)updateQuickReplyViewWith:", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC20updateQuickReplyView4withySaySSG_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addCardListView", + "printedName": "addCardListView(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit18SBUUserMessageCellC15addCardListView4withySayAA07SBUCardI6ParamsVG_tF", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC15addCardListView4withySayAA07SBUCardI6ParamsVG_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, { "kind": "Function", "name": "userMessageTextView", @@ -244637,6 +250412,42 @@ "Required" ], "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "quickReplyView", + "printedName": "quickReplyView(_:didSelectOption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "declKind": "Func", + "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)quickReplyView:didSelectOption:", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC14quickReplyView_15didSelectOptionyAA08SBUQuickgH0C_AA0lgkH0CtF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Dynamic", + "Custom", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" } ], "declKind": "Class", @@ -244743,8 +250554,15 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SBUQuickReplyViewDelegate", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP", + "mangledName": "$s13SendbirdUIKit25SBUQuickReplyViewDelegateP" } ] }, @@ -244964,7 +250782,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -260869,8 +266687,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -261049,8 +266867,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "ObjC" ], @@ -261200,8 +267018,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "ObjC" ], @@ -263317,9 +269135,9 @@ "mangledName": "$s13SendbirdUIKit22SBUBaseFileContentViewC7message0A7ChatSDK0D7MessageCSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -263420,9 +269238,9 @@ "mangledName": "$s13SendbirdUIKit22SBUBaseFileContentViewC8positionAA15MessagePositionOvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -263604,6 +269422,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -263666,13 +269491,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -264128,9 +269946,9 @@ "mangledName": "$s13SendbirdUIKit22SBUNavigationTitleViewC4textSSSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -264231,9 +270049,9 @@ "mangledName": "$s13SendbirdUIKit22SBUNavigationTitleViewC13textAlignmentSo06NSTextG0Vvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -264373,14 +270191,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNavigationTitleView(im)setupViews", + "usr": "s:13SendbirdUIKit22SBUNavigationTitleViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit22SBUNavigationTitleViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -264399,14 +270214,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNavigationTitleView(im)setupLayouts", + "usr": "s:13SendbirdUIKit22SBUNavigationTitleViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit22SBUNavigationTitleViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -264425,14 +270237,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNavigationTitleView(im)setupStyles", + "usr": "s:13SendbirdUIKit22SBUNavigationTitleViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit22SBUNavigationTitleViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -264551,6 +270360,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -264613,13 +270429,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -268043,7 +273852,8 @@ "mangledName": "$s13SendbirdUIKit27SBUUserMessageTextViewModelV22addEditedStateIfNeeded4withySo25NSMutableAttributedStringC_tF", "moduleName": "SendbirdUIKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "funcSelfKind": "NonMutating" } @@ -281784,7 +287594,7 @@ { "kind": "Constructor", "name": "init", - "printedName": "init(backgroundColor:leftBackgroundColor:leftPressedBackgroundColor:rightBackgroundColor:rightPressedBackgroundColor:openChannelBackgroundColor:openChannelPressedBackgroundColor:dateFont:dateTextColor:dateBackgroundColor:userPlaceholderBackgroundColor:userPlaceholderTintColor:userNameFont:userNameTextColor:currentUserNameTextColor:timeFont:timeTextColor:pendingStateColor:failedStateColor:succeededStateColor:readReceiptStateColor:deliveryReceiptStateColor:userMessageFont:userMessageLeftTextColor:userMessageLeftEditTextColor:userMessageLeftHighlightTextColor:userMessageRightTextColor:userMessageRightEditTextColor:userMessageRightHighlightTextColor:fileIconBackgroundColor:fileImageBackgroundColor:fileImageIconColor:fileIconColor:fileMessageNameFont:fileMessageLeftTextColor:fileMessageRightTextColor:fileMessagePlaceholderColor:adminMessageFont:adminMessageTextColor:unknownMessageDescFont:unknownMessageDescLeftTextColor:unknownMessageDescRightTextColor:ogTitleFont:ogTitleColor:ogDescriptionFont:ogDescriptionColor:ogURLAddressFont:ogURLAddressColor:openChannelOGTitleColor:linkColor:contentBackgroundColor:pressedContentBackgroundColor:quotedMessageLeftBackgroundColor:quotedMessageRightBackgroundColor:quotedFileMessageThumbnailColor:quotedMessageTextColor:quotedMessageTextFont:repliedIconColor:repliedToTextColor:repliedToTextFont:repliedCountTextColor:repliedCountTextFont:repliedUsersMoreIconBackgroundColor:repliedUsersMoreIconTintColor:mentionTextFont:mentionLeftTextColor:mentionRightTextColor:mentionLeftTextBackgroundColor:mentionRightTextBackgroundColor:buttonBackgroundColor:buttonTitleColor:sideButtonIconColor:newMessageBadgeColor:parentInfoBackgroundColor:parentInfoUserNameTextFont:parentInfoUserNameTextColor:parentInfoDateFont:parentInfoDateTextColor:parentInfoMoreButtonTintColor:parentInfoSeparateBarColor:parentInfoReplyCountTextColor:parentInfoReplyCountTextFont:parentInfoProgressBackgroundColor:progressTrackTintColor:progressTimeFont:progressTimeRightTextColor:progressTimeLeftTextColor:statusButtonBackgroundColor:loadingButtonTintColor:playButtonTintColor:pauseButtonTintColor:)", + "printedName": "init(backgroundColor:leftBackgroundColor:leftPressedBackgroundColor:rightBackgroundColor:rightPressedBackgroundColor:openChannelBackgroundColor:openChannelPressedBackgroundColor:dateFont:dateTextColor:dateBackgroundColor:userPlaceholderBackgroundColor:userPlaceholderTintColor:userNameFont:userNameTextColor:currentUserNameTextColor:timeFont:timeTextColor:pendingStateColor:failedStateColor:succeededStateColor:readReceiptStateColor:deliveryReceiptStateColor:userMessageFont:userMessageLeftTextColor:userMessageLeftEditTextColor:userMessageLeftHighlightTextColor:userMessageRightTextColor:userMessageRightEditTextColor:userMessageRightHighlightTextColor:fileIconBackgroundColor:fileImageBackgroundColor:fileImageIconColor:fileIconColor:fileMessageNameFont:fileMessageLeftTextColor:fileMessageRightTextColor:fileMessagePlaceholderColor:adminMessageFont:adminMessageTextColor:unknownMessageDescFont:unknownMessageDescLeftTextColor:unknownMessageDescRightTextColor:ogTitleFont:ogTitleColor:ogDescriptionFont:ogDescriptionColor:ogURLAddressFont:ogURLAddressColor:openChannelOGTitleColor:linkColor:contentBackgroundColor:pressedContentBackgroundColor:quotedMessageLeftBackgroundColor:quotedMessageRightBackgroundColor:quotedFileMessageThumbnailColor:quotedMessageTextColor:quotedMessageTextFont:repliedIconColor:repliedToTextColor:repliedToTextFont:repliedCountTextColor:repliedCountTextFont:repliedUsersMoreIconBackgroundColor:repliedUsersMoreIconTintColor:mentionTextFont:mentionLeftTextColor:mentionRightTextColor:mentionLeftTextBackgroundColor:mentionRightTextBackgroundColor:buttonBackgroundColor:buttonTitleColor:sideButtonIconColor:newMessageBadgeColor:parentInfoBackgroundColor:parentInfoUserNameTextFont:parentInfoUserNameTextColor:parentInfoDateFont:parentInfoDateTextColor:parentInfoMoreButtonTintColor:parentInfoSeparateBarColor:parentInfoReplyCountTextColor:parentInfoReplyCountTextFont:parentInfoProgressBackgroundColor:progressTrackTintColor:progressTimeFont:progressTimeRightTextColor:progressTimeLeftTextColor:statusButtonBackgroundColor:loadingButtonTintColor:playButtonTintColor:pauseButtonTintColor:selectableTitleFont:)", "children": [ { "kind": "TypeNominal", @@ -282428,11 +288238,18 @@ "printedName": "UIKit.UIColor", "hasDefaultArg": true, "usr": "c:objc(cs)UIColor" + }, + { + "kind": "TypeNominal", + "name": "UIFont", + "printedName": "UIKit.UIFont", + "hasDefaultArg": true, + "usr": "c:objc(cs)UIFont" } ], "declKind": "Constructor", - "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC15backgroundColor014leftBackgroundG00h7PressediG005rightiG00kjiG0011openChanneliG00lmjiG08dateFont0n4TextG00niG0015userPlaceholderiG00qr4TintG00q4NameO00qtpG0011currentUsertpG004timeO00wpG0012pendingStateG006failedyG009succeededyG0011readReceiptyG0015deliveryReceiptyG00q7MessageO00q11MessageLeftpG00q15MessageLeftEditpG00q20MessageLeftHighlightpG00q12MessageRightpG00q16MessageRightEditpG00q21MessageRightHighlightpG008fileIconiG009fileImageiG0013fileImageIconG008fileIconG0011fileMessagetO0015fileMessageLeftpG0016fileMessageRightpG0011fileMessagerG0012adminMessageO0012adminMessagepG0018unknownMessageDescO0022unknownMessageDescLeftpG0023unknownMessageDescRightpG007ogTitleO007ogTitleG0013ogDescriptionO0013ogDescriptionG0012ogURLAddressO0012ogURLAddressG00lm7OGTitleG004linkG007contentiG0014pressedContentiG0017quotedMessageLeftiG0018quotedMessageRightiG0026quotedFileMessageThumbnailG0013quotedMessagepG0013quotedMessagepO0011repliedIconG009repliedTopG009repliedTopO0012repliedCountpG0012repliedCountpO0020repliedUsersMoreIconiG0020repliedUsersMoreIconsG007mentionpO0011mentionLeftpG0012mentionRightpG0011mentionLeftpiG0012mentionRightpiG006buttoniG0011buttonTitleG0014sideButtonIconG0015newMessageBadgeG0010parentInfoiG0010parentInfovtpO0010parentInfovtpG0014parentInfoDateO0014parentInfoDatepG0020parentInfoMoreButtonsG0021parentInfoSeparateBarG0020parentInfoReplyCountpG0020parentInfoReplyCountpO0018parentInfoProgressiG0013progressTracksG0012progressTimeO0017progressTimeRightpG0016progressTimeLeftpG0012statusButtoniG0013loadingButtonsG0010playButtonsG0011pauseButtonsG0ACSo7UIColorC_A68_A68_A68_A68_A68_A68_So6UIFontCA68_A68_A68_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A68_A68_A70_A68_A70_A68_A68_A70_A68_A70_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A68_A70_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A70_A68_A68_A68_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_tcfc", - "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC15backgroundColor014leftBackgroundG00h7PressediG005rightiG00kjiG0011openChanneliG00lmjiG08dateFont0n4TextG00niG0015userPlaceholderiG00qr4TintG00q4NameO00qtpG0011currentUsertpG004timeO00wpG0012pendingStateG006failedyG009succeededyG0011readReceiptyG0015deliveryReceiptyG00q7MessageO00q11MessageLeftpG00q15MessageLeftEditpG00q20MessageLeftHighlightpG00q12MessageRightpG00q16MessageRightEditpG00q21MessageRightHighlightpG008fileIconiG009fileImageiG0013fileImageIconG008fileIconG0011fileMessagetO0015fileMessageLeftpG0016fileMessageRightpG0011fileMessagerG0012adminMessageO0012adminMessagepG0018unknownMessageDescO0022unknownMessageDescLeftpG0023unknownMessageDescRightpG007ogTitleO007ogTitleG0013ogDescriptionO0013ogDescriptionG0012ogURLAddressO0012ogURLAddressG00lm7OGTitleG004linkG007contentiG0014pressedContentiG0017quotedMessageLeftiG0018quotedMessageRightiG0026quotedFileMessageThumbnailG0013quotedMessagepG0013quotedMessagepO0011repliedIconG009repliedTopG009repliedTopO0012repliedCountpG0012repliedCountpO0020repliedUsersMoreIconiG0020repliedUsersMoreIconsG007mentionpO0011mentionLeftpG0012mentionRightpG0011mentionLeftpiG0012mentionRightpiG006buttoniG0011buttonTitleG0014sideButtonIconG0015newMessageBadgeG0010parentInfoiG0010parentInfovtpO0010parentInfovtpG0014parentInfoDateO0014parentInfoDatepG0020parentInfoMoreButtonsG0021parentInfoSeparateBarG0020parentInfoReplyCountpG0020parentInfoReplyCountpO0018parentInfoProgressiG0013progressTracksG0012progressTimeO0017progressTimeRightpG0016progressTimeLeftpG0012statusButtoniG0013loadingButtonsG0010playButtonsG0011pauseButtonsG0ACSo7UIColorC_A68_A68_A68_A68_A68_A68_So6UIFontCA68_A68_A68_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A68_A68_A70_A68_A70_A68_A68_A70_A68_A70_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A68_A70_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A70_A68_A68_A68_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_tcfc", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC15backgroundColor014leftBackgroundG00h7PressediG005rightiG00kjiG0011openChanneliG00lmjiG08dateFont0n4TextG00niG0015userPlaceholderiG00qr4TintG00q4NameO00qtpG0011currentUsertpG004timeO00wpG0012pendingStateG006failedyG009succeededyG0011readReceiptyG0015deliveryReceiptyG00q7MessageO00q11MessageLeftpG00q15MessageLeftEditpG00q20MessageLeftHighlightpG00q12MessageRightpG00q16MessageRightEditpG00q21MessageRightHighlightpG008fileIconiG009fileImageiG0013fileImageIconG008fileIconG0011fileMessagetO0015fileMessageLeftpG0016fileMessageRightpG0011fileMessagerG0012adminMessageO0012adminMessagepG0018unknownMessageDescO0022unknownMessageDescLeftpG0023unknownMessageDescRightpG007ogTitleO007ogTitleG0013ogDescriptionO0013ogDescriptionG0012ogURLAddressO0012ogURLAddressG00lm7OGTitleG004linkG007contentiG0014pressedContentiG0017quotedMessageLeftiG0018quotedMessageRightiG0026quotedFileMessageThumbnailG0013quotedMessagepG0013quotedMessagepO0011repliedIconG009repliedTopG009repliedTopO0012repliedCountpG0012repliedCountpO0020repliedUsersMoreIconiG0020repliedUsersMoreIconsG007mentionpO0011mentionLeftpG0012mentionRightpG0011mentionLeftpiG0012mentionRightpiG006buttoniG0011buttonTitleG0014sideButtonIconG0015newMessageBadgeG0010parentInfoiG0010parentInfovtpO0010parentInfovtpG0014parentInfoDateO0014parentInfoDatepG0020parentInfoMoreButtonsG0021parentInfoSeparateBarG0020parentInfoReplyCountpG0020parentInfoReplyCountpO0018parentInfoProgressiG0013progressTracksG0012progressTimeO0017progressTimeRightpG0016progressTimeLeftpG0012statusButtoniG0013loadingButtonsG0010playButtonsG0011pauseButtonsG0015selectableTitleO0ACSo7UIColorC_A69_A69_A69_A69_A69_A69_So6UIFontCA69_A69_A69_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A69_A69_A71_A69_A71_A69_A69_A71_A69_A71_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A69_A71_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A71_A69_A69_A69_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A71_tcfc", + "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC15backgroundColor014leftBackgroundG00h7PressediG005rightiG00kjiG0011openChanneliG00lmjiG08dateFont0n4TextG00niG0015userPlaceholderiG00qr4TintG00q4NameO00qtpG0011currentUsertpG004timeO00wpG0012pendingStateG006failedyG009succeededyG0011readReceiptyG0015deliveryReceiptyG00q7MessageO00q11MessageLeftpG00q15MessageLeftEditpG00q20MessageLeftHighlightpG00q12MessageRightpG00q16MessageRightEditpG00q21MessageRightHighlightpG008fileIconiG009fileImageiG0013fileImageIconG008fileIconG0011fileMessagetO0015fileMessageLeftpG0016fileMessageRightpG0011fileMessagerG0012adminMessageO0012adminMessagepG0018unknownMessageDescO0022unknownMessageDescLeftpG0023unknownMessageDescRightpG007ogTitleO007ogTitleG0013ogDescriptionO0013ogDescriptionG0012ogURLAddressO0012ogURLAddressG00lm7OGTitleG004linkG007contentiG0014pressedContentiG0017quotedMessageLeftiG0018quotedMessageRightiG0026quotedFileMessageThumbnailG0013quotedMessagepG0013quotedMessagepO0011repliedIconG009repliedTopG009repliedTopO0012repliedCountpG0012repliedCountpO0020repliedUsersMoreIconiG0020repliedUsersMoreIconsG007mentionpO0011mentionLeftpG0012mentionRightpG0011mentionLeftpiG0012mentionRightpiG006buttoniG0011buttonTitleG0014sideButtonIconG0015newMessageBadgeG0010parentInfoiG0010parentInfovtpO0010parentInfovtpG0014parentInfoDateO0014parentInfoDatepG0020parentInfoMoreButtonsG0021parentInfoSeparateBarG0020parentInfoReplyCountpG0020parentInfoReplyCountpO0018parentInfoProgressiG0013progressTracksG0012progressTimeO0017progressTimeRightpG0016progressTimeLeftpG0012statusButtoniG0013loadingButtonsG0010playButtonsG0011pauseButtonsG0015selectableTitleO0ACSo7UIColorC_A69_A69_A69_A69_A69_A69_So6UIFontCA69_A69_A69_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A69_A69_A71_A69_A71_A69_A69_A71_A69_A71_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A69_A71_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A71_A69_A69_A69_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A71_tcfc", "moduleName": "SendbirdUIKit", "declAttributes": [ "AccessControl" @@ -290295,6 +296112,92 @@ } ] }, + { + "kind": "Var", + "name": "selectableTitleFont", + "printedName": "selectableTitleFont", + "children": [ + { + "kind": "TypeNominal", + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvp", + "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvg", + "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvs", + "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvM", + "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { "kind": "Var", "name": "unknownMessageDescTextColor", @@ -314044,9 +319947,9 @@ "mangledName": "$s13SendbirdUIKit19SBUImageContentViewC05imageE0So07UIImageE0Cvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -314226,9 +320129,9 @@ "mangledName": "$s13SendbirdUIKit19SBUImageContentViewC15widthConstraintSo08NSLayoutG0CSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -314337,9 +320240,9 @@ "mangledName": "$s13SendbirdUIKit19SBUImageContentViewC16heightConstraintSo08NSLayoutG0CSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -314435,15 +320338,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUImageContentView(im)setupViews", + "usr": "s:13SendbirdUIKit19SBUImageContentViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit19SBUImageContentViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -314462,15 +320362,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUImageContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit19SBUImageContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit19SBUImageContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -314715,6 +320612,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -314777,13 +320681,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -317181,9 +323078,9 @@ "mangledName": "$s13SendbirdUIKit22SBUUserMessageTextViewC04textF0AA016SBULinkClickableeF0Cvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -317903,9 +323800,9 @@ "mangledName": "$s13SendbirdUIKit22SBUUserMessageTextViewC8delegateAA0cdeF8Delegate_pSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "ReferenceOwnership", "AccessControl" ], @@ -318099,15 +323996,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageTextView(im)setupViews", + "usr": "s:13SendbirdUIKit22SBUUserMessageTextViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit22SBUUserMessageTextViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -318126,15 +324020,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageTextView(im)setupLayouts", + "usr": "s:13SendbirdUIKit22SBUUserMessageTextViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit22SBUUserMessageTextViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -318175,15 +324066,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageTextView(im)setupStyles", + "usr": "s:13SendbirdUIKit22SBUUserMessageTextViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit22SBUUserMessageTextViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -318289,6 +324177,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -318351,13 +324246,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -331148,8 +337036,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -331267,8 +337155,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "ObjC" ], @@ -331471,8 +337359,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment" ], @@ -333986,6 +339874,159 @@ "RawDocComment" ] }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyOptions", + "printedName": "SBUQuickReplyOptions", + "children": [ + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV7optionsSaySSGvp", + "mangledName": "$s13SendbirdUIKit20SBUQuickReplyOptionsV7optionsSaySSGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV7optionsSaySSGvg", + "mangledName": "$s13SendbirdUIKit20SBUQuickReplyOptionsV7optionsSaySSGvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptions", + "printedName": "SendbirdUIKit.SBUQuickReplyOptions", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s13SendbirdUIKit20SBUQuickReplyOptionsV4fromACs7Decoder_p_tKcfc", + "moduleName": "SendbirdUIKit", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV6encode2toys7Encoder_p_tKF", + "mangledName": "$s13SendbirdUIKit20SBUQuickReplyOptionsV6encode2toys7Encoder_p_tKF", + "moduleName": "SendbirdUIKit", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV", + "mangledName": "$s13SendbirdUIKit20SBUQuickReplyOptionsV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "SendbirdChatSDK", @@ -337547,15 +343588,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuoteMessageInputView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUQuoteMessageInputViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuoteMessageInputViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -337574,15 +343612,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuoteMessageInputView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUQuoteMessageInputViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuoteMessageInputViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -337601,15 +343636,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuoteMessageInputView(im)setupActions", + "usr": "s:13SendbirdUIKit24SBUQuoteMessageInputViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuoteMessageInputViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -337628,15 +343660,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuoteMessageInputView(im)setupStyles", + "usr": "s:13SendbirdUIKit24SBUQuoteMessageInputViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUQuoteMessageInputViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -337935,6 +343964,13 @@ "usr": "s:13SendbirdUIKit32SBUQuoteMessageInputViewProtocolP", "mangledName": "$s13SendbirdUIKit32SBUQuoteMessageInputViewProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -337997,13 +344033,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -345143,6 +351172,275 @@ } ] }, + { + "kind": "TypeDecl", + "name": "UserMessage", + "printedName": "UserMessage", + "children": [ + { + "kind": "Var", + "name": "quickReply", + "printedName": "quickReply", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyOptions?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptions", + "printedName": "SendbirdUIKit.SBUQuickReplyOptions", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15SendbirdChatSDK11UserMessageC0A5UIKitE10quickReplyAD08SBUQuickH7OptionsVSgvp", + "mangledName": "$s15SendbirdChatSDK11UserMessageC0A5UIKitE10quickReplyAD08SBUQuickH7OptionsVSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyOptions?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptions", + "printedName": "SendbirdUIKit.SBUQuickReplyOptions", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15SendbirdChatSDK11UserMessageC0A5UIKitE10quickReplyAD08SBUQuickH7OptionsVSgvg", + "mangledName": "$s15SendbirdChatSDK11UserMessageC0A5UIKitE10quickReplyAD08SBUQuickH7OptionsVSgvg", + "moduleName": "SendbirdUIKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cardListData", + "printedName": "cardListData", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15SendbirdChatSDK11UserMessageC0A5UIKitE12cardListDataSDySSypGSgvp", + "mangledName": "$s15SendbirdChatSDK11UserMessageC0A5UIKitE12cardListDataSDySSypGSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15SendbirdChatSDK11UserMessageC0A5UIKitE12cardListDataSDySSypGSgvg", + "mangledName": "$s15SendbirdChatSDK11UserMessageC0A5UIKitE12cardListDataSDySSypGSgvg", + "moduleName": "SendbirdUIKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdChatSDK@objc(cs)SBDUserMessage", + "mangledName": "$s15SendbirdChatSDK11UserMessageC", + "moduleName": "SendbirdChatSDK", + "isOpen": true, + "objc_name": "SBDUserMessage", + "declAttributes": [ + "ObjC" + ], + "superclassUsr": "c:@M@SendbirdChatSDK@objc(cs)SBDBaseMessage", + "isExternal": true, + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "SendbirdChatSDK.BaseMessage", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Identifiable", + "printedName": "Identifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "ID", + "printedName": "ID", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHashable", + "printedName": "Swift.AnyHashable", + "usr": "s:s11AnyHashableV" + } + ] + } + ], + "usr": "s:s12IdentifiableP", + "mangledName": "$ss12IdentifiableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Serializable", + "printedName": "Serializable", + "usr": "c:@M@SendbirdChatSDK@objc(pl)Serializable", + "mangledName": "$s15SendbirdChatSDK12SerializableP" + }, + { + "kind": "Conformance", + "name": "Mappable", + "printedName": "Mappable", + "usr": "c:@M@SendbirdChatSDK@objc(pl)Mappable", + "mangledName": "$s15SendbirdChatSDK8MappableP" + } + ] + }, { "kind": "TypeDecl", "name": "Array", @@ -345330,13 +351628,6 @@ "usr": "s:s24_DestructorSafeContainerP", "mangledName": "$ss24_DestructorSafeContainerP" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, { "kind": "Conformance", "name": "_ArrayProtocol", @@ -345793,6 +352084,13 @@ "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, { "kind": "Conformance", "name": "Hashable", @@ -347408,48249 +353706,11653 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 2158, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 3254, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4667, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4677, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4685, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 6704, - "length": 32, - "value": "\"[Failed] Channel object is nil\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "BooleanLiteral", - "offset": 7288, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 7567, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 7600, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 7603, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "BooleanLiteral", - "offset": 9966, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 10021, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "StringLiteral", - "offset": 421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 679, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1511, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1592, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1603, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1612, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1623, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1697, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1709, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1797, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1887, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "BooleanLiteral", - "offset": 1918, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1980, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 2098, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "BooleanLiteral", - "offset": 3250, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "BooleanLiteral", - "offset": 3866, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 5522, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 5863, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "Array", - "offset": 5935, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 14687, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 14731, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 14762, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 15162, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 15227, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 15238, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 15280, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 15322, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 15363, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 15586, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 15635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 16406, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "Array", - "offset": 17498, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "Array", - "offset": 17851, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18115, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18155, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19056, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19112, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19197, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19203, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19331, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19337, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 19472, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19526, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 20519, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 20529, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 20537, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 20548, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 22806, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23035, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23084, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24068, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24209, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24344, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24500, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 25857, - "length": 44, - "value": "\"Couldn't find cell for row at \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 25900, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 25982, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 27304, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 28861, - "length": 50, - "value": "\"[Request] Delete message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 28910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 30808, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 32854, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "Array", - "offset": 33363, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 35949, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 36665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 42180, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 42805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 43124, - "length": 32, - "value": "\"Needs to implement this method\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 44539, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 44902, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 45756, - "length": 14, - "value": "\"unknown Type\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46356, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46422, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46557, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46607, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46728, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46782, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46934, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 47004, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 47557, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 47747, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48653, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48714, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48818, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48922, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 50304, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 51221, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 51413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 51581, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 51616, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 51757, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 51951, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 52208, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 52641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 52653, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 52688, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 53090, - "length": 46, - "value": "\"New messages inserted : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 53135, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 53249, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 53789, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 53870, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 54386, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 54402, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 54533, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 54938, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 54954, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 55085, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 11, - "value": "\"templates\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 11, - "value": "\"templates\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 1525, - "length": 28, - "value": "\"No have templates in cache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 3545, - "length": 58, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 3577, - "length": 1, - "value": "\".queue.diskcache.template\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "IntegerLiteral", - "offset": 3676, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 3715, - "length": 30, - "value": "\"sbu_template_list_updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 4411, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 4664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "IntegerLiteral", - "offset": 6457, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "Dictionary", - "offset": 6500, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 6640, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 7333, - "length": 49, - "value": "\"Failed to save template to disk cache: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 7381, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 8016, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 8408, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 8988, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9020, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9487, - "length": 33, - "value": "\"Could not remove path: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 9819, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9860, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9951, - "length": 20, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9969, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 10874, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 11251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 11325, - "length": 43, - "value": "\"Error writing to file: lastTokenKey value\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "Dictionary", - "offset": 12102, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Common.swift", - "kind": "BooleanLiteral", - "offset": 517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1301, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1867, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2412, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2423, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2484, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3023, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3027, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 3079, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 3298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.Header.swift", - "kind": "StringLiteral", - "offset": 1669, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "BooleanLiteral", - "offset": 581, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "BooleanLiteral", - "offset": 615, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "BooleanLiteral", - "offset": 706, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "BooleanLiteral", - "offset": 873, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 986, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1146, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1315, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1812, - "length": 2, - "value": "53" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1824, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2006, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2105, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2470, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 488, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 557, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 648, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 700, - "length": 5, - "value": "380.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 750, - "length": 5, - "value": "276.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 810, - "length": 5, - "value": "294.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 869, - "length": 5, - "value": "274.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 1114, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 1924, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 2681, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 2822, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 2863, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 3039, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 3788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 3987, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 4425, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 4614, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6205, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6229, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6257, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 6472, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 6501, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 6531, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6739, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6768, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6955, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6984, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7057, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7062, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7067, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7378, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7405, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7988, - "length": 3, - "value": "251" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 8076, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 8088, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 8145, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 8202, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 8333, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 9917, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 10402, - "length": 10, - "value": "\"sub_type\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 10428, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 10467, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 10577, - "length": 10, - "value": "\"sub_data\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 10681, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 11261, - "length": 5, - "value": "\"\\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 11274, - "length": 7, - "value": "\"\\\\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 11349, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 11361, - "length": 5, - "value": "\"\\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 11537, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 11636, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 11685, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 11709, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 11799, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 13399, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 15307, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 15691, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "Array", - "offset": 15793, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "Array", - "offset": 15942, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16020, - "length": 14, - "value": "\"template_key\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16081, - "length": 6, - "value": "\"tags\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "Array", - "offset": 16105, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 16212, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 16337, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16373, - "length": 12, - "value": "\"noti:stats\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16407, - "length": 9, - "value": "\"clicked\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16438, - "length": 14, - "value": "\"notification\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16573, - "length": 8, - "value": "\"action\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16607, - "length": 14, - "value": "\"template_key\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16652, - "length": 13, - "value": "\"channel_url\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16703, - "length": 6, - "value": "\"tags\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16733, - "length": 12, - "value": "\"message_id\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16782, - "length": 8, - "value": "\"source\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16816, - "length": 12, - "value": "\"message_ts\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16901, - "length": 79, - "value": "\"[\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16917, - "length": 9, - "value": "\"Succeed\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16929, - "length": 8, - "value": "\"Failed\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16938, - "length": 1, - "value": "\"] SendbirdStatistics - \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16968, - "length": 1, - "value": "\", \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16979, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "FloatLiteral", - "offset": 3208, - "length": 4, - "value": "76.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "Array", - "offset": 3978, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "StringLiteral", - "offset": 4390, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5624, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "FloatLiteral", - "offset": 5857, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6303, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6321, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6332, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 9523, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "StringLiteral", - "offset": 9926, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10381, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11469, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7484, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7492, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 8328, - "length": 105, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 8421, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 8428, - "length": 1, - "value": "\".jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 8465, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 8761, - "length": 24, - "value": "\"Failed to get mimeType\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 8888, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 10857, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "Dictionary", - "offset": 11089, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 11923, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 12016, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 12023, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 12040, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "Dictionary", - "offset": 12808, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 13214, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 13307, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 13314, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 13331, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 15921, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 16099, - "length": 105, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 16192, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 16199, - "length": 1, - "value": "\".jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 16417, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 17335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 18091, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 18178, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 18240, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 20040, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 20099, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 20705, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21065, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 21618, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 21623, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21679, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21741, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21820, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24042, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24271, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 24436, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 24522, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24654, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24845, - "length": 3, - "value": "164" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24898, - "length": 3, - "value": "196" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25032, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 25747, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25867, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25972, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25985, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 26242, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 26311, - "length": 3, - "value": "196" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "Array", - "offset": 26730, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 27243, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 27839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 28017, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 28420, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 28901, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 29697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 30022, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 31215, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 32387, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 33965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUOpenChannelViewController.Deprecated.swift", - "kind": "StringLiteral", - "offset": 3791, - "length": 26, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUOpenChannelViewController.Deprecated.swift", - "kind": "StringLiteral", - "offset": 3812, - "length": 4, - "value": "\"Cell\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.Deprecated.swift", - "kind": "StringLiteral", - "offset": 1146, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 67, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1412, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1432, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1826, - "length": 67, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1872, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1892, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "FloatLiteral", - "offset": 2469, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 3097, - "length": 26, - "value": "\"[Request] Channel update\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3173, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3325, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3497, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4156, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4336, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 703, - "length": 32, - "value": "\"SendbirdUIKit.SBUGroupChannelSettingsViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUHighlightMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUHighlightMessageInfo.swift", - "kind": "StringLiteral", - "offset": 1040, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUHighlightMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 1137, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 385, - "length": 21, - "value": "\"notificationSetting\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 21, - "value": "\"notificationSetting\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 1977, - "length": 25, - "value": "\"No have themes in cache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 4601, - "length": 55, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 4633, - "length": 1, - "value": "\".queue.diskcache.theme\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "IntegerLiteral", - "offset": 4729, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 4774, - "length": 45, - "value": "\"sbu_global_notification_settings_updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 4847, - "length": 45, - "value": "\"sbu_global_notification_settings_theme_mode\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 5546, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 5799, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "IntegerLiteral", - "offset": 7648, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "Dictionary", - "offset": 7688, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 7825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 8502, - "length": 46, - "value": "\"Failed to save theme to disk cache: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 8547, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 9182, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 9574, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 10154, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 10186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 10653, - "length": 33, - "value": "\"Could not remove path: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 10685, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 10985, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 11026, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 11117, - "length": 20, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 11135, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "IntegerLiteral", - "offset": 12082, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "IntegerLiteral", - "offset": 12367, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 12908, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 12917, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 13008, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 13090, - "length": 49, - "value": "\"Error writing to file: lastUpdatedTimeKey value\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 14011, - "length": 9, - "value": "\"default\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 14576, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 14658, - "length": 43, - "value": "\"Error writing to file: themeModeKey value\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "Dictionary", - "offset": 15503, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUAdminMessageCellParams.swift", - "kind": "StringLiteral", - "offset": 201, - "length": 25, - "value": "\"SendbirdUIKit.SBUAdminMessageCellParams\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2731, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "StringLiteral", - "offset": 2757, - "length": 38, - "value": "\"[Request] Register users: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2978, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3100, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "StringLiteral", - "offset": 3181, - "length": 42, - "value": "\"[Succeed] Register users request success\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "StringLiteral", - "offset": 614, - "length": 28, - "value": "\"SendbirdUIKit.SBURegisterOperatorViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 2652, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 2729, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 2793, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 3060, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 4313, - "length": 105, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 4406, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 4413, - "length": 1, - "value": "\".jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 4450, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 4691, - "length": 24, - "value": "\"Failed to get mimeType\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 4818, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 6572, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "Dictionary", - "offset": 6804, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 7638, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 7731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 7738, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 7755, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "Dictionary", - "offset": 8454, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 8860, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 8953, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 8960, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 8977, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 11384, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 11562, - "length": 105, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 11655, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 11662, - "length": 1, - "value": "\".jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 11878, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 12688, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 13545, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 13604, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 14186, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 14245, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUDashboardConfig.swift", - "kind": "IntegerLiteral", - "offset": 440, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "StringLiteral", - "offset": 3481, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4037, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "FloatLiteral", - "offset": 4270, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4324, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4697, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4707, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4715, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4726, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "StringLiteral", - "offset": 7897, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8290, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8437, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2593, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "StringLiteral", - "offset": 2619, - "length": 34, - "value": "\"Request invite users: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "StringLiteral", - "offset": 2652, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2855, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "StringLiteral", - "offset": 3058, - "length": 40, - "value": "\"[Succeed] Invite users request success\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "StringLiteral", - "offset": 567, - "length": 22, - "value": "\"SendbirdUIKit.SBUInviteUserViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "IntegerLiteral", - "offset": 494, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "BooleanLiteral", - "offset": 526, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "BooleanLiteral", - "offset": 807, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "BooleanLiteral", - "offset": 822, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "IntegerLiteral", - "offset": 862, - "length": 2, - "value": "91" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "IntegerLiteral", - "offset": 874, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "IntegerLiteral", - "offset": 922, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.List.swift", - "kind": "StringLiteral", - "offset": 2546, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3868, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1817, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2047, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2119, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2713, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2835, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3640, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3762, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4674, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4816, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4933, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5469, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5855, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5999, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "Array", - "offset": 572, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "Array", - "offset": 614, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1161, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1170, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1181, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1191, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1804, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1813, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1824, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1834, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1883, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1926, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 2258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 2325, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 2390, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 2442, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2702, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2710, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2721, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2845, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 2903, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 3042, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3101, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 3321, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 3357, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3822, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3856, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3947, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 4214, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 4374, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 4543, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5134, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5138, - "length": 2, - "value": "54" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5143, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5155, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 5389, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 5481, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5664, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5855, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5954, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 6903, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 8392, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.Header.swift", - "kind": "BooleanLiteral", - "offset": 5727, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 1011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 1119, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 1712, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 1753, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 2231, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3302, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5240, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5253, - "length": 2, - "value": "-8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5262, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5305, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5684, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5748, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 7090, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 11967, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 13046, - "length": 21, - "value": "\"Channel must exist!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 13388, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 13394, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 13562, - "length": 29, - "value": "\"There are no message cells!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 14324, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 15623, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 16339, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 17789, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "FloatLiteral", - "offset": 790, - "length": 4, - "value": "64.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1500, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1506, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1516, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1528, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 1855, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 1910, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 1978, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 2022, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2074, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 2163, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 2213, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2343, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3045, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3173, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3329, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3407, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3472, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "FloatLiteral", - "offset": 3525, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3793, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3871, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3935, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4169, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4238, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4396, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4474, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4538, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "FloatLiteral", - "offset": 4591, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4727, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 5509, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 5621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 6560, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 6672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4352, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4827, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "FloatLiteral", - "offset": 5073, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5415, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5425, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 9751, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10067, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10309, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/ChannelSettingItem\/SBUChannelSettingItem.swift", - "kind": "BooleanLiteral", - "offset": 731, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/ChannelSettingItem\/SBUChannelSettingItem.swift", - "kind": "BooleanLiteral", - "offset": 781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 686, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 709, - "length": 2, - "value": "27" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 730, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 753, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "StringLiteral", - "offset": 897, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1311, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2022, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 3250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateChannelModule.Header.swift", - "kind": "StringLiteral", - "offset": 4723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 5714, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 756, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 1439, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 1657, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 2474, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 2538, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 2699, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 2775, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "FloatLiteral", - "offset": 2881, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 2897, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 2960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 3163, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 3176, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 3187, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "FloatLiteral", - "offset": 3249, - "length": 4, - "value": "60.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "FloatLiteral", - "offset": 3263, - "length": 4, - "value": "60.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 3327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 3450, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 3657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 4111, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "StringLiteral", - "offset": 5292, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "BooleanLiteral", - "offset": 1492, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "BooleanLiteral", - "offset": 1774, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "FloatLiteral", - "offset": 1990, - "length": 4, - "value": "34.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "FloatLiteral", - "offset": 2037, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "BooleanLiteral", - "offset": 2798, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "BooleanLiteral", - "offset": 2909, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "BooleanLiteral", - "offset": 3033, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 3632, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 3785, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 3912, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4048, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4133, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4146, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4253, - "length": 3, - "value": "751" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4384, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4397, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4474, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4582, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4650, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4787, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4800, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "FloatLiteral", - "offset": 4811, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "FloatLiteral", - "offset": 4861, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 6987, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 7099, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "StringLiteral", - "offset": 722, - "length": 24, - "value": "\"SendbirdUIKit.SBUChannelInfoHeaderView\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCollectionViewFlowLayout.swift", - "kind": "BooleanLiteral", - "offset": 382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCollectionViewFlowLayout.swift", - "kind": "Array", - "offset": 654, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCollectionViewFlowLayout.swift", - "kind": "IntegerLiteral", - "offset": 1057, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 466, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 472, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 487, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 571, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 577, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 813, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 884, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1414, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1475, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1946, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1993, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2006, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2011, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2023, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2027, - "length": 3, - "value": "0xF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2034, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2045, - "length": 3, - "value": "0xF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2052, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2069, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2116, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2128, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2139, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2143, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2155, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2174, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2229, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2240, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2245, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2258, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2262, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2274, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2385, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2410, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2434, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2459, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 397, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 856, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 946, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "BooleanLiteral", - "offset": 977, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1039, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1157, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1428, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1524, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1572, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1618, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1666, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1717, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1729, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "Dictionary", - "offset": 4207, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 5082, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 5423, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "Array", - "offset": 5495, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 260, - "length": 5, - "value": "219.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 268, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 282, - "length": 5, - "value": "209.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 290, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 303, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 315, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 368, - "length": 5, - "value": "194.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 376, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 390, - "length": 5, - "value": "169.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 398, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 411, - "length": 5, - "value": "250.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 419, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 433, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 486, - "length": 5, - "value": "116.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 494, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 508, - "length": 4, - "value": "45.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 515, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 528, - "length": 5, - "value": "221.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 536, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 550, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 603, - "length": 4, - "value": "98.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 610, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 624, - "length": 4, - "value": "17.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 631, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 644, - "length": 5, - "value": "200.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 652, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 666, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 719, - "length": 4, - "value": "73.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 726, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 740, - "length": 4, - "value": "19.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 747, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 760, - "length": 5, - "value": "137.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 768, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 782, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 867, - "length": 5, - "value": "168.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 875, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 889, - "length": 5, - "value": "226.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 897, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 910, - "length": 5, - "value": "171.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 918, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 932, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 987, - "length": 5, - "value": "105.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 995, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1009, - "length": 5, - "value": "192.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1017, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1030, - "length": 5, - "value": "133.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1038, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1052, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1107, - "length": 4, - "value": "37.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1114, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1128, - "length": 5, - "value": "156.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1136, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1149, - "length": 5, - "value": "114.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1157, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1171, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1226, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1232, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1246, - "length": 5, - "value": "125.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1254, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1267, - "length": 5, - "value": "105.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1275, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1289, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1344, - "length": 3, - "value": "6.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1350, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1364, - "length": 5, - "value": "104.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1372, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1385, - "length": 4, - "value": "88.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1392, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1406, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1494, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1506, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1564, - "length": 5, - "value": "238.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1572, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1586, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1644, - "length": 5, - "value": "224.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1652, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1666, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1724, - "length": 5, - "value": "189.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1732, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1746, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1804, - "length": 4, - "value": "57.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1811, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1825, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1883, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1890, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1904, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1962, - "length": 4, - "value": "22.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1969, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1983, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2041, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2053, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2135, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2147, - "length": 4, - "value": "0.55" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2202, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2214, - "length": 4, - "value": "0.32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2298, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2310, - "length": 4, - "value": "0.88" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2365, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2377, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2431, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2443, - "length": 4, - "value": "0.38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2498, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2510, - "length": 4, - "value": "0.12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2592, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2604, - "length": 4, - "value": "0.88" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2658, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2670, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2723, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2735, - "length": 4, - "value": "0.38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2789, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2801, - "length": 4, - "value": "0.12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2879, - "length": 5, - "value": "253.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2887, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2901, - "length": 5, - "value": "170.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2909, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2922, - "length": 5, - "value": "170.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2930, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2944, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2995, - "length": 5, - "value": "246.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3003, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3017, - "length": 4, - "value": "97.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3024, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3037, - "length": 4, - "value": "97.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3044, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3058, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3109, - "length": 5, - "value": "222.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3117, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3131, - "length": 4, - "value": "54.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3138, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3151, - "length": 4, - "value": "11.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3158, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3172, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3223, - "length": 5, - "value": "191.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3231, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3245, - "length": 3, - "value": "7.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3251, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3264, - "length": 4, - "value": "17.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3271, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3285, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3336, - "length": 5, - "value": "157.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3344, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3358, - "length": 3, - "value": "9.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3364, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3377, - "length": 4, - "value": "30.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3384, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3398, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3484, - "length": 5, - "value": "173.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3492, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3506, - "length": 5, - "value": "201.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3514, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3527, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3539, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3617, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3629, - "length": 5, - "value": "242.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3637, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3650, - "length": 5, - "value": "182.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3658, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3672, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 1102, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 1702, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 3405, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 3415, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 3423, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 3434, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 4168, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8249, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8907, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 9492, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 9826, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10262, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11039, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11072, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13246, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 13604, - "length": 59, - "value": "\"[Failed] Create channel request: There is no channel url.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 14768, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15530, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "Dictionary", - "offset": 15819, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", - "kind": "BooleanLiteral", - "offset": 484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", - "kind": "BooleanLiteral", - "offset": 1363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", - "kind": "BooleanLiteral", - "offset": 1512, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", - "kind": "BooleanLiteral", - "offset": 2129, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", - "kind": "BooleanLiteral", - "offset": 2283, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 1272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 1625, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 1913, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 2729, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 2755, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 2819, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 3095, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 3675, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 3727, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4393, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4418, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4438, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4461, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4721, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4766, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4789, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 4897, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 5025, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5226, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5251, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5271, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5294, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5521, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5546, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5566, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5589, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 5697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 5719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 6115, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 8951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 9160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 10066, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 10709, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 10751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 10788, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 10882, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 13523, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 13691, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 13732, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 13910, - "length": 3, - "value": "250" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14156, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14256, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14267, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14381, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14483, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 14706, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 14739, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 15494, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 15531, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 15727, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 15821, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 15974, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16097, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16209, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16328, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16410, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 16559, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 16745, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16921, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 17022, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 17032, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 17145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 17248, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 17472, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 17505, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 18267, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 18304, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 18498, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 18593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 18748, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 18872, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 18985, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 19106, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 19189, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 19340, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 19949, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 20700, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 21463, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 21798, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 21858, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 22754, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 22987, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 23481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 23614, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 26203, - "length": 3, - "value": "751" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 26443, - "length": 3, - "value": "751" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 27041, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 27173, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 27693, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 27759, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 27839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 29310, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 29385, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 29867, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 29896, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 30060, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 30159, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 30437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 30599, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 30610, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 30852, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 31232, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 31645, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 31920, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 32195, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 32689, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 32814, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 32869, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 32902, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 32948, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 33572, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 34413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 34492, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 34567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 35164, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 35337, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 36298, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 36436, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 37119, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 37194, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 37753, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 37782, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 37946, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 38045, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 38327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 38491, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 38502, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 38744, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 39126, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 39530, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 39807, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 40082, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 40517, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 40907, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 40986, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 41061, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 41662, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 42501, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 42931, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 43991, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 44105, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 44738, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 45337, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 45469, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 45495, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 45657, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 45813, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 46090, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 46972, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 47744, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 48433, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 48460, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 48618, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 48778, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 49173, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 50088, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 50803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 52064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 52940, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 53386, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 54652, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 54026, - "length": 23, - "value": "\"SendbirdUIKit.MessageTemplateBaseView\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 55845, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 55886, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 55971, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 56051, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 56093, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 58180, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 58254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 58768, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 59140, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 59689, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 60302, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 60440, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 61379, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 61449, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 61547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 61630, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 61712, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 61798, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 62188, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 62648, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 62992, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 63584, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 64319, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 64587, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 65356, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 65370, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 65970, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 65984, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 1095, - "length": 23, - "value": "\"SendbirdUIKit.MessageTemplateRenderer\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 67169, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 67554, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 67611, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 67617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 68095, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 68154, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 68668, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 68872, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 68971, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 69108, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 69581, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 69749, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 69755, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 70550, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "BooleanLiteral", - "offset": 953, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "BooleanLiteral", - "offset": 1096, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 2958, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 2971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 2979, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 2990, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "BooleanLiteral", - "offset": 3879, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "StringLiteral", - "offset": 4710, - "length": 22, - "value": "\"didSelectChannelInfo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "StringLiteral", - "offset": 4987, - "length": 30, - "value": "\"didSelectChannelParticipants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUMessageWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 573, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUMessageWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 602, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "Array", - "offset": 1611, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 1916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 2215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 4065, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 5362, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7147, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7157, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7165, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7176, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8522, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8782, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 9190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 10203, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 10529, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 10562, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 10565, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 14782, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 15799, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "Array", - "offset": 16065, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 16531, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 16586, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 18313, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 18683, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUStackView.swift", - "kind": "FloatLiteral", - "offset": 512, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/NSObject+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 362, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/NSObject+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 453, - "length": 27, - "value": "\"Class name couldn't find.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/NSObject+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 696, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/NSObject+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 745, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/NSObject+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 853, - "length": 27, - "value": "\"Class name couldn't find.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 1670, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2934, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 3850, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 4089, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 4304, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 5157, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 5541, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 5808, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6008, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 6056, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 6070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6225, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 7215, - "length": 8, - "value": "\"thumb_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 7797, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 8200, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 9795, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 10158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 10237, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 15, - "value": "\"Group Channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 300, - "length": 14, - "value": "\"Open Channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1256, - "length": 7, - "value": "\"image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1296, - "length": 5, - "value": "\"svg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1378, - "length": 7, - "value": "\"video\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1431, - "length": 7, - "value": "\"audio\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1553, - "length": 7, - "value": "\"voice\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1670, - "length": 5, - "value": "\"pdf\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1894, - "length": 3, - "value": "\";\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 1928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1993, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 2991, - "length": 4, - "value": "\", \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 5998, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 6074, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "BooleanLiteral", - "offset": 6604, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "BooleanLiteral", - "offset": 6644, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "BooleanLiteral", - "offset": 7223, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "BooleanLiteral", - "offset": 7263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 7391, - "length": 10, - "value": "\" \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 7444, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "FloatLiteral", - "offset": 7482, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 8036, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 8040, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "BooleanLiteral", - "offset": 8815, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 9395, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 9402, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 9435, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 9443, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 9483, - "length": 11, - "value": "\"%02d:%02d\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 695, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 741, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1048, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1074, - "length": 3, - "value": "-12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1096, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1119, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1176, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1288, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1314, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1336, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "StringLiteral", - "offset": 1724, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2136, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2513, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 266, - "length": 8, - "value": "\"Cancel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 302, - "length": 4, - "value": "\"OK\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 337, - "length": 7, - "value": "\"Retry\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 374, - "length": 6, - "value": "\"Save\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 410, - "length": 6, - "value": "\"Copy\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 448, - "length": 8, - "value": "\"Delete\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 486, - "length": 6, - "value": "\"Edit\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 524, - "length": 8, - "value": "\"Remove\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 8, - "value": "\"Camera\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 615, - "length": 15, - "value": "\"Photo library\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 664, - "length": 7, - "value": "\"Files\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 704, - "length": 12, - "value": "\"Loading...\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 748, - "length": 8, - "value": "\"Invite\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 791, - "length": 12, - "value": "\"Take photo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 840, - "length": 14, - "value": "\"Choose photo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 891, - "length": 14, - "value": "\"Remove photo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 942, - "length": 14, - "value": "\"View library\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 988, - "length": 8, - "value": "\"Search\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1030, - "length": 10, - "value": "\"Settings\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1071, - "length": 7, - "value": "\"Reply\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1142, - "length": 34, - "value": "\"Are you sure you want to delete?\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1227, - "length": 41, - "value": "\"Please allow camera usage from settings\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1325, - "length": 34, - "value": "\"Please Allow PhotoLibrary Access\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1424, - "length": 60, - "value": "\"PhotoLibrary access required to get your photos and videos\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1608, - "length": 45, - "value": "\"Please allow microphone usage from settings\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1721, - "length": 11, - "value": "\"Yesterday\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1828, - "length": 8, - "value": "\"%lld%@\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 1858, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1863, - "length": 7, - "value": "\"years\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1873, - "length": 6, - "value": "\"year\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1981, - "length": 8, - "value": "\"%lld%@\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 2011, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2016, - "length": 6, - "value": "\"days\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2025, - "length": 5, - "value": "\"day\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2134, - "length": 11, - "value": "\"%lldmonth\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 7, - "value": "\"%lldh\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2377, - "length": 7, - "value": "\"%lldm\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2435, - "length": 5, - "value": "\"ago\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2473, - "length": 4, - "value": "\"on\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2556, - "length": 10, - "value": "\"Channels\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2621, - "length": 18, - "value": "\"uploaded a file.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2709, - "length": 15, - "value": "\"Group Channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2773, - "length": 14, - "value": "\"(No members)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 11, - "value": "\"Last seen\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3143, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3212, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3226, - "length": 8, - "value": "\"Member\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3269, - "length": 17, - "value": "\"%@ is typing...\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3311, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3351, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3381, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3395, - "length": 8, - "value": "\"Member\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3441, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3471, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3485, - "length": 8, - "value": "\"Member\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3528, - "length": 25, - "value": "\"%@ and %@ are typing...\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3613, - "length": 30, - "value": "\"Several people are typing...\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3714, - "length": 13, - "value": "\"File saved.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3782, - "length": 27, - "value": "\"Couldn’t download file.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3860, - "length": 23, - "value": "\"Couldn’t open file.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3933, - "length": 17, - "value": "\"uploaded a file\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 4059, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4081, - "length": 15, - "value": "\"1 new message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 4110, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 4114, - "length": 2, - "value": "99" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4137, - "length": 23, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4146, - "length": 3, - "value": "\" new messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 4174, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4201, - "length": 18, - "value": "\"99+ new messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4256, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4327, - "length": 16, - "value": "\"Channel frozen\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4427, - "length": 14, - "value": "\"Open Channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4492, - "length": 14, - "value": "\"Participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 4627, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4649, - "length": 15, - "value": "\"1 participant\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4701, - "length": 23, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4710, - "length": 12, - "value": "\" participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 44, - "value": "\"SENDBIRD_NOTIFICATION_CHANNEL_NOTIFICATION\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5267, - "length": 59, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5315, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5325, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5468, - "length": 15, - "value": "\"Notifications\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5569, - "length": 21, - "value": "\"Channel information\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5643, - "length": 13, - "value": "\"Change name\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5710, - "length": 22, - "value": "\"Change channel image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 12, - "value": "\"Enter name\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5864, - "length": 20, - "value": "\"Enter channel name\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5939, - "length": 15, - "value": "\"Notifications\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6012, - "length": 4, - "value": "\"On\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6075, - "length": 5, - "value": "\"Off\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6150, - "length": 15, - "value": "\"Mentions only\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6225, - "length": 9, - "value": "\"Members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6294, - "length": 14, - "value": "\"Participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 6422, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6444, - "length": 9, - "value": "\"members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6490, - "length": 18, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6499, - "length": 7, - "value": "\" members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6571, - "length": 15, - "value": "\"Leave channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6634, - "length": 16, - "value": "\"Delete channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6712, - "length": 17, - "value": "\"Delete channel?\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6789, - "length": 47, - "value": "\"Once deleted, this channel can't be restored.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6884, - "length": 19, - "value": "\"Search in channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6961, - "length": 13, - "value": "\"Moderations\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7025, - "length": 11, - "value": "\"Operators\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7091, - "length": 15, - "value": "\"Muted members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7166, - "length": 20, - "value": "\"Muted participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7249, - "length": 14, - "value": "\"Banned users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7319, - "length": 16, - "value": "\"Freeze channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7385, - "length": 5, - "value": "\"URL\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7488, - "length": 15, - "value": "\"Notifications\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7567, - "length": 15, - "value": "\"Notifications\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7636, - "length": 18, - "value": "\"All new messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7718, - "length": 15, - "value": "\"Mentions only\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7803, - "length": 100, - "value": "\"Turn on push notifications if you wish to be notified when messages are delivered to this channel.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7988, - "length": 16, - "value": "\"Type a message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8059, - "length": 37, - "value": "\"Chat is unavailable in this channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 15, - "value": "\"You are muted\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8209, - "length": 18, - "value": "\"Reply to message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8336, - "length": 35, - "value": "\"Reply to \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8370, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8435, - "length": 7, - "value": "\"Photo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8498, - "length": 5, - "value": "\"GIF\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8561, - "length": 7, - "value": "\"Video\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8632, - "length": 10, - "value": "\"(edited)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8682, - "length": 16, - "value": "\"System message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8745, - "length": 24, - "value": "\"(Unknown message type)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8822, - "length": 26, - "value": "\"Can't read this message.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8979, - "length": 56, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8998, - "length": 7, - "value": "\" replied to \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9034, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9078, - "length": 5, - "value": "\"You\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 9270, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9292, - "length": 9, - "value": "\"1 reply\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 9315, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 9319, - "length": 2, - "value": "99" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9342, - "length": 30, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9363, - "length": 7, - "value": "\" replies\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 9386, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9426, - "length": 13, - "value": "\"99+ replies\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9442, - "length": 30, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9463, - "length": 7, - "value": "\" replies\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9509, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9616, - "length": 52, - "value": "\"Couldn't find the original message for this reply.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9741, - "length": 21, - "value": "\"Message unavailable\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9849, - "length": 18, - "value": "\"(Template error)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9929, - "length": 31, - "value": "\"Can't read this notification.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10025, - "length": 13, - "value": "\"No channels\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10081, - "length": 13, - "value": "\"No messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10142, - "length": 18, - "value": "\"No notifications\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10200, - "length": 10, - "value": "\"No users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10258, - "length": 18, - "value": "\"No muted members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10329, - "length": 23, - "value": "\"No muted participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10399, - "length": 17, - "value": "\"No banned users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10461, - "length": 18, - "value": "\"No results found\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10516, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 10679, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10701, - "length": 8, - "value": "\"Create\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10746, - "length": 17, - "value": "\"Create \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10762, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10831, - "length": 13, - "value": "\"New Channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10905, - "length": 16, - "value": "\"Select members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10981, - "length": 21, - "value": "\"New channel profile\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11092, - "length": 8, - "value": "\"Create\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11156, - "length": 13, - "value": "\"New channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11237, - "length": 20, - "value": "\"Enter channel name\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11340, - "length": 14, - "value": "\"Invite users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11413, - "length": 14, - "value": "\"Select users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 11537, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11559, - "length": 8, - "value": "\"Invite\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11604, - "length": 17, - "value": "\"Invite \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 11749, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11771, - "length": 10, - "value": "\"Register\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11818, - "length": 19, - "value": "\"Register \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11836, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11916, - "length": 7, - "value": "\"(You)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11961, - "length": 5, - "value": "\"Ban\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12006, - "length": 7, - "value": "\"Unban\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12052, - "length": 6, - "value": "\"Mute\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12099, - "length": 8, - "value": "\"Unmute\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12161, - "length": 21, - "value": "\"Unregister operator\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12234, - "length": 22, - "value": "\"Register as operator\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12304, - "length": 9, - "value": "\"Members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12363, - "length": 11, - "value": "\"Operators\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12428, - "length": 15, - "value": "\"Muted members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12502, - "length": 20, - "value": "\"Muted Participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12584, - "length": 14, - "value": "\"Banned users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12651, - "length": 14, - "value": "\"Participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12728, - "length": 11, - "value": "\"(No name)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12778, - "length": 10, - "value": "\"Operator\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12872, - "length": 10, - "value": "\"Operator\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12931, - "length": 8, - "value": "\"Member\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12983, - "length": 9, - "value": "\"User ID\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13037, - "length": 9, - "value": "\"Message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13092, - "length": 10, - "value": "\"Register\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13150, - "length": 12, - "value": "\"Unregister\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 6, - "value": "\"Mute\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 8, - "value": "\"Unmute\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13303, - "length": 5, - "value": "\"Ban\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13384, - "length": 7, - "value": "\"Group\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13439, - "length": 13, - "value": "\"Super group\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13499, - "length": 11, - "value": "\"Broadcast\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 3, - "value": "\"@\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13722, - "length": 95, - "value": "\"You can mention up to \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 13793, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13796, - "length": 5, - "value": "\" times per message. \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13993, - "length": 17, - "value": "\"Reply in thread\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14113, - "length": 17, - "value": "\"Reply in thread\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14177, - "length": 17, - "value": "\"Reply to thread\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14283, - "length": 8, - "value": "\"Thread\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14514, - "length": 8, - "value": "\"Cancel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14772, - "length": 20, - "value": "\"Channel is frozen.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14996, - "length": 31, - "value": "\"You're muted by the operator.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 15242, - "length": 15, - "value": "\"Voice message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 15459, - "length": 15, - "value": "\"Voice message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 15715, - "length": 15, - "value": "\"Voice message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 15846, - "length": 15, - "value": "\"Voice_message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 276, - "length": 4, - "value": "18.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 371, - "length": 4, - "value": "18.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 583, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 618, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 775, - "length": 4, - "value": "-0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 906, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 1049, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 1268, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 1303, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 1595, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 1815, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 1850, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 2141, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 2395, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 2683, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 2899, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 2934, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 3236, - "length": 4, - "value": "18.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 3460, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 3495, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 3657, - "length": 4, - "value": "0.38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 3795, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 4017, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 4052, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 4214, - "length": 4, - "value": "-0.4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 4352, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 4574, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 4609, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 4882, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 5102, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 5137, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 5439, - "length": 4, - "value": "12.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 5661, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 5696, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 5974, - "length": 4, - "value": "12.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 6199, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 6234, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 6509, - "length": 4, - "value": "11.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 6731, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 6766, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 7044, - "length": 4, - "value": "11.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 7269, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 7304, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 7629, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 7855, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 7890, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 8054, - "length": 4, - "value": "-0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 8195, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 8422, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 8457, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 8621, - "length": 4, - "value": "-0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 8762, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 8989, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 9024, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 9188, - "length": 4, - "value": "-0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "Array", - "offset": 1042, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "Array", - "offset": 1126, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2255, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2922, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 4446, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 4456, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 4464, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 4475, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6164, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6200, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 9671, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 10260, - "length": 59, - "value": "\"[Failed] Create channel request: There is no channel url.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.Header.swift", - "kind": "StringLiteral", - "offset": 5560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.Header.swift", - "kind": "BooleanLiteral", - "offset": 6720, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "FloatLiteral", - "offset": 789, - "length": 3, - "value": "0.4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 827, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 1762, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 1772, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 1780, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 1791, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1973, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1988, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 2028, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 2040, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 2643, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 2734, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 2765, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 42, - "value": "\"quoted_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 3868, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 5163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 5219, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 351, - "length": 3, - "value": "136" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 399, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 446, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 497, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 546, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 660, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 774, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1002, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 1268, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 1531, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 1699, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 2583, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 2755, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 2942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 3029, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 3101, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4423, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4480, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4540, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4596, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4770, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4832, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 5014, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 5082, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 5245, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/MemberList\/SBUMemberListViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 5205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/MemberList\/SBUMemberListViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 7940, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 228, - "length": 3, - "value": "244" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 284, - "length": 3, - "value": "240" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 297, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 350, - "length": 3, - "value": "240" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 363, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 433, - "length": 3, - "value": "156" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 446, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 515, - "length": 3, - "value": "136" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 528, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 600, - "length": 3, - "value": "311" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 613, - "length": 3, - "value": "207" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 677, - "length": 3, - "value": "311" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 690, - "length": 3, - "value": "207" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 750, - "length": 5, - "value": "144.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 765, - "length": 4, - "value": "38.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 823, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 837, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 897, - "length": 4, - "value": "38.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 911, - "length": 4, - "value": "38.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 977, - "length": 5, - "value": "144.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 992, - "length": 4, - "value": "38.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 1052, - "length": 3, - "value": "244" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 1120, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 1132, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1171, - "length": 42, - "value": "\"https:\/\/static.sendbird.com\/sample\/cover\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1254, - "length": 10, - "value": "\"sb_uikit\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1304, - "length": 20, - "value": "\"com.sendbird.uikit\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1378, - "length": 44, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1398, - "length": 1, - "value": "\".delegate.channel.group\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1470, - "length": 43, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1490, - "length": 1, - "value": "\".delegate.channel.open\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1561, - "length": 43, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1581, - "length": 1, - "value": "\".delegate.channel.feed\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1656, - "length": 41, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1676, - "length": 1, - "value": "\".delegate.connection\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1734, - "length": 15, - "value": "\"SBUAppVersion\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1789, - "length": 11, - "value": "\"audio\/m4a\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1849, - "length": 16, - "value": "\"sbu_type=voice\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1907, - "length": 28, - "value": "\"KEY_VOICE_MESSAGE_DURATION\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1976, - "length": 27, - "value": "\"KEY_INTERNAL_MESSAGE_TYPE\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 580, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 771, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 802, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 838, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 1003, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 1142, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "FloatLiteral", - "offset": 1794, - "length": 3, - "value": "0.4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 1845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 2764, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 3562, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 3949, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 3983, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 4121, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 4398, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "FloatLiteral", - "offset": 4444, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 4504, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 4515, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 4674, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 5071, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 5693, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 6355, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "FloatLiteral", - "offset": 8770, - "length": 4, - "value": "0.25" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "FloatLiteral", - "offset": 9161, - "length": 4, - "value": "0.25" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "IntegerLiteral", - "offset": 570, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "Array", - "offset": 735, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 1847, - "length": 46, - "value": "\"Requires a channel object for message search\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1901, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2719, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 3629, - "length": 29, - "value": "\"Keyword shouldn't be empty.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 3765, - "length": 15, - "value": "\"Same keyword.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 3840, - "length": 42, - "value": "\"new search keyword : [\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 3880, - "length": 1, - "value": "\"]\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4079, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 4202, - "length": 56, - "value": "\"query : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 4257, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4481, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 4546, - "length": 20, - "value": "\"loading next page.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4879, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5417, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/UserList\/SBUBaseSelectUserViewController.Deprecated.swift", - "kind": "Array", - "offset": 2306, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/UserList\/SBUBaseSelectUserViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 7646, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUInviteUserViewController.swift", - "kind": "StringLiteral", - "offset": 1910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUInviteUserViewController.swift", - "kind": "StringLiteral", - "offset": 2455, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUInviteUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 2966, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUInviteUserViewController.swift", - "kind": "StringLiteral", - "offset": 3016, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUInviteUserViewController.swift", - "kind": "StringLiteral", - "offset": 3412, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "BooleanLiteral", - "offset": 484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 800, - "length": 5, - "value": "10001" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "BooleanLiteral", - "offset": 1967, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "BooleanLiteral", - "offset": 2301, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "BooleanLiteral", - "offset": 2920, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 3676, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "BooleanLiteral", - "offset": 3734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 4402, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 4412, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 4424, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 4435, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 1089, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 1338, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 1567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "StringLiteral", - "offset": 2111, - "length": 24, - "value": "\"UIRemoteKeyboardWindow\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 2687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 2765, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 2771, - "length": 2, - "value": "50" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 2943, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 4079, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "FloatLiteral", - "offset": 4603, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 4669, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "FloatLiteral", - "offset": 4749, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 5245, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 5282, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 5515, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 5919, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 6919, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 6968, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 7265, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "Array", - "offset": 1281, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1436, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1931, - "length": 3, - "value": "-12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1991, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2129, - "length": 3, - "value": "311" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2208, - "length": 3, - "value": "750" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2338, - "length": 3, - "value": "311" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3800, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4082, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4416, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4608, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4647, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4759, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4864, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4930, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4966, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5099, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5154, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5219, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5256, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 6284, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "StringLiteral", - "offset": 465, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 516, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 545, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 587, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 759, - "length": 5, - "value": "100.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 796, - "length": 4, - "value": "64.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2088, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2094, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2186, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2656, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 3081, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 3122, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 3175, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 434, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 953, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 957, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 2566, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 2640, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 2646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 2838, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 3471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 4750, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 5291, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 5775, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 6102, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 6289, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 6438, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 6444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 6724, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 6768, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 6872, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7291, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7296, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7363, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7880, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 8493, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "StringLiteral", - "offset": 9124, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 9267, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 9340, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 9682, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 9923, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 10248, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "StringLiteral", - "offset": 11056, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "StringLiteral", - "offset": 11094, - "length": 40, - "value": "\"https:\/\/sendbird.com\/main\/img\/profiles\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "StringLiteral", - "offset": 11157, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 432, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 546, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 667, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 787, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 902, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 1235, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 1602, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 1857, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 2062, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 2273, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Array", - "offset": 2355, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 2462, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 2630, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 2831, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 2970, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.List.swift", - "kind": "StringLiteral", - "offset": 2878, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.List.swift", - "kind": "Array", - "offset": 4475, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4966, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5711, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 6358, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "BooleanLiteral", - "offset": 387, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "BooleanLiteral", - "offset": 332, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 11, - "value": "\"SendbirdUIKit.SBUMenuItem\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "Array", - "offset": 1440, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1572, - "length": 5, - "value": "180.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1608, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1643, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1677, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1712, - "length": 4, - "value": "18.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1752, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1801, - "length": 4, - "value": "15.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1848, - "length": 4, - "value": "36.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 3657, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 3692, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 4606, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 4631, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 4775, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 4812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 4864, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 5050, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 5518, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 5559, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 5612, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "Array", - "offset": 6002, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 6988, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 7118, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 8195, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 8216, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 8281, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "Array", - "offset": 8472, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 9008, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 9020, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 9452, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 9522, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 9533, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 9580, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 9627, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "BooleanLiteral", - "offset": 9673, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.Header.swift", - "kind": "StringLiteral", - "offset": 5967, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 1788, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 4073, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 4078, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 4103, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 4108, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 5974, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 5987, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 5995, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 6006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 7470, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 1296, - "length": 32, - "value": "\"SendbirdUIKit.SBUSelectablePhotoViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 8233, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 8726, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 8730, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 8771, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 9177, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 9690, - "length": 5, - "value": "\"jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 9727, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 9820, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 9827, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 9844, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 10520, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 11286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 11947, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 12086, - "length": 15, - "value": "\"not supported\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 12142, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1182, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1227, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1247, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1636, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1681, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1701, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "FloatLiteral", - "offset": 2276, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 2899, - "length": 26, - "value": "\"[Request] Channel update\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3298, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4137, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 537, - "length": 31, - "value": "\"SendbirdUIKit.SBUOpenChannelSettingsViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 21, - "value": "\"com.sendbird.atomic\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "BooleanLiteral", - "offset": 934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "BooleanLiteral", - "offset": 1098, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "BooleanLiteral", - "offset": 1397, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2212, - "length": 9, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2235, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2212, - "length": 9, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2235, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2212, - "length": 9, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2235, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2900, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 3617, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 3741, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4200, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4925, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5019, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5060, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5245, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5286, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5467, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5511, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5531, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5690, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5869, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5913, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5933, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7558, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 7594, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8411, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8475, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 8519, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10450, - "length": 29, - "value": "\"[Request] Send user message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 11143, - "length": 40, - "value": "\"A filtered user message has been sent.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11248, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11654, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12865, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 12913, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 12927, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13569, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14829, - "length": 79, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14861, - "length": 1, - "value": "\";\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15353, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16030, - "length": 29, - "value": "\"[Request] Send file message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16222, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 16352, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16397, - "length": 56, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16435, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16452, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16516, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16554, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17100, - "length": 72, - "value": "\"File message transfer progress: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17145, - "length": 1, - "value": "\" - \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17171, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18147, - "length": 56, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18185, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18202, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18239, - "length": 30, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18251, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18268, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19281, - "length": 40, - "value": "\"A filtered file message has been sent.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19386, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19684, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20245, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 20289, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21909, - "length": 31, - "value": "\"[Request] Update user message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22731, - "length": 38, - "value": "\"[Request] Resend failed user message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23556, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23978, - "length": 38, - "value": "\"[Request] Resend failed file message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24980, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25018, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25286, - "length": 50, - "value": "\"[Request] Delete message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25335, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26640, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26908, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27482, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27567, - "length": 94, - "value": "\"First : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27614, - "length": 1, - "value": "\", Last : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27660, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27701, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 28906, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 29118, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 30125, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 31189, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 31237, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 34595, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 34756, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 35430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 35916, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 36203, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 36348, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 36487, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 36954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 37362, - "length": 24, - "value": "\"[Request] Add Reaction\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 37594, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 37664, - "length": 49, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 37700, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 37703, - "length": 8, - "value": "\" reaction\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 38092, - "length": 27, - "value": "\"[Request] Delete Reaction\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 38330, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 38384, - "length": 49, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 38420, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 38423, - "length": 8, - "value": "\" reaction\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 39001, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 39198, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 39653, - "length": 41, - "value": "\"flushing cache with : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 39693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40064, - "length": 26, - "value": "\"Did succeed reconnection\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40210, - "length": 58, - "value": "\"[Failed] Update user info: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40267, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40695, - "length": 38, - "value": "\"Did receive user message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40732, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40788, - "length": 38, - "value": "\"Did receive file message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40825, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40882, - "length": 39, - "value": "\"Did receive admin message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40920, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "Array", - "offset": 241, - "length": 14, - "value": "[\"\", \"K\", \"M\"]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 305, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 339, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 379, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 413, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 444, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 53, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 512, - "length": 6, - "value": "\"%.1f\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 546, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 586, - "length": 4, - "value": "\".0\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 598, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 402, - "length": 3, - "value": "164" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 458, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 514, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 625, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 681, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 733, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1231, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1275, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1923, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 2481, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 2527, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuCell.swift", - "kind": "BooleanLiteral", - "offset": 363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 812, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 1086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 2641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 2715, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 2727, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 2751, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3009, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3031, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3075, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3097, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3199, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 3531, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 3598, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 3650, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3974, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3984, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 4003, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 4270, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 4491, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 4526, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5029, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5128, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5374, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 6260, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 6514, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 6719, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 6812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7240, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7277, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7304, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7353, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7409, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7634, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7686, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 26, - "value": "\"SendbirdUIKit.SBUEmojiListViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 1426, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 2025, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2341, - "length": 27, - "value": "\"Cannot use `init(coder:)`\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 2656, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 3618, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4573, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4877, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5087, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5454, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 5504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6563, - "length": 45, - "value": "\"Unread message count: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6607, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8604, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 8700, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10489, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10515, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10539, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10690, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11764, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11797, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11800, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12525, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12606, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 12735, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 12747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 12826, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 12838, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12908, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12928, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12992, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13037, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13489, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13535, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 14632, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15267, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15338, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 16637, - "length": 63, - "value": "\"Fetched : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 16670, - "length": 1, - "value": "\", keepScroll : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 16699, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 16843, - "length": 30, - "value": "\"Fetched empty notifications.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17130, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "Array", - "offset": 18100, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 18342, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21075, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21179, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21540, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21593, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21830, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21889, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22281, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22418, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22489, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22501, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "Array", - "offset": 23468, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23693, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23911, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 24428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 305, - "length": 40, - "value": "\"SendbirdUIKit.SBUChatNotificationChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 1806, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 5649, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5922, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 6207, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 6463, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 6514, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6610, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 7836, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 8039, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 8248, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 8347, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 8523, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8650, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 8817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 9097, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 9253, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 9411, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10111, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10228, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10364, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10404, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10819, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11525, - "length": 30, - "value": "\"listComponent is not set up.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12884, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13079, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13159, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13164, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13941, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 14326, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 14570, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 15196, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15340, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15395, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15821, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "Array", - "offset": 18463, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19490, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20271, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21408, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21440, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21445, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 21747, - "length": 79, - "value": "\"There is no cached linked message. Reloads messages based on linked messages.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21989, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22137, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22237, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 22380, - "length": 62, - "value": "\"The cell for row at \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 22413, - "length": 2, - "value": "\" is not `SBUBaseMessageCell`\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 24226, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 24280, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 24721, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 24769, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 25055, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 27723, - "length": 30, - "value": "\"Record permission was denied\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "Array", - "offset": 28758, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 29181, - "length": 79, - "value": "\"There is no cached linked message. Reloads messages based on linked messages.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 29398, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 29574, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 29665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 275, - "length": 29, - "value": "\"SendbirdUIKit.SBUGroupChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 275, - "length": 29, - "value": "\"SendbirdUIKit.SBUGroupChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 1027, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1405, - "length": 2, - "value": "-5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1418, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1431, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1442, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1536, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1576, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 1616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1691, - "length": 2, - "value": "-3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1704, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1717, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1728, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1771, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 1810, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1919, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1962, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 2001, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2149, - "length": 2, - "value": "-5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2162, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2175, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2186, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2259, - "length": 2, - "value": "-3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2272, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2285, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2296, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2367, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2392, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2403, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 3774, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 3896, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4746, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4800, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4893, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4938, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 5070, - "length": 2, - "value": "99" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "StringLiteral", - "offset": 5075, - "length": 4, - "value": "\"99\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 5157, - "length": 2, - "value": "99" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "StringLiteral", - "offset": 5162, - "length": 5, - "value": "\"99+\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 5837, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 5841, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 449, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 497, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 543, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 591, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 642, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 654, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Unavailable.swift", - "kind": "BooleanLiteral", - "offset": 757, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Unavailable.swift", - "kind": "BooleanLiteral", - "offset": 5938, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 3190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5293, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "FloatLiteral", - "offset": 5345, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 5468, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5691, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5839, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5881, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6033, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7000, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "FloatLiteral", - "offset": 7052, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 7232, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 7590, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7738, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7780, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8760, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 9568, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 9617, - "length": 28, - "value": "\"The index is out of range.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 9653, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 9733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10719, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10811, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 11178, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11235, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "Array", - "offset": 11734, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUBaseChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 955, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUBaseChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 1659, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUBaseChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 1669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUBaseChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 1677, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUBaseChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 1688, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 683, - "length": 6, - "value": "\"file\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4429, - "length": 25, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4441, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4453, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4499, - "length": 35, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4511, - "length": 1, - "value": "\"\/File.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4533, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 372, - "length": 7, - "value": "\"image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "FloatLiteral", - "offset": 729, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "BooleanLiteral", - "offset": 2189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "BooleanLiteral", - "offset": 2633, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 2651, - "length": 20, - "value": "\"quoted_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 2670, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "BooleanLiteral", - "offset": 3343, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "IntegerLiteral", - "offset": 3399, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "IntegerLiteral", - "offset": 3413, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 4779, - "length": 9, - "value": "\"quoted_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 4866, - "length": 9, - "value": "\"quoted_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 4883, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 4975, - "length": 8, - "value": "\"thumb_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 4991, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "BooleanLiteral", - "offset": 5741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6068, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6336, - "length": 30, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6348, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6365, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6411, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6423, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "BooleanLiteral", - "offset": 7094, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7267, - "length": 53, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7278, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7299, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7308, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7319, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1288, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1450, - "length": 5, - "value": "270.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1492, - "length": 3, - "value": "3.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1535, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1575, - "length": 4, - "value": "32.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1615, - "length": 4, - "value": "32.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1657, - "length": 4, - "value": "18.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1694, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1729, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1769, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1804, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1838, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1873, - "length": 4, - "value": "18.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1913, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1954, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "BooleanLiteral", - "offset": 2819, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "StringLiteral", - "offset": 2877, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 2934, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "BooleanLiteral", - "offset": 3967, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "StringLiteral", - "offset": 4019, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 4070, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "BooleanLiteral", - "offset": 4470, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 6000, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 6057, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 6355, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 7652, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 8236, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 9064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 9070, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 9080, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 9091, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "StringLiteral", - "offset": 9436, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 9816, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 9830, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 9887, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 10081, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 10120, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 10868, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 11234, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 12078, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 12704, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 12716, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 13195, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 13206, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 13805, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 13846, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 13905, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "BooleanLiteral", - "offset": 14180, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 15532, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 15720, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 15846, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 16585, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUDebouncer.swift", - "kind": "FloatLiteral", - "offset": 332, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUDebouncer.swift", - "kind": "BooleanLiteral", - "offset": 1233, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUDebouncer.swift", - "kind": "BooleanLiteral", - "offset": 1460, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUDebouncer.swift", - "kind": "StringLiteral", - "offset": 205, - "length": 12, - "value": "\"SendbirdUIKit.SBUDebouncer\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1140, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "Array", - "offset": 1411, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "Array", - "offset": 1487, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "Array", - "offset": 1798, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2266, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2312, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 3566, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 3571, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3876, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4110, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4186, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4553, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4637, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4798, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 5681, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6227, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "Array", - "offset": 6408, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 6493, - "length": 21, - "value": "\"[Request] User List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 6557, - "length": 26, - "value": "\"[Request] Next user List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 6687, - "length": 50, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 6702, - "length": 10, - "value": "\" customized users have been added.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6781, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8112, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8153, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8215, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 8246, - "length": 29, - "value": "\"All users have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8712, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 8855, - "length": 33, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 8881, - "length": 5, - "value": "\" users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9137, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9613, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9907, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10044, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 10165, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 10170, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10302, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 11524, - "length": 36, - "value": "\"Cannot create the memberListQuery.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 11568, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11651, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11948, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 11979, - "length": 31, - "value": "\"All members have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12259, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12325, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12463, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 12619, - "length": 37, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 12647, - "length": 7, - "value": "\" members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 13820, - "length": 41, - "value": "\"Cannot create the participantListQuery.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 13869, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13952, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14192, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14254, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 14285, - "length": 36, - "value": "\"All participants have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14598, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14664, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14802, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 14954, - "length": 40, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 14980, - "length": 12, - "value": "\" participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15297, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15633, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15754, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15921, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16076, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 16219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 16365, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16753, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 17217, - "length": 24, - "value": "\"Selected user: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 17240, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 1047, - "length": 26, - "value": "\"SendbirdUIKit.SBUBaseSelectUserViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7609, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7622, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7630, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 13526, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 15291, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 15555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/ChatSDK\/BaseMessage+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 371, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/ChatSDK\/BaseMessage+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 389, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/ChatSDK\/BaseMessage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 722, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", - "kind": "BooleanLiteral", - "offset": 590, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", - "kind": "IntegerLiteral", - "offset": 1492, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", - "kind": "IntegerLiteral", - "offset": 1502, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", - "kind": "IntegerLiteral", - "offset": 1510, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", - "kind": "IntegerLiteral", - "offset": 1521, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 1360, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "Array", - "offset": 1746, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 1954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 3546, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 4280, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5536, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5589, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5616, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7907, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8586, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8692, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 10402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 10681, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 10714, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 10717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 12524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 12850, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 15159, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 15214, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 15834, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "IntegerLiteral", - "offset": 459, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "BooleanLiteral", - "offset": 869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "IntegerLiteral", - "offset": 1174, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "IntegerLiteral", - "offset": 1188, - "length": 3, - "value": "-12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "IntegerLiteral", - "offset": 1198, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "IntegerLiteral", - "offset": 1209, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "BooleanLiteral", - "offset": 1766, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 1369, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 1684, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 2206, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 2906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4211, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4240, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 5709, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 7751, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 7806, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.OpenChannel.swift", - "kind": "BooleanLiteral", - "offset": 1349, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "Array", - "offset": 721, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "BooleanLiteral", - "offset": 767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "BooleanLiteral", - "offset": 947, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "BooleanLiteral", - "offset": 1633, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "BooleanLiteral", - "offset": 1685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "FloatLiteral", - "offset": 1847, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2348, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "FloatLiteral", - "offset": 2390, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2598, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2608, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2616, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2627, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 3758, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "Array", - "offset": 5696, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "StringLiteral", - "offset": 340, - "length": 23, - "value": "\"SendbirdUIKit.SBUSuggestedMentionList\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "StringLiteral", - "offset": 429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "BooleanLiteral", - "offset": 1102, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "IntegerLiteral", - "offset": 1230, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "IntegerLiteral", - "offset": 1320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "IntegerLiteral", - "offset": 1412, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "IntegerLiteral", - "offset": 1506, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 257, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "Array", - "offset": 370, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 466, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 925, - "length": 13, - "value": "\"loadInitial\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "BooleanLiteral", - "offset": 1081, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 1117, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 1522, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 1587, - "length": 41, - "value": "\"loadNext from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 1627, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 1667, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 1703, - "length": 46, - "value": "\"lastest updatedAt is 0. loadInitial instead.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 1970, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2317, - "length": 62, - "value": "\"loaded next messages : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2352, - "length": 1, - "value": "\", size : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2378, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 2585, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2756, - "length": 82, - "value": "\"update latestUpdatedAt to : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2806, - "length": 4, - "value": "\" from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2837, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3045, - "length": 32, - "value": "\"fetched to the newest. \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3076, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3485, - "length": 25, - "value": "\"add : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3509, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3878, - "length": 108, - "value": "\"applyChangeLog. updated : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3935, - "length": 1, - "value": "\", deleted : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3977, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 4846, - "length": 41, - "value": "\"flushing cache with : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 4886, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 5288, - "length": 44, - "value": "\"flush merged message : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "BooleanLiteral", - "offset": 597, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "BooleanLiteral", - "offset": 1049, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "BooleanLiteral", - "offset": 1064, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1114, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1125, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1291, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1300, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1311, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1321, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1375, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 1721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 1928, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 2403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 2573, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 2705, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 4961, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 5183, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 6214, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 244, - "length": 5541, - "value": "\"{\n \"version\": \"1\",\n \"body\": {\n \"items\": [\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"items\": [\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"items\": [\n {\n \"type\": \"image\",\n \"imageUrl\": \"https:\/\/dxstmhyqfqr1o.cloudfront.net\/notifications\/preset-notification-channel-cover.png\",\n \"imageStyle\": {\n \"contentMode\": \"aspectFill\"\n },\n \"viewStyle\": {},\n \"metaData\": {\n \"pixelWidth\": \"168\",\n \"pixelHeight\": \"168\"\n }\n },\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"viewStyle\": {\n \"radius\": \"8\",\n \"padding\": {\n \"top\": \"12\",\n \"bottom\": \"12\",\n \"left\": \"12\",\n \"right\": \"12\"\n }\n },\n \"items\": [\n {\n \"type\": \"text\",\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n },\n \"viewStyle\": {},\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"text\": \"Hello tez\",\n \"textStyle\": {\n \"color\": \"#ffbdb8bd\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"1\"\n },\n {\n \"type\": \"text\",\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n },\n \"viewStyle\": {},\n \"width\": {\n \"type\": \"fixed\",\n \"value\": \"1\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"text\": \"Your order #123123 has been shipped.\",\n \"textStyle\": {\n \"color\": \"#ffbdb8bd\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"1\"\n },\n {\n \"type\": \"textButton\",\n \"viewStyle\": {\n \"backgroundColor\": \"#E0E0E0\",\n \"padding\": {\n \"top\": \"10\",\n \"bottom\": \"10\",\n \"left\": \"20\",\n \"right\": \"20\"\n }\n },\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"text\": \"Check status\",\n \"textStyle\": {\n \"color\": \"#742DDD\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"5\",\n \"action\": {\n \"type\": \"web\",\n \"data\": \"https:\/\/naver.com\"\n }\n }\n ],\n \"height\": {\n \"type\": \"fixed\",\n \"value\": \"300\"\n },\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n }\n }\n ],\n \"viewStyle\": {}\n }\n ],\n \"viewStyle\": {}\n }\n ]\n }\n }\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 5934, - "length": 1803, - "value": "\"{\"version\": 1,\"body\": {\"items\": [{\"type\": \"box\",\"layout\": \"column\",\"items\": [{\"type\": \"image\",\"metaData\": {\"pixelWidth\": 4000,\"pixelHeight\": 3000},\"width\": {\"type\": \"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 6117, - "length": 3, - "value": "\"\",\"value\": \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 6137, - "length": 1, - "value": "\"},\"height\": {\"type\": \"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 3, - "value": "\"\",\"value\": \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 6190, - "length": 1, - "value": "\"},\"imageStyle\": {\"contentMode\": \"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 6237, - "length": 4, - "value": "\"\"},\"imageUrl\": \"https:\/\/images.unsplash.com\/photo-1579393329936-4bc9bc673651?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format\"},{\"type\": \"box\",\"viewStyle\": {\"padding\": {\"top\": 12,\"right\": 12,\"bottom\": 12,\"left\": 12}},\"layout\": \"column\",\"items\": [{\"type\": \"box\",\"layout\": \"row\",\"items\": [{\"type\": \"box\",\"layout\": \"column\",\"items\": [{\"type\": \"text\",\"text\": \"Notification channel creation guide\",\"maxTextLines\": 3,\"viewStyle\": {\"padding\": {\"top\": 0,\"bottom\": 6,\"left\": 0,\"right\": 0}},\"textStyle\": {\"size\": 16,\"weight\": \"bold\"}},{\"type\": \"text\",\"text\": \"Notification Center is basically a group channel to which a single user, the receiver of a notification, belongs. A notification channel, which is a single group channel dedicated to the Notification Center, must be created for each user.\",\"maxTextLines\": 10,\"textStyle\": {\"size\": 14}}]}]},{\"type\": \"box\",\"layout\": \"column\",\"items\": [{\"type\": \"box\",\"viewStyle\": {\"margin\": {\"top\": 16,\"bottom\": 0,\"left\": 0,\"right\": 0}},\"align\": {\"horizontal\": \"left\",\"vertical\": \"center\"},\"layout\": \"row\",\"action\": {\"type\": \"web\",\"data\": \"www.sendbird.com\"},\"items\": [{\"type\": \"box\",\"viewStyle\": {\"margin\": {\"top\": 0,\"bottom\": 0,\"left\": 12,\"right\": 0}},\"layout\": \"column\",\"items\": [{\"type\": \"text\",\"text\": \"Title\",\"maxTextLines\": 1,\"textStyle\": {\"size\": 16,\"weight\": \"bold\"}},{\"type\": \"text\",\"viewStyle\": {\"margin\": {\"top\": 4,\"bottom\": 0,\"left\": 0,\"right\": 0}},\"text\": \"Hi\",\"maxTextLines\": 1,\"textStyle\": {\"size\": 14}}]}]}]}]}]}]}}\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 8441, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 9740, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 9951, - "length": 19, - "value": "\"TEMPLATE_DOWNLOAD\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 12150, - "length": 3, - "value": "\"SendbirdUIKit.Box\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 14219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 14238, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 13570, - "length": 4, - "value": "\"SendbirdUIKit.Text\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 15328, - "length": 5, - "value": "\"SendbirdUIKit.Image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 17396, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 17415, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 17622, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 17673, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 17687, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 17699, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 17712, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 16776, - "length": 10, - "value": "\"SendbirdUIKit.TextButton\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 11, - "value": "\"SendbirdUIKit.ImageButton\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 25359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29516, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29545, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29516, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29545, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29516, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29545, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 31325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 31471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 31661, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 32262, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 32419, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 32619, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33368, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33432, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33695, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33715, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33934, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34006, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34307, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34316, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34948, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34960, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34970, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34981, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36262, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36273, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36282, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36292, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36380, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36444, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "Dictionary", - "offset": 4336, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5599, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6406, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6412, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6480, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7443, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7456, - "length": 2, - "value": "-8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7465, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7508, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 14134, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 14406, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "StringLiteral", - "offset": 22203, - "length": 21, - "value": "\"Channel must exist!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 22391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23791, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24359, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24602, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 25297, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 25543, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 26301, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 27026, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 27183, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "StringLiteral", - "offset": 28763, - "length": 28, - "value": "\"The index is out of range.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "StringLiteral", - "offset": 29236, - "length": 29, - "value": "\"There are no message cells!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 31575, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 31645, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 31846, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32009, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32181, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32297, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32412, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32424, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 32512, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32649, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32872, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32884, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 32968, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 33409, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 33421, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 33456, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "StringLiteral", - "offset": 33857, - "length": 46, - "value": "\"New messages inserted : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "StringLiteral", - "offset": 33902, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 34016, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 34352, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 34730, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 34861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 34994, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35158, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35355, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35545, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35672, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37101, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37238, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37285, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37294, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 37867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 37984, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 38144, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 38206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 38458, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 39443, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 39544, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 40528, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 40669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 40716, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 40725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 40776, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 41028, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 41298, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 41415, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 41575, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 41637, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 41889, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 42868, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 42969, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 43443, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 43492, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 44266, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 44315, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 45035, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 45084, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 45948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 418, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 732, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 1381, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 1567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 1614, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 1758, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 2357, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 2391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 2545, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 2857, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 3278, - "length": 3, - "value": "6.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 3362, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4146, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4176, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4202, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4229, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4618, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4914, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4922, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4993, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 5069, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 5174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 5275, - "length": 4, - "value": "-0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 5305, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 5359, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 5709, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 6056, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 6217, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 8070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 8122, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "StringLiteral", - "offset": 8390, - "length": 30, - "value": "\" \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "StringLiteral", - "offset": 8419, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "StringLiteral", - "offset": 8423, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 8504, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "StringLiteral", - "offset": 8563, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 8979, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9310, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9355, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9395, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9436, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9553, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9743, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "StringLiteral", - "offset": 9891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 10310, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 10391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 10525, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 10713, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUnknownMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 519, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUnknownMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 681, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUnknownMessageCell.swift", - "kind": "StringLiteral", - "offset": 972, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUnknownMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1291, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationEmptyView.swift", - "kind": "FloatLiteral", - "offset": 417, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationEmptyView.swift", - "kind": "FloatLiteral", - "offset": 572, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/InviteUser\/SBUInviteUserModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 3146, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/InviteUser\/SBUInviteUserModule.Header.swift", - "kind": "StringLiteral", - "offset": 4280, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/InviteUser\/SBUInviteUserModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 5259, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 558, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 879, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1103, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1497, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1596, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1631, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1792, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2249, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2439, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2481, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3565, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3589, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3705, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3719, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3728, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3739, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3838, - "length": 3, - "value": "751" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4916, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 5993, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 6286, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 6738, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 6860, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 7706, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 8080, - "length": 34, - "value": "\"Failed state image configuration\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 8604, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 8663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 8700, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "FloatLiteral", - "offset": 8750, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 9769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 9816, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 9867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 10382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 10429, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 10480, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1715, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "Array", - "offset": 2111, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2721, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4388, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4522, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4694, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4885, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5081, - "length": 67, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5127, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5147, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5304, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5349, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5369, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5630, - "length": 67, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5676, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5696, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5833, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5853, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6024, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6254, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6326, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6698, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7236, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 8409, - "length": 26, - "value": "\"[Request] Next user List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 8529, - "length": 50, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 8544, - "length": 10, - "value": "\" customized users have been added.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8658, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8716, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8988, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9046, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9150, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10513, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10554, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10612, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 10643, - "length": 31, - "value": "\"All members have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10923, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10985, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 11248, - "length": 37, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 11276, - "length": 7, - "value": "\" members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11422, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12087, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12128, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12186, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 12217, - "length": 33, - "value": "\"All operators have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12503, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12565, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 12832, - "length": 41, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 12862, - "length": 9, - "value": "\" operators\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13012, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13746, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13787, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 13876, - "length": 37, - "value": "\"All muted members have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14167, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14229, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 14492, - "length": 37, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 14520, - "length": 7, - "value": "\" members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14666, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15424, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15465, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15523, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 15554, - "length": 42, - "value": "\"All muted participants have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15892, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15954, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 16217, - "length": 37, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 16245, - "length": 7, - "value": "\" members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17090, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17131, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 36, - "value": "\"All banned users have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17532, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17594, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 17853, - "length": 33, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 17879, - "length": 5, - "value": "\" users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18021, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18752, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18793, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18851, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 18882, - "length": 36, - "value": "\"All participants have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19214, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19276, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 19549, - "length": 47, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 19582, - "length": 12, - "value": "\" participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 20115, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 20206, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20243, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20455, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20737, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21018, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21137, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21225, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21362, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21489, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21590, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21684, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "Array", - "offset": 22069, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22408, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 22434, - "length": 36, - "value": "\"[Request] Register user: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 22469, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22873, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 22899, - "length": 42, - "value": "\"[Request] Unregister operator: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 22940, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 23349, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23539, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 23608, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23980, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24211, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24600, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 24702, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24937, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 25038, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25411, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25687, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 1628, - "length": 20, - "value": "\"SendbirdUIKit.SBUUserListViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 1237, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 1333, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 1522, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 1733, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 1942, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2152, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 2553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2613, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2631, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 2759, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3517, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3591, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4039, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4053, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4063, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4075, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4322, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4361, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4785, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 5020, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "FloatLiteral", - "offset": 5031, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 5102, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "FloatLiteral", - "offset": 5141, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6233, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "StringLiteral", - "offset": 6279, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 7353, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUToastManager.swift", - "kind": "StringLiteral", - "offset": 384, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUToastManager.swift", - "kind": "BooleanLiteral", - "offset": 1141, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUToastManager.swift", - "kind": "FloatLiteral", - "offset": 1214, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUToastManager.swift", - "kind": "BooleanLiteral", - "offset": 1265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 930, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1129, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1371, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2418, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2460, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "FloatLiteral", - "offset": 3504, - "length": 4, - "value": "12.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3605, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3616, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3628, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "BooleanLiteral", - "offset": 4236, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "BooleanLiteral", - "offset": 4455, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "BooleanLiteral", - "offset": 5020, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "BooleanLiteral", - "offset": 5078, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 5144, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "StringLiteral", - "offset": 5326, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 5848, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 6145, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 6157, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 6279, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Sequence+SBUIKit.swift", - "kind": "Dictionary", - "offset": 318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Sequence+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 368, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SBUViewModelDelegate.swift", - "kind": "BooleanLiteral", - "offset": 687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "StringLiteral", - "offset": 1080, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "BooleanLiteral", - "offset": 2145, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2749, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2762, - "length": 2, - "value": "-0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2771, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2898, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2977, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "StringLiteral", - "offset": 484, - "length": 25, - "value": "\"SendbirdUIKit.SBUMessageThreadTitleView\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 1417, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 2017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2333, - "length": 27, - "value": "\"Cannot use `init(coder:)`\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 2647, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 3238, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 3793, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4727, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5031, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5250, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5617, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 5667, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6726, - "length": 45, - "value": "\"Unread message count: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6770, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 7056, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8863, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 8959, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10774, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10800, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10975, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 12057, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 12090, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 12093, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12822, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12903, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13032, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13123, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13135, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13225, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13289, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13334, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13840, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 14940, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15703, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15774, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15832, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 17078, - "length": 63, - "value": "\"Fetched : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 17111, - "length": 1, - "value": "\", keepScroll : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 17140, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 17284, - "length": 30, - "value": "\"Fetched empty notifications.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17571, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "Array", - "offset": 18539, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 18780, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21811, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22104, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22208, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22622, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23155, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23310, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23447, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23518, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23530, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23679, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "Array", - "offset": 24496, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 24721, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 24939, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 25459, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 40, - "value": "\"SendbirdUIKit.SBUFeedNotificationChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "Array", - "offset": 8215, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8429, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 8485, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10054, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10159, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10215, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 10424, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10935, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11217, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11243, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11267, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11411, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11567, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11683, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 15768, - "length": 21, - "value": "\"Channel must exist!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 15956, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 16262, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18246, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18445, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19202, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19343, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19634, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 20062, - "length": 28, - "value": "\"The index is out of range.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 20563, - "length": 34, - "value": "\"There are no notification cells!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 22164, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 22981, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23173, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23310, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23449, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24544, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24556, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24591, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24713, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 25295, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 25376, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "Array", - "offset": 665, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "Array", - "offset": 854, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "Array", - "offset": 1042, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "Array", - "offset": 1237, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "Array", - "offset": 1303, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1642, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 622, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 1067, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 1752, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5146, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5194, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5331, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5455, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5480, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5500, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5632, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5657, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5677, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5700, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5788, - "length": 2, - "value": "80" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5905, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5987, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 6071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 6145, - "length": 2, - "value": "80" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 6215, - "length": 2, - "value": "80" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 6284, - "length": 2, - "value": "80" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "BooleanLiteral", - "offset": 6522, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "BooleanLiteral", - "offset": 6658, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "BooleanLiteral", - "offset": 6706, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "BooleanLiteral", - "offset": 6773, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 7389, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 9108, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 9469, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "StringLiteral", - "offset": 1160, - "length": 28, - "value": "\"SendbirdUIKit.SBUCreateChannelTypeSelector\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 439, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 452, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 3077, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 3146, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 7312, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 7381, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 12103, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 12172, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 15654, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 15723, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 17093, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 17162, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 18598, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 18667, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 22053, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 22122, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 26368, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 26437, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 31239, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 31308, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 34792, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 34861, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 36202, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 36271, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 37678, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 37747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 39431, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 39500, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 41117, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 41186, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 41824, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 41870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 42013, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 42082, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 42705, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "Array", - "offset": 1246, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "Array", - "offset": 1334, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "StringLiteral", - "offset": 1810, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 2699, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 2709, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 2717, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 2728, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 3584, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 3634, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 3872, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 3979, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 4222, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 4272, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 4402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "StringLiteral", - "offset": 4681, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "StringLiteral", - "offset": 4714, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "StringLiteral", - "offset": 4717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 5742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 6835, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 306, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 341, - "length": 9, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 306, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 341, - "length": 9, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 306, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 341, - "length": 9, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 577, - "length": 13, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 600, - "length": 7, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 6, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 633, - "length": 5, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1108, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1144, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1182, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1214, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1381, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 577, - "length": 13, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 600, - "length": 7, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 6, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 633, - "length": 5, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 577, - "length": 13, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 600, - "length": 7, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 6, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 633, - "length": 5, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1677, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1677, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1677, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2079, - "length": 12, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2101, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2122, - "length": 13, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2145, - "length": 17, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2241, - "length": 13, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "BooleanLiteral", - "offset": 2706, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2079, - "length": 12, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2101, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2122, - "length": 13, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2145, - "length": 17, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2079, - "length": 12, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2101, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2122, - "length": 13, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2145, - "length": 17, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2241, - "length": 13, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4024, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4060, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4075, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4178, - "length": 14, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4260, - "length": 12, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4341, - "length": 13, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4024, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4060, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4075, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4024, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4060, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4075, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4178, - "length": 14, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4260, - "length": 12, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4341, - "length": 13, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4530, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4545, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4530, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4545, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4530, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4545, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4770, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4770, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4770, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4901, - "length": 10, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4921, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4941, - "length": 15, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4966, - "length": 9, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4985, - "length": 14, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5009, - "length": 19, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5038, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5061, - "length": 15, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5086, - "length": 5, - "value": "9" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5172, - "length": 15, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "BooleanLiteral", - "offset": 5265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "BooleanLiteral", - "offset": 5294, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4901, - "length": 10, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4921, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4941, - "length": 15, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4966, - "length": 9, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4985, - "length": 14, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5009, - "length": 19, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5038, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5061, - "length": 15, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5086, - "length": 5, - "value": "9" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4901, - "length": 10, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4921, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4941, - "length": 15, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4966, - "length": 9, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4985, - "length": 14, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5009, - "length": 19, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5038, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5061, - "length": 15, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5086, - "length": 5, - "value": "9" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5172, - "length": 15, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5452, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 8, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5504, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5452, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 8, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5504, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5646, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5646, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5783, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5798, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5783, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5798, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5959, - "length": 3, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5972, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5988, - "length": 6, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5959, - "length": 3, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5972, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5988, - "length": 6, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6234, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6249, - "length": 5, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6264, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6279, - "length": 3, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6292, - "length": 3, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6234, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6249, - "length": 5, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6264, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6279, - "length": 3, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6292, - "length": 3, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6485, - "length": 9, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6532, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6576, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6655, - "length": 11, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6743, - "length": 15, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6485, - "length": 9, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6532, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6576, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7038, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7052, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7038, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7052, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7547, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7547, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7611, - "length": 10, - "value": "0b00000000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7641, - "length": 10, - "value": "0b00000001" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7671, - "length": 10, - "value": "0b00000010" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7701, - "length": 10, - "value": "0b00000100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7731, - "length": 10, - "value": "0b00000111" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7611, - "length": 10, - "value": "0b00000000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7641, - "length": 10, - "value": "0b00000001" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7671, - "length": 10, - "value": "0b00000010" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7701, - "length": 10, - "value": "0b00000100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7731, - "length": 10, - "value": "0b00000111" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7866, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7880, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7866, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7880, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7866, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7880, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "StringLiteral", - "offset": 8955, - "length": 49, - "value": "\"Data could not be decoded as `String` or `Int`.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 1452, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2129, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2369, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2618, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 4079, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 4341, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 4418, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7373, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7415, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7452, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7494, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7572, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7665, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7679, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7689, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7741, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7753, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7804, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7816, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8025, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8104, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8218, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8320, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8333, - "length": 2, - "value": "-8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8426, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8546, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8585, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8677, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8691, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8801, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8814, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8825, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8910, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 9062, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 9329, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 9885, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 10055, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 10109, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 10191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 10403, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 10532, - "length": 3, - "value": "240" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 10833, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 11002, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 11229, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 11341, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 11489, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 11494, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 11567, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 11745, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 11819, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 11888, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 12073, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 12078, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 12145, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 12222, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 12411, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 12416, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 12491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 13631, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 14266, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "StringLiteral", - "offset": 14389, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 14460, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "StringLiteral", - "offset": 14496, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 14941, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 14953, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 15807, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 16000, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 16642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 17102, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 17763, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 18267, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 18768, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 18898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 18992, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 657, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "FloatLiteral", - "offset": 1226, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 1774, - "length": 31, - "value": "\"[Request] Create open channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2022, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2146, - "length": 143, - "value": "\"[Failed] Create open channel request:\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2265, - "length": 421, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2407, - "length": 62, - "value": "\"[Succeed] Create open channel: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2468, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", - "kind": "IntegerLiteral", - "offset": 517, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", - "kind": "IntegerLiteral", - "offset": 528, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", - "kind": "IntegerLiteral", - "offset": 538, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 872, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "StringLiteral", - "offset": 1616, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "StringLiteral", - "offset": 1738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "StringLiteral", - "offset": 2098, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "BooleanLiteral", - "offset": 2294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "BooleanLiteral", - "offset": 2327, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 3001, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 3323, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "BooleanLiteral", - "offset": 3364, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 3959, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 4359, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 4869, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 5150, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 5249, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "BooleanLiteral", - "offset": 5284, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7246, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7259, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7267, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7353, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7365, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "BooleanLiteral", - "offset": 8699, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 672, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 816, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 873, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 881, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 2130, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2286, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 2341, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 2349, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2457, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2463, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 3659, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 3732, - "length": 15, - "value": "\"No image data\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 3925, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 3931, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 3941, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 3952, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 4424, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 5956, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 5960, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6165, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 6212, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 6218, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6548, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7079, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7319, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7325, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7333, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7492, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7529, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7847, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 8361, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 8688, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9169, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9580, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9870, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9878, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 9894, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9924, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9949, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9983, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 10203, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 10514, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 10789, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 10877, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "Array", - "offset": 10981, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 10993, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 11103, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 11107, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 11373, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 436, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 473, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 637, - "length": 2, - "value": "50" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1310, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1929, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2584, - "length": 2, - "value": "-6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3238, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3920, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4159, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4258, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4293, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5237, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5278, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5326, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5372, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7054, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7138, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7256, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7267, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7279, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7433, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7437, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7442, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 9736, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 10744, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 10899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 11627, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 12222, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 12526, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 12993, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 13133, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 13201, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 13359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 14064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 14081, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16318, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16791, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16831, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16985, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 17088, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 17133, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 19400, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 514, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "BooleanLiteral", - "offset": 548, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 693, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 1288, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 1417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 1460, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 1469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 1516, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "StringLiteral", - "offset": 331, - "length": 16, - "value": "\"SendbirdUIKit.SBUVoiceFileInfo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3302, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3358, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "FloatLiteral", - "offset": 3532, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3586, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "StringLiteral", - "offset": 3830, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3976, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3986, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4005, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7050, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1607, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2318, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2408, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2463, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3019, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3064, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3084, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3805, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3889, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3934, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3954, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4891, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5018, - "length": 47, - "value": "\"[Request] Load channel: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5064, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5364, - "length": 62, - "value": "\"[Failed] Load channel request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5425, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5497, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5909, - "length": 63, - "value": "\"[Failed] Enter channel request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5971, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6231, - "length": 69, - "value": "\"[Succeed] Load channel request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6299, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "Array", - "offset": 6566, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6714, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7128, - "length": 62, - "value": "\"[Failed] Load channel request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7482, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7573, - "length": 35, - "value": "\"[Succeed] Refresh channel request\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8255, - "length": 187, - "value": "\"loadInitialMessages,\nstartingPoint : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8356, - "length": 1, - "value": "\",\ninitialMessages : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8426, - "length": 9163, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9455, - "length": 30, - "value": "\"Prev message already loading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9545, - "length": 69, - "value": "\"[Request] Prev message list from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9613, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 9753, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 9804, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10481, - "length": 40, - "value": "\"Prev message list request is not valid\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10597, - "length": 52, - "value": "\"[Prev message response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10639, - "length": 8, - "value": "\" messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10948, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 11323, - "length": 30, - "value": "\"Next message already loading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 11413, - "length": 65, - "value": "\"[Request] Next message list from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 11477, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 11632, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 11670, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11773, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12080, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12267, - "length": 40, - "value": "\"Next message list request is not valid\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12802, - "length": 52, - "value": "\"[Next message Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12844, - "length": 8, - "value": "\" messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13075, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13178, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13575, - "length": 69, - "value": "\"[Request] Both message list from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13643, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13905, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14186, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14258, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14324, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14373, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14449, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14519, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14717, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14761, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14814, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14904, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 15025, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15123, - "length": 111, - "value": "\"Fetch from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15157, - "length": 5, - "value": "\" limit: prev = \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 1, - "value": "\", next = \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15233, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15625, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16590, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16749, - "length": 43, - "value": "\"Initial message list request is not valid\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16846, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 52, - "value": "\"[Both message response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16953, - "length": 8, - "value": "\" messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 17296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17599, - "length": 276, - "value": "\"[Initial message response] Prev count : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17718, - "length": 1, - "value": "\",\nprevLimit : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17796, - "length": 1, - "value": "\",\nhasPrev : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17859, - "length": 28, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17897, - "length": 268, - "value": "\"[Initial message response] Next count : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18016, - "length": 1, - "value": "\",\nnextLimit : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 1, - "value": "\",\nhasNext : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18149, - "length": 6413, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18196, - "length": 119, - "value": "\"[Initial message response] First : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18269, - "length": 1, - "value": "\", Last : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18314, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18840, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18924, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18969, - "length": 76, - "value": "\"[Failed] Resend failed user message request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19044, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19370, - "length": 62, - "value": "\"[Succeed] Resend failed file message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19431, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19674, - "length": 139, - "value": "\"hasNext : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19720, - "length": 1, - "value": "\". first : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19767, - "length": 1, - "value": "\", last : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19812, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 19907, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20289, - "length": 115, - "value": "\"newTimestamp : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20320, - "length": 1, - "value": "\", lastUpdatedTimestamp : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20373, - "length": 1, - "value": "\", currentTime : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20403, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20631, - "length": 21, - "value": "\"set to \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20897, - "length": 139, - "value": "\"reset timestamp to : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20947, - "length": 1, - "value": "\", startingPoint : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21006, - "length": 11, - "value": "\" currentTime : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21035, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21365, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22275, - "length": 42, - "value": "\"[Request] Message change logs with token\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22540, - "length": 59, - "value": "\"[Request] Message change logs with last updated timestamp\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23094, - "length": 76, - "value": "\"[Request] Changelog added message list from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23169, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 23327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23733, - "length": 51, - "value": "\"Changelog added message list request is not valid\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 55, - "value": "\"[Changelog added response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23944, - "length": 8, - "value": "\" messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24572, - "length": 123, - "value": "\"[Failed] Message change logs request:\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24675, - "length": 181, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24806, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24870, - "length": 209, - "value": "\"[Response]\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24926, - "length": 21, - "value": "\"%d updated messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 24975, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24978, - "length": 1, - "value": "\",\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25009, - "length": 21, - "value": "\"%d deleted messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 25060, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25063, - "length": 5063, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25398, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25996, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26708, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27009, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27556, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27826, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27926, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27961, - "length": 95, - "value": "\"Loaded added messages : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28008, - "length": 1, - "value": "\", hasNext : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28055, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 28675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28785, - "length": 67, - "value": "\"[Failed] Send user message request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 29182, - "length": 57, - "value": "\"[Succeed] Send user message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 29238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 29316, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 30021, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30136, - "length": 133, - "value": "\"[Failed] Send file message request:\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30245, - "length": 8763, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30616, - "length": 57, - "value": "\"[Succeed] Send file message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30672, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 30763, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 31180, - "length": 41, - "value": "\"[Failed] Message list request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 31220, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31256, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31348, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 31437, - "length": 29, - "value": "\"Message list request is nil\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31501, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31526, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31566, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31926, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 23, - "value": "\"SendbirdUIKit.SBUOpenChannelViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 32797, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 32831, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 32861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 33238, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 33557, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 33793, - "length": 32, - "value": "\"Did update message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 33824, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 33894, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 34124, - "length": 35, - "value": "\"Message was deleted: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 34158, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 34232, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 34523, - "length": 55, - "value": "\"Channel was changed, ChannelURL:\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 34577, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 35016, - "length": 54, - "value": "\"Channel was frozen, ChannelURL:\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 35069, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 35517, - "length": 56, - "value": "\"Channel was unfrozen, ChannelURL:\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 35572, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 36050, - "length": 16, - "value": "\"You are muted.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 36538, - "length": 18, - "value": "\"You are unmuted.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 37401, - "length": 17, - "value": "\"You are banned.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Unavailable.swift", - "kind": "Dictionary", - "offset": 1883, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Unavailable.swift", - "kind": "Dictionary", - "offset": 2017, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Unavailable.swift", - "kind": "Dictionary", - "offset": 2156, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Unavailable.swift", - "kind": "Dictionary", - "offset": 2316, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Unavailable.swift", - "kind": "Dictionary", - "offset": 2466, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 292, - "length": 13, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 14, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 339, - "length": 10, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 359, - "length": 8, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 292, - "length": 13, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 14, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 339, - "length": 10, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 359, - "length": 8, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 525, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 544, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 559, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 575, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 662, - "length": 14, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 744, - "length": 12, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 825, - "length": 13, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 525, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 544, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 559, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 575, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "Array", - "offset": 4207, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "StringLiteral", - "offset": 4670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 6139, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 6195, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "FloatLiteral", - "offset": 6428, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6482, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6794, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6804, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6823, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10491, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "StringLiteral", - "offset": 10754, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "StringLiteral", - "offset": 12871, - "length": 32, - "value": "\"[Request] Retry load user list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 13313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/InviteUser\/SBUInviteUserModule.List.swift", - "kind": "StringLiteral", - "offset": 2418, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "IntegerLiteral", - "offset": 602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 629, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "IntegerLiteral", - "offset": 1503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "IntegerLiteral", - "offset": 1511, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "IntegerLiteral", - "offset": 1522, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "IntegerLiteral", - "offset": 1560, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 1775, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 1916, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 2124, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 2852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Moderations\/SBUModerationsViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 3183, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 285, - "length": 31, - "value": "\"LOCAL_CACHING_EMOJI_CONTAINER\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 851, - "length": 39, - "value": "\"[Failed] Emoji Categories: load emoji\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 911, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 1005, - "length": 53, - "value": "\"[Failed] Emoji Categories: enableReactions is false\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 1079, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 1197, - "length": 46, - "value": "\"[Failed] Emoji Categories: Category is empty\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 1506, - "length": 33, - "value": "\"[Failed] Emoji List: load emoji\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 1560, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 1654, - "length": 47, - "value": "\"[Failed] Emoji List: enableReactions is false\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 1722, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 1785, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 1862, - "length": 42, - "value": "\"[Failed] Emoji List: emoji list is empty\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 2207, - "length": 46, - "value": "\"[Failed] Emojis with category id: load emoji\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 2274, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 2368, - "length": 60, - "value": "\"[Failed] Emojis with category id: enableReactions is false\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 2449, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 2568, - "length": 54, - "value": "\"[Warning] Emojis with category id: Category is empty\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 2643, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 2775, - "length": 58, - "value": "\"[Warning] Emojis with category id: Can not find category\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 2854, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "BooleanLiteral", - "offset": 3081, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 3684, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 3814, - "length": 27, - "value": "\"[Request] Load all emojis\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 4341, - "length": 38, - "value": "\"[Succeed] Load all emojis from cache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 4499, - "length": 57, - "value": "\"[Failed] Load all emojis: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 4555, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 4819, - "length": 38, - "value": "\"[Succeed] Load all emojis from cache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 4977, - "length": 53, - "value": "\"[Failed] Load all emojis: EmojiContainer is not set\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 5172, - "length": 27, - "value": "\"[Succeed] Load all emojis\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 2279, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "Array", - "offset": 2356, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 2580, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 2636, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "FloatLiteral", - "offset": 2876, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 2930, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3356, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3364, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3437, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3518, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3528, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3536, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5140, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6113, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6410, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 608, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 1074, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 1824, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 2191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 2565, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 2627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 2644, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 1357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "Array", - "offset": 1759, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "Array", - "offset": 1892, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "Array", - "offset": 2122, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "Array", - "offset": 2297, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 2361, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 2404, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 2846, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 2962, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 3407, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "FloatLiteral", - "offset": 3632, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "FloatLiteral", - "offset": 3859, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4093, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4350, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 6837, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 7013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 7285, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 7380, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 9900, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10876, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 11800, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 11905, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12106, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 12344, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12784, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12952, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13388, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13598, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 14254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 14458, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 14842, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 14953, - "length": 2, - "value": "50" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15559, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15772, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15913, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16107, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16380, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16574, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16767, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16977, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16987, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17074, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 17253, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 17483, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17789, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17906, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 18897, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 19821, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19964, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20054, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20286, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20363, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20603, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21043, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21211, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21647, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21857, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21933, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22456, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22591, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22790, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23372, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23514, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23650, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23863, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 25929, - "length": 30, - "value": "\"listComponent is not set up.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 27372, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 27483, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 28509, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 28513, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 28566, - "length": 37, - "value": "\"The ratio must be in range of 0...1\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 28740, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 28745, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 29995, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 30245, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 30302, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 30655, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 31288, - "length": 62, - "value": "\"[Failed] Exit channel request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 31349, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 31570, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 31639, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 31705, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 32070, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 32492, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 34671, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 35789, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 28, - "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 28, - "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 28, - "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1622, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "Array", - "offset": 1934, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "Array", - "offset": 2009, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2218, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2264, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2767, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2772, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2909, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3442, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "Array", - "offset": 3541, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3581, - "length": 21, - "value": "\"[Request] User List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3645, - "length": 26, - "value": "\"[Request] Next user List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3785, - "length": 50, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3800, - "length": 10, - "value": "\" customized users have been added.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3937, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4095, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4276, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4334, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4492, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4897, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5000, - "length": 29, - "value": "\"All users have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5274, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5408, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5723, - "length": 33, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5749, - "length": 5, - "value": "\" users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5990, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 6334, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6425, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 6548, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6822, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7047, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7335, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7364, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8351, - "length": 119, - "value": "\"[Request] Create channel with users,\nUsers: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8454, - "length": 351, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8520, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8679, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8815, - "length": 138, - "value": "\"[Failed] Create channel request:\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8929, - "length": 877, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9083, - "length": 57, - "value": "\"[Succeed] Create channel: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9136, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9139, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9644, - "length": 24, - "value": "\"Selected user: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9667, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 258, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "BooleanLiteral", - "offset": 487, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "StringLiteral", - "offset": 600, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 707, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 729, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "StringLiteral", - "offset": 1066, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "StringLiteral", - "offset": 1220, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1614, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1624, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1632, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 2048, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 2148, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 2209, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UITextField+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 412, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1506, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1597, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2316, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2506, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2632, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3008, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1338, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1588, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "FloatLiteral", - "offset": 2111, - "length": 3, - "value": "4.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 3129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 3327, - "length": 2, - "value": "80" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 3364, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 3408, - "length": 2, - "value": "64" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 3420, - "length": 2, - "value": "68" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 4063, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 4907, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 5391, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 5426, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6656, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6664, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6675, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6791, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6903, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6922, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6998, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 7011, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 7022, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 7124, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 7137, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 7373, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 7450, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 7530, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 7605, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 7682, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 7830, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8214, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8325, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8405, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8515, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8589, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8778, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8912, - "length": 3, - "value": "-24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9045, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9179, - "length": 3, - "value": "-24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9312, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9446, - "length": 3, - "value": "-24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9582, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9719, - "length": 3, - "value": "-24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9850, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9982, - "length": 3, - "value": "-24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 10322, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 10467, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 10518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "FloatLiteral", - "offset": 10619, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 10659, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 10918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 11067, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 11128, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 11180, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 11716, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 12093, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 12144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 12187, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 12222, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "FloatLiteral", - "offset": 12322, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 12684, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 12736, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 12778, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 12813, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "FloatLiteral", - "offset": 12854, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 13054, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 13110, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/ViewParams\/SBUQuoteMessageInputViewParams.swift", - "kind": "StringLiteral", - "offset": 1246, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 390, - "length": 21, - "value": "\"[Failed] Save image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 1028, - "length": 51, - "value": "\"[Failed] Save image: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 1078, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 1345, - "length": 24, - "value": "\"[Succeed] Image saved.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 1834, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 3279, - "length": 20, - "value": "\"[Failed] Save file\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 3813, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 4112, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 4210, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 4317, - "length": 26, - "value": "\"[Succeed] File is saved.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 4707, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 4812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 4935, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "FloatLiteral", - "offset": 1310, - "length": 4, - "value": "0.65" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1883, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2090, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3524, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 3603, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4260, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4022, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "FloatLiteral", - "offset": 4252, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4306, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4710, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4720, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4728, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4739, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5409, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5836, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6264, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7960, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8388, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUnknownMessageCell.swift", - "kind": "StringLiteral", - "offset": 852, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUnknownMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1271, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 748, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1129, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1289, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2094, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2105, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2763, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2767, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2827, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 3046, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 3514, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 363, - "length": 25, - "value": "\"com.sendbird.cache.file\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 488, - "length": 10, - "value": "\"template\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 532, - "length": 14, - "value": "\"user-profile\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 577, - "length": 10, - "value": "\"reaction\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 613, - "length": 5, - "value": "\"web\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 29, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 757, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 922, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 1203, - "length": 49, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 1235, - "length": 1, - "value": "\".queue.diskcache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 1937, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 3334, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 3726, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 4545, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 4577, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 4959, - "length": 39, - "value": "\"Could not remove cache path: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 4997, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 5297, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 5338, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 5429, - "length": 20, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 5447, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 12, - "value": "\"voice_temp\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 6265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 6403, - "length": 59, - "value": "\"[Failed] Create directory : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 6461, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 7046, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 7078, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 7253, - "length": 51, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 7285, - "length": 1, - "value": "\".queue.memorycache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "IntegerLiteral", - "offset": 7517, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "IntegerLiteral", - "offset": 7522, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "IntegerLiteral", - "offset": 7529, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "IntegerLiteral", - "offset": 7637, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 8901, - "length": 7, - "value": "\"image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1559, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1614, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "Array", - "offset": 1740, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3604, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3762, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 4875, - "length": 32, - "value": "\"All channels have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4963, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4969, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5145, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5152, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5337, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 5435, - "length": 45, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 5468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 5470, - "length": 8, - "value": "\" channels\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5658, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 6179, - "length": 60, - "value": "\"[Request] Leave channel, ChannelURL: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 6238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6274, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6280, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6426, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6433, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6606, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 6759, - "length": 68, - "value": "\"[Succeed] Leave channel request, ChannelURL: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 6826, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7280, - "length": 154, - "value": "\"[Request]\nChannel push status: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7358, - "length": 4, - "value": "\"on\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7365, - "length": 5, - "value": "\"off\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7371, - "length": 1, - "value": "\",\nChannelURL: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7418, - "length": 1577, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7460, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7466, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7637, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7644, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7829, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7994, - "length": 66, - "value": "\"[Succeed] Channel push status, ChannelURL: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 8059, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1434, - "length": 28, - "value": "\"SendbirdUIKit.SBUGroupChannelListViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9005, - "length": 166, - "value": "\"source: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9055, - "length": 1, - "value": "\",\nfromEvent: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9100, - "length": 1, - "value": "\",\ndelete size : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9155, - "length": 411, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9329, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9576, - "length": 157, - "value": "\"source: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9626, - "length": 1, - "value": "\",\nfromEvent: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9671, - "length": 1, - "value": "\",\nchannel size : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9717, - "length": 404, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 10131, - "length": 157, - "value": "\"source: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 10181, - "length": 1, - "value": "\",\nfromEvent: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 10226, - "length": 1, - "value": "\",\nchannel size : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 10272, - "length": 788, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "Array", - "offset": 6782, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "Array", - "offset": 7012, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 8703, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 9036, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 9688, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 14312, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 14767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 14934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 15606, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 606, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 657, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 682, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", - "kind": "StringLiteral", - "offset": 200, - "length": 24, - "value": "\"SendbirdUIKit.SBUUserMessageCellParams\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 479, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 691, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 907, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 1185, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 1227, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 1447, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 1831, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 1888, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 2595, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 2750, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 3612, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 3954, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 4141, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 4289, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 4390, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 4495, - "length": 2, - "value": "-2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 4589, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 4829, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 4941, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 5061, - "length": 3, - "value": "-10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 5159, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 5493, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 5735, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 5848, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 5946, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 6111, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 6215, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 6330, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 6421, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 6516, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 6667, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "FloatLiteral", - "offset": 6940, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 7032, - "length": 3, - "value": "249" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 7311, - "length": 3, - "value": "751" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "StringLiteral", - "offset": 8167, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 8567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 9063, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 9106, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 9232, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 9282, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "StringLiteral", - "offset": 9739, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 10189, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 10723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "StringLiteral", - "offset": 11384, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", - "kind": "StringLiteral", - "offset": 712, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", - "kind": "IntegerLiteral", - "offset": 826, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", - "kind": "IntegerLiteral", - "offset": 961, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 1290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1014, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1376, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1416, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1634, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1670, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "IntegerLiteral", - "offset": 1801, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1824, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "IntegerLiteral", - "offset": 2006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "StringLiteral", - "offset": 2251, - "length": 23, - "value": "\"Failed to decode JSON\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "StringLiteral", - "offset": 2607, - "length": 33, - "value": "\"Failed to decode JSON: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "StringLiteral", - "offset": 2639, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Data+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 312, - "length": 28, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Data+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 335, - "length": 1, - "value": "\".mov\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.Header.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4750, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4755, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1049, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 1138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "StringLiteral", - "offset": 1237, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1288, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1317, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "FloatLiteral", - "offset": 1359, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1684, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1775, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 1806, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1877, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1944, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 2070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2341, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2380, - "length": 3, - "value": "136" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2532, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2552, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2575, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2705, - "length": 3, - "value": "-12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2731, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2843, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2856, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2894, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2906, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 3331, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 3334, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 3747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 3799, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 4238, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 4277, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 4286, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 4361, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 5340, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 5452, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 5701, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "FloatLiteral", - "offset": 5854, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 6008, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "FloatLiteral", - "offset": 6161, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 6476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 6990, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/MessageSearch\/SBUMessageSearchViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 2815, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 1259, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 1936, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 2331, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 2577, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2706, - "length": 27, - "value": "\"Cannot use `init(coder:)`\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4001, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 7949, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8807, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10335, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 11337, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15522, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 16278, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17500, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 18316, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 18598, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 19005, - "length": 6, - "value": "\"file\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19239, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19407, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19903, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19984, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20113, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20125, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20204, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20216, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20668, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 21150, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 21183, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 21186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22138, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22209, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22267, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22875, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23009, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23619, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 24280, - "length": 58, - "value": "\"Fetched : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 24308, - "length": 1, - "value": "\", keepScroll : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 24337, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 24484, - "length": 25, - "value": "\"Fetched empty messages.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 24717, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 27281, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 27587, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 28131, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 28867, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 29347, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 29826, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 30968, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 31023, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 31141, - "length": 24, - "value": "\"This channel is frozen\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 31355, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 32482, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 33533, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 34369, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 34861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 34975, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 35098, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 35169, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 35181, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 35399, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 35411, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 35675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 35749, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 36495, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 36721, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 36927, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 39910, - "length": 18, - "value": "[\"public.content\"]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 40129, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 40436, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 41229, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 41675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 41845, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 42418, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 42678, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 43638, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 45805, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 46429, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 46755, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 47028, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 47733, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 48645, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 49150, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 52018, - "length": 50, - "value": "\"[Request] Delete message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 52067, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 52473, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 52538, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 57171, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 57437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 6345, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 6527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 7319, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7348, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7565, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7575, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7586, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7597, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7632, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7666, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7841, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8187, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 8472, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8502, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8716, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9018, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9786, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 10478, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 10575, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 10668, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 10756, - "length": 2, - "value": "87" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 10866, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11370, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11622, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11844, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11882, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 12657, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 13083, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 13460, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 13811, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 14265, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 16072, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 16105, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 16135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 16306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 16404, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 17184, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 17265, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 18750, - "length": 60, - "value": "\"Message input view changed mode to \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 19801, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 19839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 20228, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 20265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 20407, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 20454, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 20491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 23933, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 23962, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 23986, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 24013, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 24181, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 24497, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 24785, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 24863, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25218, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25301, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25515, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25527, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25877, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25889, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25970, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25982, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26140, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26148, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26159, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26307, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26316, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26486, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26561, - "length": 2, - "value": "75" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26634, - "length": 2, - "value": "75" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26735, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26748, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26756, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26767, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 30992, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31029, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 31137, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 31253, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31289, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31397, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31402, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31413, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 31627, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 31655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 31699, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 31741, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31779, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 32000, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 32035, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 33346, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 33402, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 33444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 33612, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 33656, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 34369, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 36169, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "Array", - "offset": 36698, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 37700, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 37816, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 38115, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 38696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 38955, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 39253, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 39347, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 39394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 39850, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 39970, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 39975, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 40200, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 40553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2347, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2445, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2541, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3003, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3194, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3405, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3614, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3812, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 4215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4293, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 4423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 4464, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 4512, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 4559, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4606, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 5624, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 5780, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6205, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6219, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6229, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6241, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6488, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6527, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6602, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 7233, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 7376, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 7427, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 7802, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "FloatLiteral", - "offset": 7813, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 7884, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "FloatLiteral", - "offset": 7923, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 9999, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "FloatLiteral", - "offset": 10052, - "length": 3, - "value": "6.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "FloatLiteral", - "offset": 10107, - "length": 3, - "value": "6.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 10175, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "StringLiteral", - "offset": 10221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 11013, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 11025, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 11385, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 11700, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 11853, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "StringLiteral", - "offset": 12208, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "StringLiteral", - "offset": 13022, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 13125, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 13168, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 13186, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 13190, - "length": 2, - "value": "99" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 13322, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 13341, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "StringLiteral", - "offset": 13387, - "length": 5, - "value": "\"99+\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 13448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 13641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 14713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 17547, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "Array", - "offset": 8258, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8472, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 8528, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10083, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10188, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10244, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10329, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10335, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10463, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10469, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 10604, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10658, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 11166, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11413, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11437, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11581, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11737, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11862, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 15922, - "length": 21, - "value": "\"Channel must exist!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 16110, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18705, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18881, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19084, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 20069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 20172, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 20600, - "length": 28, - "value": "\"The index is out of range.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 21010, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 21016, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 21178, - "length": 34, - "value": "\"There are no notification cells!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 22771, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23520, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23536, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23691, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24594, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24786, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24888, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24923, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 25062, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 25254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 25511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26157, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26169, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26204, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26908, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "IntegerLiteral", - "offset": 2663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "BooleanLiteral", - "offset": 2728, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "BooleanLiteral", - "offset": 2786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "StringLiteral", - "offset": 3174, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "StringLiteral", - "offset": 3207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "StringLiteral", - "offset": 3210, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "IntegerLiteral", - "offset": 3592, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "BooleanLiteral", - "offset": 3674, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "BooleanLiteral", - "offset": 3774, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPermissionManager.swift", - "kind": "Dictionary", - "offset": 2371, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPermissionManager.swift", - "kind": "BooleanLiteral", - "offset": 8341, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPermissionManager.swift", - "kind": "BooleanLiteral", - "offset": 8392, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 1222, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 2006, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 2782, - "length": 2, - "value": "55" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 2910, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 3100, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 3511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 3901, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "FloatLiteral", - "offset": 4621, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 4724, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 4746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 4766, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 4789, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 5136, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 7136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 7447, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 7759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "StringLiteral", - "offset": 8365, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 8424, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 8461, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "FloatLiteral", - "offset": 8511, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "StringLiteral", - "offset": 10400, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 10451, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 10480, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "FloatLiteral", - "offset": 10522, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "StringLiteral", - "offset": 1463, - "length": 19, - "value": "\"SendbirdUIKit.SBUMessageStateView\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "StringLiteral", - "offset": 1463, - "length": 19, - "value": "\"SendbirdUIKit.SBUMessageStateView\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUFileMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2518, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUFileMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3214, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUFileMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4045, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5949, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Array+SBUIKit.swift", - "kind": "Array", - "offset": 2057, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Array+SBUIKit.swift", - "kind": "Array", - "offset": 2404, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Array+SBUIKit.swift", - "kind": "Array", - "offset": 2745, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 562, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 851, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1984, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1997, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2005, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2016, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2111, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2149, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2161, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2796, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/CreateChannel\/SBUCreateChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 4143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 263, - "length": 11, - "value": "\"reactions\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 306, - "length": 15, - "value": "\"enable_og_tag\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 371, - "length": 33, - "value": "\"use_last_messege_on_super_group\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 439, - "length": 18, - "value": "\"use_last_seen_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 500, - "length": 26, - "value": "\"enable_message_threading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 580, - "length": 37, - "value": "\"allow_group_channel_create_from_sdk\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 671, - "length": 37, - "value": "\"allow_group_channel_invite_from_sdk\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 760, - "length": 35, - "value": "\"allow_operators_to_edit_operators\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 846, - "length": 34, - "value": "\"allow_operators_to_ban_operators\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 924, - "length": 27, - "value": "\"allow_super_group_channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1004, - "length": 36, - "value": "\"allow_group_channel_leave_from_sdk\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1094, - "length": 37, - "value": "\"allow_group_channel_update_from_sdk\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1197, - "length": 49, - "value": "\"allow_only_operator_sdk_to_update_group_channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1288, - "length": 25, - "value": "\"allow_broadcast_channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1346, - "length": 19, - "value": "\"message_search_v3\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1438, - "length": 28, - "value": "\"allow_user_update_from_sdk\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "BooleanLiteral", - "offset": 4169, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 3263, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.Header.swift", - "kind": "StringLiteral", - "offset": 4433, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 5450, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "FloatLiteral", - "offset": 414, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 598, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 947, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 1189, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 1236, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "FloatLiteral", - "offset": 1972, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2538, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2580, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2618, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2658, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2698, - "length": 2, - "value": "31" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2922, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2973, - "length": 2, - "value": "51" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3024, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3155, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3197, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "FloatLiteral", - "offset": 3238, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "FloatLiteral", - "offset": 3279, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 603, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", - "kind": "StringLiteral", - "offset": 203, - "length": 27, - "value": "\"SendbirdUIKit.SBUUnknownMessageCellParams\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 1094, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 1350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 1530, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 1587, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 1928, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 2227, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 2380, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 2790, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "FloatLiteral", - "offset": 5807, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "FloatLiteral", - "offset": 6240, - "length": 4, - "value": "12.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 7979, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 8087, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 8236, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 8544, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 8872, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 9020, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 9090, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 9325, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 9412, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 10059, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 10377, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 10491, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 10658, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 10873, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 10926, - "length": 6, - "value": "\"name\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 12, - "value": "\"created_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 11049, - "length": 12, - "value": "\"updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 11117, - "length": 13, - "value": "\"ui_template\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 11153, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 11202, - "length": 17, - "value": "\"color_variables\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 11242, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 11356, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 11548, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 11808, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 11869, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 12386, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 12569, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 12654, - "length": 14, - "value": "\"template_key\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 12737, - "length": 20, - "value": "\"template_variables\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 12780, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 12884, - "length": 36, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 12916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 12919, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 13497, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 13670, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 13818, - "length": 33, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 13847, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 13850, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 14109, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 14167, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 14277, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 14318, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 14459, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 14510, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 14515, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 14519, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 14582, - "length": 7, - "value": "\"light\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 14627, - "length": 6, - "value": "\"dark\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 14671, - "length": 9, - "value": "\"default\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 14991, - "length": 5, - "value": "\"\\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 15004, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 15283, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 15498, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 15808, - "length": 23, - "value": "\"\\{([^{}\\\"\\n]+)\\}\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 15854, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 16100, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 16141, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 16271, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 16486, - "length": 10, - "value": "\"{\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 16494, - "length": 1, - "value": "\"}\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 16560, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 17044, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 17115, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 17162, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 17167, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 17171, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 17222, - "length": 7, - "value": "\"light\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 17404, - "length": 6, - "value": "\"dark\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 17583, - "length": 9, - "value": "\"default\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 18033, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 18086, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20355, - "length": 12, - "value": "\"created_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20381, - "length": 12, - "value": "\"updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20355, - "length": 12, - "value": "\"created_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20381, - "length": 12, - "value": "\"updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20625, - "length": 12, - "value": "\"updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20691, - "length": 12, - "value": "\"theme_mode\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20625, - "length": 12, - "value": "\"updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20691, - "length": 12, - "value": "\"theme_mode\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 20858, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 21003, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 21069, - "length": 11, - "value": "\"templates\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Moderations\/SBUModerationsViewModel.Deprecated.swift", - "kind": "StringLiteral", - "offset": 683, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 466, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 949, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 961, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 1098, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 1112, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 1122, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 1134, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "BooleanLiteral", - "offset": 1754, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 2260, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 2464, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 2506, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 2590, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "FloatLiteral", - "offset": 3479, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 3548, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4626, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4651, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4671, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4694, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4837, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4848, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4887, - "length": 3, - "value": "134" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5025, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5035, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5075, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5185, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5255, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5337, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5470, - "length": 2, - "value": "-6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5552, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5672, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5684, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5786, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5799, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5837, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5849, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5951, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5964, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6003, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6015, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6359, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6535, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6538, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6780, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6783, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7266, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7269, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7399, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 7966, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8148, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8260, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8576, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "FloatLiteral", - "offset": 8584, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8744, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8752, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8757, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8978, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "FloatLiteral", - "offset": 9131, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9285, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "FloatLiteral", - "offset": 9438, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 10006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 11407, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11475, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 11522, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 12712, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 12752, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 12822, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 13042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 13266, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 13389, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 13491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 13528, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 14518, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 14728, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1185, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "Array", - "offset": 1294, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2493, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2538, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2558, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2735, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2780, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2800, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3376, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3959, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3999, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4233, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4240, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4425, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 4523, - "length": 45, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4556, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 4558, - "length": 8, - "value": "\" channels\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4637, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "Array", - "offset": 6774, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "Array", - "offset": 8061, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1061, - "length": 27, - "value": "\"SendbirdUIKit.SBUOpenChannelListViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8905, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9330, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9533, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9667, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9806, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9976, - "length": 21, - "value": "\"Channel was deleted\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10066, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelList\/SBUChannelListViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 4243, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelList\/SBUChannelListViewController.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 4414, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelList\/SBUChannelListViewController.Deprecated.swift", - "kind": "StringLiteral", - "offset": 4579, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelList\/SBUChannelListViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 5103, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelList\/SBUChannelListViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 9057, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "Array", - "offset": 2278, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 2460, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 2588, - "length": 4, - "value": "56.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 2625, - "length": 4, - "value": "48.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 2660, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 2696, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 3744, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 4485, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "BooleanLiteral", - "offset": 4716, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 5778, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 5881, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 6203, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 6228, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 6372, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 6409, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 6461, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 6753, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 7108, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 7600, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 7650, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 7709, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 7772, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "BooleanLiteral", - "offset": 7954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "BooleanLiteral", - "offset": 8032, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 8999, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 9822, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 9908, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 10366, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 10893, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 10914, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 10979, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "Array", - "offset": 11324, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 11668, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 11680, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 12011, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 13346, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 13358, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 11, - "value": "\"SBUConfig\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 2361, - "length": 56, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 2393, - "length": 1, - "value": "\".queue.diskcache.config\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "IntegerLiteral", - "offset": 2490, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 2533, - "length": 23, - "value": "\"sbu_config_updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 2581, - "length": 19, - "value": "\"sbu_config_config\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 3266, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 3630, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 4927, - "length": 47, - "value": "\"Failed to save config to disk cache: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 4973, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 5590, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 5982, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 6577, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 6609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 7089, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 7121, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 7588, - "length": 33, - "value": "\"Could not remove path: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 7620, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 7920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 7961, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 8052, - "length": 20, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 8070, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 8916, - "length": 69, - "value": "\"No last update time value file cached in the file path: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 8984, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "IntegerLiteral", - "offset": 9014, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "IntegerLiteral", - "offset": 9261, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 9422, - "length": 34, - "value": "\"No last update time value cached\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "IntegerLiteral", - "offset": 9485, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 10022, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 10031, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 10101, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 10183, - "length": 47, - "value": "\"Error writing to file: lastUpdatedAtKey value\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/NotificationSettings\/SBUGroupChannelPushSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1928, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/NotificationSettings\/SBUGroupChannelPushSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2122, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/NotificationSettings\/SBUGroupChannelPushSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 744, - "length": 36, - "value": "\"SendbirdUIKit.SBUGroupChannelPushSettingsViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 539, - "length": 1, - "value": "1" - }, + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 571, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", + "kind": "StringLiteral", + "offset": 421, "length": 2, - "value": "10" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", "kind": "IntegerLiteral", - "offset": 650, + "offset": 679, "length": 1, - "value": "1" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 726, + "offset": 14687, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 1029, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 1060, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "IntegerLiteral", - "offset": 1092, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "StringLiteral", - "offset": 648, - "length": 6, - "value": "\"spin\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "StringLiteral", - "offset": 709, - "length": 64, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "StringLiteral", - "offset": 741, - "length": 1, - "value": "\".animation.key.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "StringLiteral", - "offset": 772, + "offset": 14731, "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "StringLiteral", - "offset": 648, - "length": 6, - "value": "\"spin\"" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "IntegerLiteral", - "offset": 1781, - "length": 1, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", + "kind": "BooleanLiteral", + "offset": 14762, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "Array", - "offset": 1811, - "length": 20, - "value": "[0.5, 0.1, 0.2, 0.1]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", + "kind": "FloatLiteral", + "offset": 15162, + "length": 3, + "value": "0.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "IntegerLiteral", - "offset": 1957, + "offset": 15227, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "FloatLiteral", - "offset": 1963, - "length": 5, - "value": "-10.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "IntegerLiteral", - "offset": 2050, + "offset": 15238, "length": 1, - "value": "0" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "FloatLiteral", - "offset": 2186, + "offset": 15280, "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "IntegerLiteral", - "offset": 2260, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "IntegerLiteral", - "offset": 2265, - "length": 1, - "value": "0" + "value": "0.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "IntegerLiteral", - "offset": 2414, + "offset": 15322, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 4375, + "offset": 15363, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "Dictionary", - "offset": 5437, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 7148, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 7326, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7672, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7685, - "length": 2, - "value": "-8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7694, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7737, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7870, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7882, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8180, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "IntegerLiteral", - "offset": 8193, + "offset": 15586, "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 9515, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 12393, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 17873, - "length": 21, - "value": "\"Channel must exist!\"" + "offset": 15635, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 18061, + "offset": 16406, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 20359, + "offset": 18115, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 20606, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 20672, - "length": 1, - "value": "0" + "offset": 18155, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 21702, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 21971, - "length": 1, - "value": "0" + "offset": 51413, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23056, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", + "kind": "StringLiteral", + "offset": 341, + "length": 11, + "value": "\"templates\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23836, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", + "kind": "StringLiteral", + "offset": 440, + "length": 11, + "value": "\"templates\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23990, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", + "kind": "StringLiteral", + "offset": 3545, + "length": 58, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", "kind": "StringLiteral", - "offset": 25884, - "length": 28, - "value": "\"The index is out of range.\"" + "offset": 3577, + "length": 1, + "value": "\".queue.diskcache.template\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", "kind": "IntegerLiteral", - "offset": 26241, + "offset": 3676, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26247, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", "kind": "StringLiteral", - "offset": 26404, - "length": 29, - "value": "\"There are no message cells!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 28770, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 28823, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 29005, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 29728, - "length": 5, - "value": "false" + "offset": 3715, + "length": 30, + "value": "\"sbu_template_list_updated_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", "kind": "BooleanLiteral", - "offset": 29921, + "offset": 4664, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 29966, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 30111, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Common.swift", "kind": "BooleanLiteral", - "offset": 30238, + "offset": 517, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 31379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 31508, - "length": 1, - "value": "0" + "offset": 1301, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "IntegerLiteral", - "offset": 31551, + "offset": 488, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "IntegerLiteral", - "offset": 31560, + "offset": 557, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "IntegerLiteral", - "offset": 31607, + "offset": 648, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32363, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", + "kind": "FloatLiteral", + "offset": 700, + "length": 5, + "value": "380.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 32633, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", + "kind": "FloatLiteral", + "offset": 750, "length": 5, - "value": "false" + "value": "276.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 32750, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", + "kind": "FloatLiteral", + "offset": 810, + "length": 5, + "value": "294.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32910, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", + "kind": "FloatLiteral", + "offset": 869, + "length": 5, + "value": "274.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "BooleanLiteral", - "offset": 32972, + "offset": 1114, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 33224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 34209, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "IntegerLiteral", - "offset": 34310, + "offset": 2681, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "IntegerLiteral", - "offset": 34784, + "offset": 2822, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "BooleanLiteral", - "offset": 34833, + "offset": 2863, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 35363, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35412, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 35888, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35937, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", + "kind": "FloatLiteral", + "offset": 3039, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 36557, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", + "kind": "FloatLiteral", + "offset": 3208, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7836, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7849, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7857, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7868, - "length": 1, - "value": "0" + "value": "76.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", "kind": "StringLiteral", - "offset": 8703, - "length": 105, - "value": "\"\"" + "offset": 703, + "length": 32, + "value": "\"SendbirdUIKit.SBUGroupChannelSettingsViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUHighlightMessageInfo.swift", "kind": "BooleanLiteral", - "offset": 8796, + "offset": 732, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 8803, - "length": 1, - "value": "\".jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 8840, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 9143, - "length": 24, - "value": "\"Failed to get mimeType\"" + "offset": 385, + "length": 21, + "value": "\"notificationSetting\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 9270, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 11320, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "Dictionary", - "offset": 11552, - "length": 3, - "value": "[]" + "offset": 494, + "length": 21, + "value": "\"notificationSetting\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 12386, - "length": 118, + "offset": 4601, + "length": 55, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 12479, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 12486, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 12503, + "offset": 4633, "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "Dictionary", - "offset": 13277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 13683, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 13776, - "length": 5, - "value": "false" + "value": "\".queue.diskcache.theme\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 13783, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", + "kind": "IntegerLiteral", + "offset": 4729, "length": 1, - "value": "\".\"" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 13800, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 16475, - "length": 5, - "value": "false" + "offset": 4774, + "length": 45, + "value": "\"sbu_global_notification_settings_updated_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 16653, - "length": 105, - "value": "\"\"" + "offset": 4847, + "length": 45, + "value": "\"sbu_global_notification_settings_theme_mode\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "BooleanLiteral", - "offset": 16746, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 16753, - "length": 1, - "value": "\".jpg\"" + "offset": 5799, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUAdminMessageCellParams.swift", "kind": "StringLiteral", - "offset": 16970, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 17968, - "length": 5, - "value": "false" + "offset": 201, + "length": 25, + "value": "\"SendbirdUIKit.SBUAdminMessageCellParams\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", "kind": "StringLiteral", - "offset": 18636, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 20459, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 20518, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21124, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21484, - "length": 5, - "value": "false" + "offset": 614, + "length": 28, + "value": "\"SendbirdUIKit.SBURegisterOperatorViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", "kind": "BooleanLiteral", - "offset": 22062, + "offset": 3060, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUDashboardConfig.swift", "kind": "IntegerLiteral", - "offset": 24204, + "offset": 440, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", + "kind": "StringLiteral", + "offset": 567, + "length": 22, + "value": "\"SendbirdUIKit.SBUInviteUserViewModel\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", "kind": "IntegerLiteral", - "offset": 24433, + "offset": 494, "length": 2, "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 24598, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", "kind": "BooleanLiteral", - "offset": 24684, + "offset": 526, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24816, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", + "kind": "Array", + "offset": 572, "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25007, - "length": 3, - "value": "164" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25060, - "length": 3, - "value": "196" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25194, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", + "kind": "Array", + "offset": 614, "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 25909, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 26029, - "length": 1, - "value": "0" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", "kind": "IntegerLiteral", - "offset": 26134, + "offset": 1161, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", "kind": "IntegerLiteral", - "offset": 26147, + "offset": 1170, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", "kind": "IntegerLiteral", - "offset": 26404, + "offset": 1181, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 26473, - "length": 3, - "value": "196" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "Array", - "offset": 26892, - "length": 2, - "value": "[]" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", "kind": "IntegerLiteral", - "offset": 27405, + "offset": 1191, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", "kind": "BooleanLiteral", - "offset": 27866, + "offset": 1374, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 28044, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.Header.swift", "kind": "BooleanLiteral", - "offset": 28315, + "offset": 5727, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 28752, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 29504, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 30571, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 31540, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 33191, + "offset": 1011, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 243, - "length": 4, - "value": "5381" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 743, - "length": 46, - "value": "\"invalid regex: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "Array", - "offset": 810, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 892, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1076, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "Array", - "offset": 1215, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 1393, - "length": 54, - "value": "\"failed removing regex: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 1446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "Array", - "offset": 1625, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "Array", - "offset": 1744, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1773, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 2037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2220, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", "kind": "IntegerLiteral", - "offset": 2302, + "offset": 1119, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2319, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 2048, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 2545, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 4237, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 4664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 7729, + "offset": 1712, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", "kind": "IntegerLiteral", - "offset": 8533, + "offset": 1753, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 8583, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 8825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 8932, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBURegisterOperatorViewController.swift", - "kind": "StringLiteral", - "offset": 2001, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBURegisterOperatorViewController.swift", - "kind": "StringLiteral", - "offset": 2546, - "length": 2, - "value": "\"\"" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBURegisterOperatorViewController.swift", - "kind": "BooleanLiteral", - "offset": 3480, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", + "kind": "FloatLiteral", + "offset": 790, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBURegisterOperatorViewController.swift", - "kind": "StringLiteral", - "offset": 3530, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBURegisterOperatorViewController.swift", - "kind": "StringLiteral", - "offset": 3926, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" + "value": "64.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", "kind": "BooleanLiteral", - "offset": 458, + "offset": 4352, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 974, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1018, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1038, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1169, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1213, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1233, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1426, - "length": 29, - "value": "\"[Request] Next channel List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/ChannelSettings\/ChannelSettingItem\/SBUChannelSettingItem.swift", "kind": "BooleanLiteral", - "offset": 1623, + "offset": 731, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/ChannelSettings\/ChannelSettingItem\/SBUChannelSettingItem.swift", "kind": "BooleanLiteral", - "offset": 1736, + "offset": 781, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", "kind": "BooleanLiteral", - "offset": 1800, + "offset": 756, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2056, - "length": 29, - "value": "\"[Request] Next channel List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 295, - "length": 27, - "value": "\"SendbirdUIKit.SBUBaseChannelListViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2855, - "length": 26, - "value": "\"Did succeed reconnection\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 3001, - "length": 58, - "value": "\"[Failed] Update user info: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 3058, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", "kind": "BooleanLiteral", - "offset": 3146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 1659, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 1719, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 1780, - "length": 2, - "value": "18" + "offset": 1439, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", "kind": "IntegerLiteral", - "offset": 1835, + "offset": 1657, "length": 2, "value": "24" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 1895, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 1959, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2020, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2131, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2185, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2238, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2289, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2345, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2411, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2466, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2527, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2582, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2642, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "BooleanLiteral", - "offset": 3936, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "Array", - "offset": 10599, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.Header.swift", - "kind": "StringLiteral", - "offset": 1681, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "BooleanLiteral", - "offset": 1893, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", "kind": "BooleanLiteral", - "offset": 1926, + "offset": 1492, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "IntegerLiteral", - "offset": 2330, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "IntegerLiteral", - "offset": 3263, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "IntegerLiteral", - "offset": 4898, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "IntegerLiteral", - "offset": 4915, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 5130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", "kind": "BooleanLiteral", - "offset": 5410, + "offset": 1774, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 5490, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 5501, - "length": 12, - "value": "\"deprecated\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 5844, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "BooleanLiteral", - "offset": 6115, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", + "kind": "FloatLiteral", + "offset": 1990, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 6195, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 6206, - "length": 12, - "value": "\"deprecated\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 6571, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 489, - "length": 6, - "value": "\"%lld\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 564, - "length": 2, - "value": "10" + "value": "34.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", "kind": "FloatLiteral", - "offset": 660, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 1189, + "offset": 2037, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2058, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2091, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2309, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2488, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2520, - "length": 1, - "value": "0" + "value": "24.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2700, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", + "kind": "StringLiteral", + "offset": 722, + "length": 24, + "value": "\"SendbirdUIKit.SBUChannelInfoHeaderView\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", "kind": "IntegerLiteral", - "offset": 2733, + "offset": 397, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2920, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "FloatLiteral", + "offset": 264, + "length": 5, + "value": "258.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2955, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "FloatLiteral", + "offset": 311, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6551, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "FloatLiteral", + "offset": 354, + "length": 4, + "value": "40.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 6651, + "offset": 1836, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 6683, - "length": 1, - "value": "0" + "offset": 2116, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 6717, + "offset": 2399, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "BooleanLiteral", - "offset": 7034, - "length": 5, - "value": "false" + "offset": 2843, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "BooleanLiteral", - "offset": 7150, + "offset": 3179, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "BooleanLiteral", - "offset": 7256, + "offset": 3235, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 7743, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "BooleanLiteral", + "offset": 3276, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 7961, - "length": 3, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "BooleanLiteral", + "offset": 3312, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 8006, - "length": 3, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "BooleanLiteral", + "offset": 3350, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 8252, + "offset": 3409, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 8284, - "length": 1, - "value": "0" + "offset": 3460, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 8474, - "length": 1, - "value": "0" + "offset": 3470, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 8507, - "length": 1, - "value": "0" + "offset": 3482, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 8704, - "length": 1, - "value": "0" + "offset": 3493, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 8739, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 260, + "length": 5, + "value": "219.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 8928, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 268, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 282, + "length": 5, + "value": "209.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 290, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 303, "length": 3, - "value": "\" \"" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 8963, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 315, "length": 3, - "value": "\" \"" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 9608, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 368, + "length": 5, + "value": "194.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 9649, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 376, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 11242, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 390, + "length": 5, + "value": "169.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 11773, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 398, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", - "kind": "BooleanLiteral", - "offset": 718, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 411, + "length": 5, + "value": "250.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", - "kind": "BooleanLiteral", - "offset": 928, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 419, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 433, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", - "kind": "IntegerLiteral", - "offset": 2803, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 486, + "length": 5, + "value": "116.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", - "kind": "IntegerLiteral", - "offset": 3213, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 494, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 460, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 508, "length": 4, - "value": "true" + "value": "45.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 754, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 515, "length": 5, - "value": "10001" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 2008, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 528, "length": 5, - "value": "false" + "value": "221.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 2263, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 536, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 550, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 603, "length": 4, - "value": "true" + "value": "98.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 2605, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 610, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", "kind": "FloatLiteral", - "offset": 3232, - "length": 3, - "value": "0.5" + "offset": 624, + "length": 4, + "value": "17.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 3293, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 631, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 3304, - "length": 1, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 644, + "length": 5, + "value": "200.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 652, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", "kind": "FloatLiteral", - "offset": 3342, + "offset": 666, "length": 3, - "value": "0.5" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 3380, - "length": 1, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 719, + "length": 4, + "value": "73.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 3417, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 726, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 5107, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 740, + "length": 4, + "value": "19.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 5157, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 747, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 5795, - "length": 2, - "value": "10" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 760, + "length": 5, + "value": "137.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 5805, - "length": 2, - "value": "12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 768, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 5817, - "length": 2, - "value": "10" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 782, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 5828, - "length": 2, - "value": "12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 867, + "length": 5, + "value": "168.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "StringLiteral", - "offset": 252, - "length": 17, - "value": "\"SendbirdUIKit.SBUNewMessageInfo\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 875, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/URL+SBUKit.swift", - "kind": "BooleanLiteral", - "offset": 326, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 889, + "length": 5, + "value": "226.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/URL+SBUKit.swift", - "kind": "Dictionary", - "offset": 470, - "length": 3, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 897, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/URL+SBUKit.swift", - "kind": "BooleanLiteral", - "offset": 636, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 910, "length": 5, - "value": "false" + "value": "171.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/URL+SBUKit.swift", - "kind": "StringLiteral", - "offset": 717, - "length": 7, - "value": "\"https\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 918, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3305, - "length": 1, - "value": "8" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 932, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4097, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 987, "length": 5, - "value": "false" + "value": "105.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4707, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 995, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4746, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1009, "length": 5, - "value": "false" + "value": "192.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4998, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1017, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5509, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1030, + "length": 5, + "value": "133.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5631, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1038, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5664, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1052, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1107, "length": 4, - "value": "true" + "value": "37.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "StringLiteral", - "offset": 6152, - "length": 42, - "value": "\"The message is not a type of UserMessage\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1114, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 6386, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1128, + "length": 5, + "value": "156.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIViewController+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 665, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1136, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelSettings\/SBUBaseChannelSettingsViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 3161, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1149, + "length": 5, + "value": "114.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "IntegerLiteral", - "offset": 433, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1157, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 474, - "length": 11, - "value": "\"📕Error\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1171, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "IntegerLiteral", - "offset": 735, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1226, + "length": 3, + "value": "2.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 776, - "length": 13, - "value": "\"📙Warning\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1232, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "IntegerLiteral", - "offset": 1033, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1246, + "length": 5, + "value": "125.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1074, - "length": 10, - "value": "\"📘Info\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1254, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1321, - "length": 6, - "value": "\"Main\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1267, + "length": 5, + "value": "105.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1352, - "length": 3, - "value": "\"-\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1275, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1413, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1289, "length": 3, - "value": "\"\/\"" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1426, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1344, + "length": 3, + "value": "6.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1454, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1350, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1468, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1364, + "length": 5, + "value": "104.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1543, - "length": 25, - "value": "\"yyyy-MM-dd HH:mm:ss.SSS\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1372, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1691, - "length": 51, - "value": "\"🎨SBULog \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1385, + "length": 4, + "value": "88.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1710, - "length": 1, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1392, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1720, - "length": 1, - "value": "\" [%@ %@:%@:%d] \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1406, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 35, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1494, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1827, - "length": 44, - "value": "\"🎨SBULog \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1506, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1846, - "length": 1, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1564, + "length": 5, + "value": "238.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1856, - "length": 1, - "value": "\" [%@ %@:%@:%d]\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1572, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.Header.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1586, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1404, - "length": 2, - "value": "-1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1644, + "length": 5, + "value": "224.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 2398, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1652, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 2637, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1666, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1724, "length": 5, - "value": "false" + "value": "189.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 2864, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1732, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 3718, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1746, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 4075, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1804, "length": 4, - "value": "true" + "value": "57.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 4154, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1811, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "IntegerLiteral", - "offset": 318, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1825, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1883, "length": 4, - "value": "1" + "value": "44.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "IntegerLiteral", - "offset": 364, - "length": 10, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1890, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "IntegerLiteral", - "offset": 318, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1904, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1962, "length": 4, - "value": "1" + "value": "22.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "IntegerLiteral", - "offset": 364, - "length": 10, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1969, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "StringLiteral", - "offset": 786, - "length": 6, - "value": "\"none\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1983, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "StringLiteral", - "offset": 824, - "length": 6, - "value": "\"edit\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2041, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "StringLiteral", - "offset": 868, - "length": 13, - "value": "\"quote reply\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2053, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 1820, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2135, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2147, "length": 4, - "value": "true" + "value": "0.55" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 2278, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2202, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 3845, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2214, "length": 4, - "value": "true" + "value": "0.32" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", "kind": "FloatLiteral", - "offset": 4179, + "offset": 2298, "length": 3, - "value": "0.7" + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 6037, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2310, "length": 4, - "value": "true" + "value": "0.88" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 7192, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2365, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 7781, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2377, + "length": 3, + "value": "0.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 8247, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2431, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2443, "length": 4, - "value": "true" + "value": "0.38" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 2462, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2498, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3192, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2510, "length": 4, - "value": "true" + "value": "0.12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4979, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2592, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 5028, - "length": 28, - "value": "\"The index is out of range.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2604, + "length": 4, + "value": "0.88" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5064, - "length": 2, - "value": "-1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2658, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5144, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2670, + "length": 3, + "value": "0.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6129, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2723, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6189, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2735, + "length": 4, + "value": "0.38" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6221, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2789, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 6588, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2801, "length": 4, - "value": "true" + "value": "0.12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6645, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2879, + "length": 5, + "value": "253.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 31, - "value": "\"enableUsingDefaultUserProfile\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2887, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 31, - "value": "\"enableUsingDefaultUserProfile\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2901, + "length": 5, + "value": "170.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 476, - "length": 16, - "value": "\"enableDocument\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2909, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 476, - "length": 16, - "value": "\"enableDocument\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2922, + "length": 5, + "value": "170.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 13, - "value": "\"enablePhoto\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2930, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 656, - "length": 13, - "value": "\"enableVideo\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2944, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 13, - "value": "\"enablePhoto\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2995, + "length": 5, + "value": "246.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 656, - "length": 13, - "value": "\"enableVideo\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3003, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 790, - "length": 13, - "value": "\"enablePhoto\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3017, + "length": 4, + "value": "97.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 834, - "length": 13, - "value": "\"enableVideo\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3024, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 790, - "length": 13, - "value": "\"enablePhoto\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3037, + "length": 4, + "value": "97.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 834, - "length": 13, - "value": "\"enableVideo\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3044, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1123, - "length": 13, - "value": "\"enableOgtag\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3058, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1177, - "length": 23, - "value": "\"enableTypingIndicator\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3109, + "length": 5, + "value": "222.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1235, - "length": 17, - "value": "\"enableReactions\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3117, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 15, - "value": "\"enableMention\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3131, + "length": 4, + "value": "54.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1338, - "length": 20, - "value": "\"enableVoiceMessage\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3138, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1123, - "length": 13, - "value": "\"enableOgtag\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3151, + "length": 4, + "value": "11.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1177, - "length": 23, - "value": "\"enableTypingIndicator\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3158, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1235, - "length": 17, - "value": "\"enableReactions\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3172, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 15, - "value": "\"enableMention\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3223, + "length": 5, + "value": "191.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1338, - "length": 20, - "value": "\"enableVoiceMessage\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3231, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1573, - "length": 23, - "value": "\"enableTypingIndicator\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3245, + "length": 3, + "value": "7.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1642, - "length": 28, - "value": "\"enableMessageReceiptStatus\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3251, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1573, - "length": 23, - "value": "\"enableTypingIndicator\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3264, + "length": 4, + "value": "17.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1642, - "length": 28, - "value": "\"enableMessageReceiptStatus\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3271, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1802, - "length": 21, - "value": "\"enableMessageSearch\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3285, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1802, - "length": 21, - "value": "\"enableMessageSearch\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3336, + "length": 5, + "value": "157.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1946, - "length": 13, - "value": "\"enableOgtag\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3344, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3358, + "length": 3, + "value": "9.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1946, - "length": 13, - "value": "\"enableOgtag\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3364, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 1962, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3377, + "length": 4, + "value": "30.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Dictionary", - "offset": 2342, - "length": 3, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3384, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Dictionary", - "offset": 2471, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3398, "length": 3, - "value": "[]" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 2748, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3484, + "length": 5, + "value": "173.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 2816, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3492, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 2860, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3506, + "length": 5, + "value": "201.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 2958, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3514, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Dictionary", - "offset": 3927, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3527, "length": 3, - "value": "[]" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Dictionary", - "offset": 3993, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3539, "length": 3, - "value": "[]" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3617, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3629, "length": 5, - "value": "false" + "value": "242.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 5064, - "length": 3, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3637, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 5982, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3650, "length": 5, - "value": "false" + "value": "182.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 6009, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3658, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 6037, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3672, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 6137, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 1102, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", "kind": "BooleanLiteral", - "offset": 6197, - "length": 5, - "value": "false" + "offset": 484, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", "kind": "BooleanLiteral", - "offset": 6229, + "offset": 1363, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 6588, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", + "kind": "BooleanLiteral", + "offset": 1512, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", "kind": "BooleanLiteral", - "offset": 8387, + "offset": 2129, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 8540, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", + "kind": "BooleanLiteral", + "offset": 2283, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "IntegerLiteral", - "offset": 8589, + "offset": 1272, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 9005, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "FloatLiteral", + "offset": 1625, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 9757, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "Array", + "offset": 1913, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "IntegerLiteral", - "offset": 9886, - "length": 1, - "value": "2" + "offset": 2729, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 10336, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2755, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 10815, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "FloatLiteral", + "offset": 3095, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 11416, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "BooleanLiteral", + "offset": 8951, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 12167, - "length": 4, - "value": "true" + "offset": 19949, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 12211, + "offset": 20700, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 12660, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "BooleanLiteral", + "offset": 21463, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 12752, - "length": 4, - "value": "true" + "offset": 27041, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 12887, - "length": 4, - "value": "true" + "offset": 36298, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 12987, - "length": 4, - "value": "true" + "offset": 44738, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "StringLiteral", + "offset": 54026, + "length": 23, + "value": "\"SendbirdUIKit.MessageTemplateBaseView\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "FloatLiteral", + "offset": 55971, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 13043, + "offset": 64319, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "StringLiteral", + "offset": 1095, + "length": 23, + "value": "\"SendbirdUIKit.MessageTemplateRenderer\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "IntegerLiteral", + "offset": 68872, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "IntegerLiteral", - "offset": 13100, + "offset": 69108, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "IntegerLiteral", - "offset": 13622, + "offset": 69581, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", "kind": "BooleanLiteral", - "offset": 13891, - "length": 4, - "value": "true" + "offset": 953, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 14035, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", + "kind": "BooleanLiteral", + "offset": 1096, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", "kind": "BooleanLiteral", - "offset": 14103, + "offset": 3879, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUMessageWebViewModel.swift", "kind": "BooleanLiteral", - "offset": 15266, + "offset": 573, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 15343, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUMessageWebViewModel.swift", + "kind": "BooleanLiteral", + "offset": 602, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUStackView.swift", + "kind": "FloatLiteral", + "offset": 512, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", "kind": "StringLiteral", - "offset": 15773, + "offset": 716, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", "kind": "IntegerLiteral", - "offset": 16015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 16394, - "length": 4, - "value": "true" + "offset": 2934, + "length": 2, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 16477, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUUtils.swift", + "kind": "StringLiteral", + "offset": 246, + "length": 15, + "value": "\"Group Channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 17219, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUUtils.swift", + "kind": "StringLiteral", + "offset": 300, + "length": 14, + "value": "\"Open Channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", "kind": "BooleanLiteral", - "offset": 17279, + "offset": 2513, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 17835, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 17885, - "length": 2, - "value": "\"\"" + "offset": 266, + "length": 8, + "value": "\"Cancel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 18021, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 302, + "length": 4, + "value": "\"OK\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 18999, - "length": 18, - "value": "\"[@][{](.*?)([}])\"" + "offset": 337, + "length": 7, + "value": "\"Retry\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 21762, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 374, + "length": 6, + "value": "\"Save\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 21862, - "length": 4, - "value": "\"@{\"" + "offset": 410, + "length": 6, + "value": "\"Copy\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 21891, - "length": 3, - "value": "\"}\"" + "offset": 448, + "length": 8, + "value": "\"Delete\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 22679, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 486, + "length": 6, + "value": "\"Edit\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 22708, - "length": 2, - "value": "\"\"" + "offset": 524, + "length": 8, + "value": "\"Remove\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 22784, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 8, + "value": "\"Camera\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 22819, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 615, + "length": 15, + "value": "\"Photo library\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 24733, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 664, + "length": 7, + "value": "\"Files\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 25650, - "length": 3, - "value": "\" \"" + "offset": 704, + "length": 12, + "value": "\"Loading...\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 26557, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 748, + "length": 8, + "value": "\"Invite\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 27671, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 791, + "length": 12, + "value": "\"Take photo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 28549, - "length": 42, - "value": "\"Mention must have a range to insert into\"" + "offset": 840, + "length": 14, + "value": "\"Choose photo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 28773, - "length": 52, - "value": "\"Mention range is out of bounds for the text length\"" + "offset": 891, + "length": 14, + "value": "\"Remove photo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 29132, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 942, + "length": 14, + "value": "\"View library\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 29466, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 988, + "length": 8, + "value": "\"Search\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 29794, - "length": 3, - "value": "\" \"" + "offset": 1030, + "length": 10, + "value": "\"Settings\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 29925, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1071, + "length": 7, + "value": "\"Reply\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 29971, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1142, + "length": 34, + "value": "\"Are you sure you want to delete?\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 30119, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1227, + "length": 41, + "value": "\"Please allow camera usage from settings\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 30130, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1325, + "length": 34, + "value": "\"Please Allow PhotoLibrary Access\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 30222, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1424, + "length": 60, + "value": "\"PhotoLibrary access required to get your photos and videos\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 30442, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1608, + "length": 45, + "value": "\"Please allow microphone usage from settings\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 30572, - "length": 4, - "value": "\"\n\"" + "offset": 1721, + "length": 11, + "value": "\"Yesterday\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 30653, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1828, + "length": 8, + "value": "\"%lld%@\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 30800, + "offset": 1858, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 30804, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1863, + "length": 7, + "value": "\"years\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 31341, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1873, + "length": 6, + "value": "\"year\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 31411, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1981, + "length": 8, + "value": "\"%lld%@\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 31489, + "offset": 2011, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 31664, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2016, + "length": 6, + "value": "\"days\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 31913, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2025, + "length": 5, + "value": "\"day\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 31929, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2134, + "length": 11, + "value": "\"%lldmonth\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 32012, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2258, + "length": 7, + "value": "\"%lldh\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 32067, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2377, + "length": 7, + "value": "\"%lldm\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 32139, - "length": 2, - "value": "\"\"" + "offset": 2435, + "length": 5, + "value": "\"ago\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 32180, - "length": 3, - "value": "\" \"" + "offset": 2473, + "length": 4, + "value": "\"on\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 32208, - "length": 4, - "value": "\"\n\"" + "offset": 2556, + "length": 10, + "value": "\"Channels\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 9, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2621, + "length": 18, + "value": "\"uploaded a file.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 9, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2709, + "length": 15, + "value": "\"Group Channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 9, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2773, + "length": 14, + "value": "\"(No members)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 802, - "length": 7, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2836, + "length": 11, + "value": "\"Last seen\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 819, - "length": 13, - "value": "2" + "offset": 3143, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 842, - "length": 10, - "value": "3" + "offset": 3182, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 862, - "length": 6, - "value": "4" + "offset": 3212, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 878, - "length": 4, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3226, + "length": 8, + "value": "\"Member\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 802, - "length": 7, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3269, + "length": 17, + "value": "\"%@ is typing...\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 819, - "length": 13, + "offset": 3311, + "length": 1, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 842, - "length": 10, - "value": "3" + "offset": 3351, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 862, - "length": 6, - "value": "4" + "offset": 3381, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 878, - "length": 4, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3395, + "length": 8, + "value": "\"Member\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 802, - "length": 7, + "offset": 3441, + "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 819, - "length": 13, - "value": "2" + "offset": 3471, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 842, - "length": 10, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3485, + "length": 8, + "value": "\"Member\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 862, - "length": 6, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3528, + "length": 25, + "value": "\"%@ and %@ are typing...\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 878, - "length": 4, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3613, + "length": 30, + "value": "\"Several people are typing...\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 3129, - "length": 76, - "value": "\"init(channelURL:startingPoint:messageListParams:) has not been implemented\"" + "offset": 3714, + "length": 13, + "value": "\"File saved.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 6467, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3782, + "length": 27, + "value": "\"Couldn’t download file.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 6714, - "length": 2, - "value": "\"\"" + "offset": 3860, + "length": 23, + "value": "\"Couldn’t open file.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 7773, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" + "offset": 3933, + "length": 17, + "value": "\"uploaded a file\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 7907, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "IntegerLiteral", + "offset": 4059, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 9328, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4081, + "length": 15, + "value": "\"1 new message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 9531, + "offset": 4110, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 9728, - "length": 1, - "value": "0" + "offset": 4114, + "length": 2, + "value": "99" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 9827, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4137, + "length": 23, + "value": "\"\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4146, + "length": 3, + "value": "\" new messages\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 10003, - "length": 1, - "value": "0" + "offset": 4174, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 10130, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4201, + "length": 18, + "value": "\"99+ new messages\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 10297, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4256, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 10577, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4327, + "length": 16, + "value": "\"Channel frozen\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 10733, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4427, + "length": 14, + "value": "\"Open Channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 10891, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4492, + "length": 14, + "value": "\"Participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 11728, + "offset": 4627, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 11797, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4649, + "length": 15, + "value": "\"1 participant\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 11863, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4701, + "length": 23, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 12206, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4710, + "length": 12, + "value": "\" participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 12287, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 44, + "value": "\"SENDBIRD_NOTIFICATION_CHANNEL_NOTIFICATION\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "Array", - "offset": 12397, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5267, + "length": 59, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 12409, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5315, "length": 1, - "value": "1" + "value": "\"_\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 12421, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5325, "length": 1, - "value": "0" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 12439, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5468, + "length": 15, + "value": "\"Notifications\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 12820, - "length": 2, - "value": "\"\"" + "offset": 5569, + "length": 21, + "value": "\"Channel information\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 13168, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5643, + "length": 13, + "value": "\"Change name\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 13412, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5710, + "length": 22, + "value": "\"Change channel image\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 13501, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5788, + "length": 12, + "value": "\"Enter name\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "Array", - "offset": 13882, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5864, + "length": 20, + "value": "\"Enter channel name\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 15971, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5939, + "length": 15, + "value": "\"Notifications\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 16784, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6012, "length": 4, - "value": "true" + "value": "\"On\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 18480, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6075, + "length": 5, + "value": "\"Off\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 18900, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6150, + "length": 15, + "value": "\"Mentions only\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 19171, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6225, + "length": 9, + "value": "\"Members\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6294, + "length": 14, + "value": "\"Participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 19372, + "offset": 6422, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "Array", - "offset": 22654, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6444, + "length": 9, + "value": "\"members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 25003, - "length": 2, + "offset": 6490, + "length": 18, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 25147, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 25202, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6499, + "length": 7, + "value": "\" members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 25628, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6571, + "length": 15, + "value": "\"Leave channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 25947, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6634, + "length": 16, + "value": "\"Delete channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 25983, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6712, + "length": 17, + "value": "\"Delete channel?\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 26097, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6789, + "length": 47, + "value": "\"Once deleted, this channel can't be restored.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 26187, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6884, + "length": 19, + "value": "\"Search in channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 26263, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6961, + "length": 13, + "value": "\"Moderations\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 27186, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7025, + "length": 11, + "value": "\"Operators\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 27289, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 15, + "value": "\"Muted members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 1232, - "length": 30, - "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" + "offset": 7166, + "length": 20, + "value": "\"Muted participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 1232, - "length": 30, - "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" + "offset": 7249, + "length": 14, + "value": "\"Banned users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 1232, - "length": 30, - "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" + "offset": 7319, + "length": 16, + "value": "\"Freeze channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 2196, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7385, + "length": 5, + "value": "\"URL\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 2218, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7488, + "length": 15, + "value": "\"Notifications\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "FloatLiteral", - "offset": 2293, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7567, + "length": 15, + "value": "\"Notifications\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 2322, - "length": 2, - "value": "50" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7636, + "length": 18, + "value": "\"All new messages\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 4085, - "length": 2, - "value": "\"\"" + "offset": 7718, + "length": 15, + "value": "\"Mentions only\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 4721, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7803, + "length": 100, + "value": "\"Turn on push notifications if you wish to be notified when messages are delivered to this channel.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 4776, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7988, + "length": 16, + "value": "\"Type a message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 5299, - "length": 2, - "value": "\"\"" + "offset": 8059, + "length": 37, + "value": "\"Chat is unavailable in this channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 5717, - "length": 2, - "value": "56" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8145, + "length": 15, + "value": "\"You are muted\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "FloatLiteral", - "offset": 6796, - "length": 3, - "value": "1.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8209, + "length": 18, + "value": "\"Reply to message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "FloatLiteral", - "offset": 6843, - "length": 3, - "value": "6.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8336, + "length": 35, + "value": "\"Reply to \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 6962, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8370, + "length": 1, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 7063, - "length": 2, - "value": "56" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8435, + "length": 7, + "value": "\"Photo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 7216, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8498, + "length": 5, + "value": "\"GIF\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 7306, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8561, + "length": 7, + "value": "\"Video\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 7398, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8632, + "length": 10, + "value": "\"(edited)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 7649, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8682, + "length": 16, + "value": "\"System message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 7662, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8745, + "length": 24, + "value": "\"(Unknown message type)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 8104, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8822, + "length": 26, + "value": "\"Can't read this message.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 8167, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8979, + "length": 56, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 8414, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8998, + "length": 7, + "value": "\" replied to \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 8881, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9034, + "length": 1, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 9664, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9078, "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "FloatLiteral", - "offset": 9711, - "length": 3, - "value": "0.2" + "value": "\"You\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 9795, + "offset": 9270, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 9837, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9292, + "length": 9, + "value": "\"1 reply\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 9884, + "offset": 9315, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 9897, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "IntegerLiteral", + "offset": 9319, + "length": 2, + "value": "99" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "FloatLiteral", - "offset": 10059, - "length": 3, - "value": "0.2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9342, + "length": 30, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 10143, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9363, + "length": 7, + "value": "\" replies\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 10185, - "length": 1, - "value": "0" + "offset": 9386, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 10252, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9426, + "length": 13, + "value": "\"99+ replies\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 11105, - "length": 37, - "value": "\"Did receive error: \"" + "offset": 9442, + "length": 30, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 11138, - "length": 2, - "value": "\"\"" + "offset": 9463, + "length": 7, + "value": "\" replies\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 11141, + "offset": 9509, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 809, - "length": 21, - "value": "\"SendbirdUIKit.SBUFileViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 12477, - "length": 5, - "value": "false" + "offset": 9616, + "length": 52, + "value": "\"Couldn't find the original message for this reply.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 12621, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9741, + "length": 21, + "value": "\"Message unavailable\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 12712, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9849, + "length": 18, + "value": "\"(Template error)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 12807, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9929, + "length": 31, + "value": "\"Can't read this notification.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 12900, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10025, + "length": 13, + "value": "\"No channels\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 14620, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10081, + "length": 13, + "value": "\"No messages\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 14760, - "length": 2, - "value": "12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10142, + "length": 18, + "value": "\"No notifications\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 14856, - "length": 3, - "value": "-12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10200, + "length": 10, + "value": "\"No users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 14949, - "length": 2, - "value": "12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10258, + "length": 18, + "value": "\"No muted members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 15026, - "length": 2, - "value": "32" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10329, + "length": 23, + "value": "\"No muted participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 15105, - "length": 2, - "value": "32" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10399, + "length": 17, + "value": "\"No banned users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 15186, - "length": 2, - "value": "32" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10461, + "length": 18, + "value": "\"No results found\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 521, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10516, + "length": 22, + "value": "\"Something went wrong\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 527, + "offset": 10679, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 537, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10701, + "length": 8, + "value": "\"Create\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 548, - "length": 2, - "value": "76" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10746, + "length": 17, + "value": "\"Create \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 882, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10762, "length": 1, - "value": "6" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "Array", - "offset": 1362, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10831, + "length": 13, + "value": "\"New Channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 1392, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10905, + "length": 16, + "value": "\"Select members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 2076, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10981, + "length": 21, + "value": "\"New channel profile\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 2207, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11092, + "length": 8, + "value": "\"Create\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 2732, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11156, + "length": 13, + "value": "\"New channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3050, - "length": 2, - "value": "56" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11237, + "length": 20, + "value": "\"Enter channel name\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3215, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11340, + "length": 14, + "value": "\"Invite users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3221, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11413, + "length": 14, + "value": "\"Select users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 3231, + "offset": 11537, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3242, - "length": 2, - "value": "76" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11559, + "length": 8, + "value": "\"Invite\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3465, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11604, + "length": 17, + "value": "\"Invite \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3475, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11620, + "length": 1, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 3487, + "offset": 11749, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3497, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 3937, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11771, + "length": 10, + "value": "\"Register\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 4008, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11818, + "length": 19, + "value": "\"Register \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4190, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11836, "length": 1, - "value": "0" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4200, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11916, + "length": 7, + "value": "\"(You)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4208, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11961, + "length": 5, + "value": "\"Ban\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4219, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12006, + "length": 7, + "value": "\"Unban\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4437, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12052, + "length": 6, + "value": "\"Mute\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4463, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12099, + "length": 8, + "value": "\"Unmute\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4487, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12161, + "length": 21, + "value": "\"Unregister operator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4514, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12234, + "length": 22, + "value": "\"Register as operator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4813, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12304, + "length": 9, + "value": "\"Members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 5065, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12363, + "length": 11, + "value": "\"Operators\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 6114, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12428, + "length": 15, + "value": "\"Muted members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 6263, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12502, + "length": 20, + "value": "\"Muted Participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 6382, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12584, + "length": 14, + "value": "\"Banned users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 6541, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12651, + "length": 14, + "value": "\"Participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 6696, - "length": 1, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12728, + "length": 11, + "value": "\"(No name)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 6718, - "length": 1, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12778, + "length": 10, + "value": "\"Operator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 7143, - "length": 1, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12872, + "length": 10, + "value": "\"Operator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 7169, - "length": 1, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12931, + "length": 8, + "value": "\"Member\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 7495, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12983, + "length": 9, + "value": "\"User ID\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 7857, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13037, + "length": 9, + "value": "\"Message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 8095, - "length": 1, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13092, + "length": 10, + "value": "\"Register\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 8121, - "length": 1, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13150, + "length": 12, + "value": "\"Unregister\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 8200, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13204, + "length": 6, + "value": "\"Mute\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 8333, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13254, + "length": 8, + "value": "\"Unmute\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 8568, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13303, "length": 5, - "value": "false" + "value": "\"Ban\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 8695, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13384, + "length": 7, + "value": "\"Group\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 8744, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13439, + "length": 13, + "value": "\"Super group\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 213, - "length": 26, - "value": "\"SendbirdUIKit.SBUMenuSheetViewController\"" + "offset": 13499, + "length": 11, + "value": "\"Broadcast\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 331, - "length": 8, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13607, + "length": 3, + "value": "\"@\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 349, - "length": 9, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13722, + "length": 95, + "value": "\"You can mention up to \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 368, - "length": 9, - "value": "3" + "offset": 13793, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 331, - "length": 8, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13796, + "length": 5, + "value": "\" times per message. \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 349, - "length": 9, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13993, + "length": 17, + "value": "\"Reply in thread\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 368, - "length": 9, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14113, + "length": 17, + "value": "\"Reply in thread\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 331, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14177, + "length": 17, + "value": "\"Reply to thread\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14283, "length": 8, - "value": "1" + "value": "\"Thread\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 349, - "length": 9, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14514, + "length": 8, + "value": "\"Cancel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 368, - "length": 9, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14772, + "length": 20, + "value": "\"Channel is frozen.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 12, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14996, + "length": 31, + "value": "\"You're muted by the operator.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 530, - "length": 19, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 15242, + "length": 15, + "value": "\"Voice message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 559, - "length": 19, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 15459, + "length": 15, + "value": "\"Voice message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 588, - "length": 6, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 15715, + "length": 15, + "value": "\"Voice message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 604, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 15846, "length": 15, - "value": "5" + "value": "\"Voice_message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 629, - "length": 19, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 276, + "length": 4, + "value": "18.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 12, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 371, + "length": 4, + "value": "18.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 530, - "length": 19, - "value": "2" + "offset": 583, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 559, - "length": 19, - "value": "3" + "offset": 618, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 588, - "length": 6, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 775, + "length": 4, + "value": "0.2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 604, - "length": 15, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 906, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 629, - "length": 19, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 1049, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 508, - "length": 12, - "value": "1" + "offset": 1268, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 530, - "length": 19, - "value": "2" + "offset": 1303, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 559, - "length": 19, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 1595, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 588, - "length": 6, - "value": "4" + "offset": 1815, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 604, - "length": 15, - "value": "5" + "offset": 1850, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 2141, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 629, - "length": 19, - "value": "6" + "offset": 2360, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 2548, - "length": 1, - "value": "0" + "offset": 2395, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 3222, - "length": 36, - "value": "\"[Failed] Request record permission\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 2683, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "Dictionary", - "offset": 3737, - "length": 3, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 2899, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 4112, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 2934, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 4507, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 3236, + "length": 4, + "value": "18.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 4843, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 3460, + "length": 2, + "value": "24" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 4884, - "length": 31, - "value": "\"[Failed] Recorder preparation\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 3495, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 5100, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 3657, "length": 4, - "value": "true" + "value": "0.38" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 5172, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 3795, "length": 4, - "value": "true" + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 5263, - "length": 17, - "value": "\"[Failed] Record\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 4017, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 5393, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 4052, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 5599, - "length": 36, - "value": "\"[Failed] Request record permission\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 4214, + "length": 4, + "value": "0.4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 5843, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 4352, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "FloatLiteral", - "offset": 5997, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 4574, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 6004, - "length": 4, - "value": "1000" + "offset": 4609, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 6660, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 4882, "length": 4, - "value": "true" + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 6728, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 5102, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 6985, - "length": 1, - "value": "0" + "offset": 5137, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 7873, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 5439, "length": 4, - "value": "true" + "value": "12.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 7922, - "length": 73, - "value": "\"[Failed] Audio session preparation error: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 5661, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 7994, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 5696, "length": 2, - "value": "\"\"" + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 8113, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 5974, + "length": 4, + "value": "12.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 8306, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 6199, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 8350, - "length": 5, - "value": "\"m4a\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 6234, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 8383, - "length": 30, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 6509, + "length": 4, + "value": "11.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 8395, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 6731, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 8412, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 6766, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 8558, - "length": 28, - "value": "\"[Failed] Create voice file\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 7044, + "length": 4, + "value": "11.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 8704, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 7269, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 9109, - "length": 74, - "value": "\"[Failed] Audio recorder preparation error: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 7304, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 9182, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 7629, + "length": 4, + "value": "16.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 7855, "length": 2, - "value": "\"\"" + "value": "22" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 9301, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 7890, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 9378, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 8054, "length": 4, - "value": "true" + "value": "0.2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 9404, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 8195, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 9449, - "length": 40, - "value": "\"[Succeeded] Audio recorder preparation\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 8422, + "length": 2, + "value": "24" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 9626, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 8457, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "FloatLiteral", - "offset": 9805, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 9935, + "offset": 8621, "length": 4, - "value": "true" + "value": "0.2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 10280, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 8762, "length": 4, - "value": "1000" + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 10775, - "length": 79, - "value": "\"Recorder will be canceled because it is less than the minimum recording time.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 8989, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 11192, - "length": 27, - "value": "\"[Failed] Finish recording\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 9024, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 11516, - "length": 59, - "value": "\"[Failed] Recorder encode error: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 9188, + "length": 4, + "value": "0.2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", "kind": "StringLiteral", - "offset": 11574, + "offset": 421, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", "kind": "StringLiteral", - "offset": 2089, - "length": 16, - "value": "\"SendbirdUIKit.SBUVoiceRecorder\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 739, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 778, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 811, - "length": 1, - "value": "0" + "offset": 471, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", "kind": "StringLiteral", - "offset": 200, - "length": 24, - "value": "\"SendbirdUIKit.SBUFileMessageCellParams\"" + "offset": 522, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUTheme.Deprecated.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", "kind": "FloatLiteral", - "offset": 13002, + "offset": 789, "length": 3, - "value": "0.5" + "value": "0.4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUTheme.Deprecated.swift", - "kind": "FloatLiteral", - "offset": 20612, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", + "kind": "BooleanLiteral", + "offset": 827, "length": 4, - "value": "0.64" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUTheme.Deprecated.swift", - "kind": "FloatLiteral", - "offset": 25798, - "length": 3, - "value": "0.5" + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", + "kind": "BooleanLiteral", + "offset": 1037, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", - "kind": "BooleanLiteral", - "offset": 1044, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 351, + "length": 3, + "value": "136" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 1172, + "offset": 399, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 1262, - "length": 1, - "value": "0" + "offset": 446, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 497, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 1448, + "offset": 546, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 20, - "value": "1" + "offset": 660, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 340, - "length": 17, + "offset": 774, + "length": 1, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 367, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", + "kind": "BooleanLiteral", + "offset": 1002, "length": 4, - "value": "3" + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 381, - "length": 5, - "value": "4" + "offset": 1268, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 396, - "length": 17, - "value": "5" + "offset": 1531, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 423, - "length": 13, - "value": "6" + "offset": 1699, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 20, - "value": "1" + "offset": 228, + "length": 3, + "value": "244" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 340, - "length": 17, - "value": "2" + "offset": 284, + "length": 3, + "value": "240" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 367, - "length": 4, - "value": "3" + "offset": 297, + "length": 3, + "value": "160" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 381, - "length": 5, - "value": "4" + "offset": 350, + "length": 3, + "value": "240" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 396, - "length": 17, - "value": "5" + "offset": 363, + "length": 3, + "value": "160" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 423, - "length": 13, - "value": "6" + "offset": 433, + "length": 3, + "value": "156" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 20, - "value": "1" + "offset": 446, + "length": 3, + "value": "104" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 340, - "length": 17, - "value": "2" + "offset": 515, + "length": 3, + "value": "136" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 367, - "length": 4, - "value": "3" + "offset": 528, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 381, - "length": 5, - "value": "4" + "offset": 600, + "length": 3, + "value": "311" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 396, - "length": 17, - "value": "5" + "offset": 613, + "length": 3, + "value": "207" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 423, - "length": 13, - "value": "6" + "offset": 677, + "length": 3, + "value": "311" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 1964, - "length": 8, - "value": "1" + "offset": 690, + "length": 3, + "value": "207" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 1986, - "length": 7, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 750, + "length": 5, + "value": "144.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 2007, - "length": 6, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 765, + "length": 4, + "value": "38.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 2027, - "length": 7, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 823, + "length": 4, + "value": "40.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 1964, - "length": 8, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 837, + "length": 4, + "value": "40.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 1986, - "length": 7, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 897, + "length": 4, + "value": "38.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 2007, - "length": 6, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 911, + "length": 4, + "value": "38.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 2027, - "length": 7, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 977, + "length": 5, + "value": "144.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 1964, - "length": 8, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 992, + "length": 4, + "value": "38.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 1986, - "length": 7, - "value": "2" + "offset": 1052, + "length": 3, + "value": "244" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 2007, - "length": 6, - "value": "3" + "offset": 1120, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 2027, - "length": 7, - "value": "4" + "offset": 1132, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 3109, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1171, + "length": 42, + "value": "\"https:\/\/static.sendbird.com\/sample\/cover\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 3142, - "length": 29, - "value": "\"[Failed] Player preparation\"" + "offset": 1254, + "length": 10, + "value": "\"sb_uikit\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 3640, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1304, + "length": 20, + "value": "\"com.sendbird.uikit\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 3750, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1378, + "length": 44, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 3787, - "length": 29, - "value": "\"[Failed] Player preparation\"" + "offset": 1398, + "length": 1, + "value": "\".delegate.channel.group\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 3934, - "length": 4, - "value": "1000" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1470, + "length": 43, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 3994, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1490, + "length": 1, + "value": "\".delegate.channel.open\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 4201, - "length": 15, - "value": "\"[Failed] Play\"" + "offset": 1561, + "length": 43, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 5074, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1581, "length": 1, - "value": "0" + "value": "\".delegate.channel.feed\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 5741, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1656, + "length": 41, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 5809, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1676, + "length": 1, + "value": "\".delegate.connection\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 5969, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1734, + "length": 15, + "value": "\"SBUAppVersion\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 6503, - "length": 37, - "value": "\"AVAudioSession Category Playback OK\"" + "offset": 1789, + "length": 11, + "value": "\"audio\/m4a\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 6607, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1849, + "length": 16, + "value": "\"sbu_type=voice\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 6658, - "length": 26, - "value": "\"AVAudioSession is Active\"" + "offset": 1907, + "length": 28, + "value": "\"KEY_VOICE_MESSAGE_DURATION\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 7082, - "length": 66, - "value": "\"[Failed] Audio player preparation: \"" + "offset": 1976, + "length": 27, + "value": "\"KEY_INTERNAL_MESSAGE_TYPE\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 7147, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", + "kind": "IntegerLiteral", + "offset": 580, "length": 2, - "value": "\"\"" + "value": "30" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", + "kind": "IntegerLiteral", + "offset": 771, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", "kind": "BooleanLiteral", - "offset": 7361, + "offset": 802, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", "kind": "BooleanLiteral", - "offset": 7419, - "length": 5, - "value": "false" + "offset": 838, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 7464, - "length": 38, - "value": "\"[Succeeded] Audio player preparation\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", + "kind": "BooleanLiteral", + "offset": 1003, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 7551, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", + "kind": "IntegerLiteral", + "offset": 1142, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", "kind": "FloatLiteral", - "offset": 7730, + "offset": 1794, "length": 3, - "value": "0.1" + "value": "0.4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", "kind": "BooleanLiteral", - "offset": 7858, + "offset": 1845, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 8191, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", "kind": "IntegerLiteral", - "offset": 8265, - "length": 1, - "value": "0" + "offset": 2764, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", "kind": "IntegerLiteral", - "offset": 8463, - "length": 1, - "value": "0" + "offset": 570, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 8786, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", + "kind": "Array", + "offset": 735, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 25, - "value": "\"[Failed] Finish playing\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", + "kind": "BooleanLiteral", + "offset": 484, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 9192, - "length": 57, - "value": "\"[Failed] Player decode error: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", + "kind": "IntegerLiteral", + "offset": 800, + "length": 5, + "value": "10001" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 9248, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", + "kind": "Array", + "offset": 1281, "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 1767, - "length": 14, - "value": "\"SendbirdUIKit.SBUVoicePlayer\"" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", "kind": "BooleanLiteral", - "offset": 2217, - "length": 4, - "value": "true" + "offset": 4082, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", - "kind": "BooleanLiteral", - "offset": 2279, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", + "kind": "StringLiteral", + "offset": 465, + "length": 20, + "value": "\"transform.rotation\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", "kind": "IntegerLiteral", - "offset": 2522, + "offset": 516, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", "kind": "IntegerLiteral", - "offset": 2535, + "offset": 545, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", - "kind": "IntegerLiteral", - "offset": 2543, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", + "kind": "FloatLiteral", + "offset": 587, + "length": 3, + "value": "1.1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", - "kind": "IntegerLiteral", - "offset": 2554, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", + "kind": "FloatLiteral", + "offset": 759, + "length": 5, + "value": "100.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", - "kind": "StringLiteral", - "offset": 3432, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", + "kind": "FloatLiteral", + "offset": 796, + "length": 4, + "value": "64.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", - "kind": "Array", - "offset": 5041, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", + "kind": "IntegerLiteral", + "offset": 434, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", "kind": "BooleanLiteral", - "offset": 5726, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", - "kind": "StringLiteral", - "offset": 6078, - "length": 2, - "value": "\"\"" + "offset": 2566, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", "kind": "BooleanLiteral", - "offset": 6911, + "offset": 4750, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", "kind": "BooleanLiteral", - "offset": 7653, + "offset": 6289, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 3124, - "length": 2, - "value": "30" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", + "kind": "Dictionary", + "offset": 432, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 3644, - "length": 2, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", + "kind": "Dictionary", + "offset": 546, + "length": 3, "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 3978, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", + "kind": "Dictionary", + "offset": 667, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4930, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", + "kind": "Dictionary", + "offset": 787, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", "kind": "BooleanLiteral", - "offset": 5438, - "length": 4, - "value": "true" + "offset": 902, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", "kind": "BooleanLiteral", - "offset": 5768, + "offset": 1235, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", "kind": "BooleanLiteral", - "offset": 5816, + "offset": 1602, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", "kind": "BooleanLiteral", - "offset": 5862, + "offset": 2273, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", "kind": "BooleanLiteral", - "offset": 5903, + "offset": 2831, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", "kind": "BooleanLiteral", - "offset": 6087, + "offset": 387, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6261, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6305, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "BooleanLiteral", + "offset": 332, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", "kind": "StringLiteral", - "offset": 6429, - "length": 67, - "value": "\"\"" + "offset": 221, + "length": 11, + "value": "\"SendbirdUIKit.SBUMenuItem\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6475, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "Array", + "offset": 1440, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6495, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1572, + "length": 5, + "value": "180.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6886, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1608, + "length": 4, + "value": "40.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7177, - "length": 65, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1643, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7221, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1677, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7241, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1712, + "length": 4, + "value": "18.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7345, - "length": 67, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1752, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7391, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1801, + "length": 4, + "value": "15.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7411, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1848, + "length": 4, + "value": "36.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", "kind": "BooleanLiteral", - "offset": 8137, + "offset": 1788, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", "kind": "StringLiteral", - "offset": 8305, - "length": 67, - "value": "\"\"" + "offset": 1296, + "length": 32, + "value": "\"SendbirdUIKit.SBUSelectablePhotoViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", "kind": "StringLiteral", - "offset": 8351, - "length": 1, - "value": "\".\"" + "offset": 537, + "length": 31, + "value": "\"SendbirdUIKit.SBUOpenChannelSettingsViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", "kind": "StringLiteral", - "offset": 8371, - "length": 1, - "value": "\"\"" + "offset": 317, + "length": 21, + "value": "\"com.sendbird.atomic\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8457, - "length": 65, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "BooleanLiteral", + "offset": 934, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "BooleanLiteral", + "offset": 1397, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8521, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2212, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9230, - "length": 20, - "value": "\"Invalid ChannelURL\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2235, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9340, - "length": 20, - "value": "\"Invalid ChannelURL\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2212, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10170, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2235, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10297, - "length": 47, - "value": "\"[Request] Load channel: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2212, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10343, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2235, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 2900, "length": 2, - "value": "\"\"" + "value": "30" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10843, - "length": 69, - "value": "\"[Succeed] Load channel request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", + "kind": "Array", + "offset": 3617, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10911, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", + "kind": "Array", + "offset": 3741, "length": 2, - "value": "\"\"" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 11936, - "length": 4, - "value": "true" + "offset": 4925, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 12237, - "length": 4, - "value": "true" + "offset": 4973, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13339, - "length": 62, - "value": "\"[Failed] Load channel request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5019, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13400, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5060, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13791, + "offset": 5245, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13890, - "length": 4, - "value": "true" + "offset": 5286, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13947, + "offset": 27482, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 402, + "length": 3, + "value": "164" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 458, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 514, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 625, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 681, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 733, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuCell.swift", "kind": "BooleanLiteral", - "offset": 13987, + "offset": 363, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", "kind": "IntegerLiteral", - "offset": 14120, + "offset": 812, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", "kind": "StringLiteral", - "offset": 15072, - "length": 122, - "value": "\"loadInitialNotifications,\nstartingPoint : \"" + "offset": 221, + "length": 26, + "value": "\"SendbirdUIKit.SBUEmojiListViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15178, - "length": 16754, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 2025, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 15691, + "offset": 2656, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 15840, + "offset": 3618, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16020, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 16093, + "offset": 8553, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 16665, + "offset": 8604, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16759, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", + "kind": "StringLiteral", + "offset": 305, + "length": 40, + "value": "\"SendbirdUIKit.SBUChatNotificationChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17013, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 1806, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 17104, + "offset": 5922, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17361, - "length": 35, - "value": "\"Prev notification already loading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17456, - "length": 34, - "value": "\"[Request] Prev notification list\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 6463, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 17819, + "offset": 6514, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17992, - "length": 67, - "value": "\"[Prev notification response] \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 13044, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 13, - "value": "\" notifications\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 13079, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 18288, + "offset": 15965, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18393, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", "kind": "StringLiteral", - "offset": 18582, - "length": 35, - "value": "\"Next notification already loading\"" + "offset": 275, + "length": 29, + "value": "\"SendbirdUIKit.SBUGroupChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18773, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", + "kind": "StringLiteral", + "offset": 275, + "length": 29, + "value": "\"SendbirdUIKit.SBUGroupChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", "kind": "BooleanLiteral", - "offset": 19011, + "offset": 1027, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", "kind": "BooleanLiteral", - "offset": 19144, + "offset": 3774, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", "kind": "StringLiteral", - "offset": 19293, - "length": 67, - "value": "\"[Next notification Response] \"" + "offset": 683, + "length": 6, + "value": "\"file\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", "kind": "StringLiteral", - "offset": 19345, - "length": 13, - "value": "\" notifications\"" + "offset": 372, + "length": 7, + "value": "\"image\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", "kind": "BooleanLiteral", - "offset": 19589, - "length": 4, - "value": "true" + "offset": 2189, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", "kind": "BooleanLiteral", - "offset": 19693, + "offset": 5741, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19921, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1288, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 21417, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1450, + "length": 5, + "value": "270.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 21465, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1492, + "length": 3, + "value": "3.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23263, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1535, + "length": 4, + "value": "20.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23323, - "length": 104, - "value": "\"First : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1575, + "length": 4, + "value": "32.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23375, - "length": 1, - "value": "\", Last : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1615, + "length": 4, + "value": "32.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23426, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1657, + "length": 4, + "value": "18.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23467, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1694, + "length": 4, + "value": "44.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24406, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1729, "length": 4, - "value": "true" + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 25482, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1769, + "length": 4, + "value": "40.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 25790, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1804, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 25945, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1838, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26094, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1873, "length": 4, - "value": "true" + "value": "18.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26154, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1913, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 26766, - "length": 26, - "value": "\"Did succeed reconnection\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1954, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 26912, - "length": 58, - "value": "\"[Failed] Update user info: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "BooleanLiteral", + "offset": 2819, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", "kind": "StringLiteral", - "offset": 26969, + "offset": 2877, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27522, - "length": 38, - "value": "\"Did receive user message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 2934, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "BooleanLiteral", + "offset": 3967, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", "kind": "StringLiteral", - "offset": 27559, + "offset": 4019, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27615, - "length": 38, - "value": "\"Did receive file message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 4070, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUDebouncer.swift", + "kind": "FloatLiteral", + "offset": 332, + "length": 3, + "value": "0.3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUDebouncer.swift", "kind": "StringLiteral", - "offset": 27652, + "offset": 205, + "length": 12, + "value": "\"SendbirdUIKit.SBUDebouncer\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1140, "length": 2, - "value": "\"\"" + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27709, - "length": 39, - "value": "\"Did receive admin message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", + "kind": "Array", + "offset": 1411, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", + "kind": "Array", + "offset": 1487, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27747, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", + "kind": "Array", + "offset": 1798, "length": 2, - "value": "\"\"" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", "kind": "BooleanLiteral", - "offset": 27993, - "length": 4, - "value": "true" + "offset": 2266, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", "kind": "BooleanLiteral", - "offset": 28019, + "offset": 2312, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", "kind": "StringLiteral", - "offset": 28642, - "length": 58, - "value": "\"messageCollection addedNotifications : \"" + "offset": 1047, + "length": 26, + "value": "\"SendbirdUIKit.SBUBaseSelectUserViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28699, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", + "kind": "BooleanLiteral", + "offset": 590, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", "kind": "BooleanLiteral", - "offset": 29035, + "offset": 1360, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", "kind": "BooleanLiteral", - "offset": 29126, + "offset": 1954, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 29421, - "length": 60, - "value": "\"messageCollection updatedNotifications : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", + "kind": "IntegerLiteral", + "offset": 459, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 29480, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.OpenChannel.swift", + "kind": "BooleanLiteral", + "offset": 1349, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 29685, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", + "kind": "Array", + "offset": 721, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", "kind": "BooleanLiteral", - "offset": 29817, + "offset": 767, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", "kind": "BooleanLiteral", - "offset": 29848, + "offset": 947, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", "kind": "StringLiteral", - "offset": 30083, - "length": 60, - "value": "\"messageCollection deletedNotifications : \"" + "offset": 340, + "length": 23, + "value": "\"SendbirdUIKit.SBUSuggestedMentionList\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", "kind": "StringLiteral", - "offset": 30142, + "offset": 429, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 30346, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30538, - "length": 34, - "value": "\"messageCollection changedChannel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30914, - "length": 34, - "value": "\"messageCollection deletedChannel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 31195, - "length": 36, - "value": "\"messageCollection didDetectHugeGap\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 31570, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 31649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 31659, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31921, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4116, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUMessageCache.swift", "kind": "IntegerLiteral", - "offset": 4129, - "length": 1, - "value": "0" + "offset": 257, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4212, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUMessageCache.swift", + "kind": "Array", + "offset": 370, "length": 2, - "value": "-4" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUMessageCache.swift", "kind": "IntegerLiteral", - "offset": 4226, + "offset": 466, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 4285, + "offset": 1721, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4445, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 4512, + "offset": 1928, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "StringLiteral", - "offset": 4597, - "length": 13, - "value": "\"searchField\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4752, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 4806, + "offset": 2403, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "StringLiteral", - "offset": 5657, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "StringLiteral", - "offset": 9133, - "length": 13, - "value": "\"searchField\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "StringLiteral", - "offset": 10085, - "length": 14, - "value": "\"cancelButton\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 10157, - "length": 4, - "value": "true" + "offset": 2573, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 652, + "offset": 2705, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 771, + "offset": 4961, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 1887, + "offset": 5183, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 1910, + "offset": 6214, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", - "kind": "IntegerLiteral", - "offset": 3127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", - "kind": "StringLiteral", - "offset": 3462, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", - "kind": "StringLiteral", - "offset": 3528, - "length": 30, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 3539, - "length": 1, - "value": "\"\"" + "offset": 244, + "length": 5541, + "value": "\"{\n \"version\": \"1\",\n \"body\": {\n \"items\": [\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"items\": [\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"items\": [\n {\n \"type\": \"image\",\n \"imageUrl\": \"https:\/\/dxstmhyqfqr1o.cloudfront.net\/notifications\/preset-notification-channel-cover.png\",\n \"imageStyle\": {\n \"contentMode\": \"aspectFill\"\n },\n \"viewStyle\": {},\n \"metaData\": {\n \"pixelWidth\": \"168\",\n \"pixelHeight\": \"168\"\n }\n },\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"viewStyle\": {\n \"radius\": \"8\",\n \"padding\": {\n \"top\": \"12\",\n \"bottom\": \"12\",\n \"left\": \"12\",\n \"right\": \"12\"\n }\n },\n \"items\": [\n {\n \"type\": \"text\",\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n },\n \"viewStyle\": {},\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"text\": \"Hello tez\",\n \"textStyle\": {\n \"color\": \"#ffbdb8bd\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"1\"\n },\n {\n \"type\": \"text\",\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n },\n \"viewStyle\": {},\n \"width\": {\n \"type\": \"fixed\",\n \"value\": \"1\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"text\": \"Your order #123123 has been shipped.\",\n \"textStyle\": {\n \"color\": \"#ffbdb8bd\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"1\"\n },\n {\n \"type\": \"textButton\",\n \"viewStyle\": {\n \"backgroundColor\": \"#E0E0E0\",\n \"padding\": {\n \"top\": \"10\",\n \"bottom\": \"10\",\n \"left\": \"20\",\n \"right\": \"20\"\n }\n },\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"text\": \"Check status\",\n \"textStyle\": {\n \"color\": \"#742DDD\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"5\",\n \"action\": {\n \"type\": \"web\",\n \"data\": \"https:\/\/naver.com\"\n }\n }\n ],\n \"height\": {\n \"type\": \"fixed\",\n \"value\": \"300\"\n },\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n }\n }\n ],\n \"viewStyle\": {}\n }\n ],\n \"viewStyle\": {}\n }\n ]\n }\n }\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 3557, - "length": 1, - "value": "\"\"" + "offset": 9951, + "length": 19, + "value": "\"TEMPLATE_DOWNLOAD\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 3652, - "length": 61, - "value": "\"UserId:%@, Nickname:%@, ProfileURL:%@, Operator:%d Muted:%d\"" + "offset": 12150, + "length": 3, + "value": "\"SendbirdUIKit.Box\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 3769, - "length": 2, - "value": "\"\"" + "offset": 13570, + "length": 4, + "value": "\"SendbirdUIKit.Text\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 3804, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", - "kind": "Array", - "offset": 4168, - "length": 2, - "value": "[]" + "offset": 15328, + "length": 5, + "value": "\"SendbirdUIKit.Image\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 193, - "length": 7, - "value": "\"SendbirdUIKit.SBUUser\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", - "kind": "BooleanLiteral", - "offset": 672, - "length": 4, - "value": "true" + "offset": 16776, + "length": 10, + "value": "\"SendbirdUIKit.TextButton\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 1129, - "length": 54, - "value": "\"(Message template error)\nCan’t read this message.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", - "kind": "FloatLiteral", - "offset": 1389, - "length": 4, - "value": "16.0" + "offset": 17749, + "length": 11, + "value": "\"SendbirdUIKit.ImageButton\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", - "kind": "BooleanLiteral", - "offset": 1433, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", + "kind": "IntegerLiteral", + "offset": 25359, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 1921, - "length": 2, - "value": "20" + "offset": 29516, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2009, - "length": 3, - "value": "-20" + "offset": 29545, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2098, + "offset": 29516, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2110, + "offset": 29545, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2245, + "offset": 29516, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2258, + "offset": 29545, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2266, + "offset": 31661, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2277, + "offset": 32619, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 3145, - "length": 2, - "value": "30" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", + "kind": "Dictionary", + "offset": 4336, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 3673, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", + "kind": "BooleanLiteral", + "offset": 31846, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4007, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", + "kind": "FloatLiteral", + "offset": 418, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 4959, - "length": 5, - "value": "false" + "offset": 682, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 5467, + "offset": 732, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 5802, - "length": 5, - "value": "false" + "offset": 899, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 5850, - "length": 5, - "value": "false" + "offset": 1381, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 5896, - "length": 5, - "value": "false" + "offset": 1567, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 5937, + "offset": 1614, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 6121, - "length": 5, - "value": "false" + "offset": 1758, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 6524, + "offset": 2357, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6815, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6859, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6879, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6983, - "length": 66, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", + "kind": "BooleanLiteral", + "offset": 2391, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7028, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", + "kind": "IntegerLiteral", + "offset": 2545, + "length": 2, + "value": "40" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7048, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", + "kind": "BooleanLiteral", + "offset": 8070, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 7783, + "offset": 8122, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7951, - "length": 66, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUnknownMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 519, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7996, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/QuickReply\/Views\/SBUQuickReplyView.swift", + "kind": "IntegerLiteral", + "offset": 962, "length": 1, - "value": "\".\"" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8016, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/QuickReply\/Views\/SBUQuickReplyView.swift", + "kind": "IntegerLiteral", + "offset": 1160, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8102, - "length": 65, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 558, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8146, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 879, "length": 1, - "value": "\".\"" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8166, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 1103, "length": 1, - "value": "\"\"" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8856, - "length": 20, - "value": "\"Invalid ChannelURL\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 1497, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8966, - "length": 20, - "value": "\"Invalid ChannelURL\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 1596, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 9796, + "offset": 1631, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 10405, + "offset": 1792, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10591, - "length": 69, - "value": "\"[Succeed] Load channel request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 2249, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10659, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 2288, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 6286, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1715, "length": 2, - "value": "\"\"" + "value": "20" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", + "kind": "Array", + "offset": 2111, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", "kind": "BooleanLiteral", - "offset": 11465, - "length": 4, - "value": "true" + "offset": 2721, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", "kind": "BooleanLiteral", - "offset": 11910, - "length": 4, - "value": "true" + "offset": 2767, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", "kind": "StringLiteral", - "offset": 12823, - "length": 62, - "value": "\"[Failed] Load channel request: \"" + "offset": 1628, + "length": 20, + "value": "\"SendbirdUIKit.SBUUserListViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12884, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", + "kind": "IntegerLiteral", + "offset": 1237, "length": 2, - "value": "\"\"" + "value": "56" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13333, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", + "kind": "IntegerLiteral", + "offset": 1333, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", + "kind": "IntegerLiteral", + "offset": 1522, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13489, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", + "kind": "IntegerLiteral", + "offset": 1733, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13529, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", + "kind": "IntegerLiteral", + "offset": 1942, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", "kind": "IntegerLiteral", - "offset": 13662, + "offset": 2152, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14329, - "length": 122, - "value": "\"loadInitialNotifications,\nstartingPoint : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", + "kind": "IntegerLiteral", + "offset": 930, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 15760, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", + "kind": "IntegerLiteral", + "offset": 1129, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14950, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", + "kind": "IntegerLiteral", + "offset": 1371, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15083, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", + "kind": "IntegerLiteral", + "offset": 2418, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15261, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", + "kind": "IntegerLiteral", + "offset": 2460, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15334, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", + "kind": "StringLiteral", + "offset": 484, + "length": 25, + "value": "\"SendbirdUIKit.SBUMessageThreadTitleView\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 2017, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 15906, + "offset": 2647, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 16000, + "offset": 3238, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 16254, + "offset": 3793, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 16345, - "length": 4, - "value": "true" + "offset": 8863, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", "kind": "StringLiteral", - "offset": 16611, - "length": 35, - "value": "\"Prev notification already loading\"" + "offset": 246, + "length": 40, + "value": "\"SendbirdUIKit.SBUFeedNotificationChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16706, - "length": 34, - "value": "\"[Request] Prev notification list\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", + "kind": "BooleanLiteral", + "offset": 8485, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 17069, + "offset": 23173, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17242, - "length": 67, - "value": "\"[Prev notification response] \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", + "kind": "Array", + "offset": 665, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17294, - "length": 13, - "value": "\" notifications\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", + "kind": "Array", + "offset": 854, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17538, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", + "kind": "Array", + "offset": 1042, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17643, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", + "kind": "Array", + "offset": 1237, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17832, - "length": 35, - "value": "\"Next notification already loading\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 622, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", "kind": "BooleanLiteral", - "offset": 18023, + "offset": 1067, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18261, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", "kind": "BooleanLiteral", - "offset": 18394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 67, - "value": "\"[Next notification Response] \"" + "offset": 1752, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", "kind": "StringLiteral", - "offset": 18595, - "length": 13, - "value": "\" notifications\"" + "offset": 1160, + "length": 28, + "value": "\"SendbirdUIKit.SBUCreateChannelTypeSelector\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", "kind": "BooleanLiteral", - "offset": 18710, - "length": 4, - "value": "true" + "offset": 41824, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", "kind": "BooleanLiteral", - "offset": 18938, + "offset": 41870, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 20434, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21496, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 321, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21556, - "length": 104, - "value": "\"First : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 341, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21608, - "length": 1, - "value": "\", Last : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21659, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 321, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21703, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 341, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22645, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 23724, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 321, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 24032, - "length": 1, - "value": "0" + "offset": 341, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 24187, - "length": 1, - "value": "0" + "offset": 577, + "length": 13, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24336, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 600, + "length": 7, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24396, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 617, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3040, - "length": 35, - "value": "\"SendbirdUIKit.SBUFeedNotificationChannelViewModel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 633, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24959, - "length": 26, - "value": "\"Did succeed reconnection\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 577, + "length": 13, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25105, - "length": 58, - "value": "\"[Failed] Update user info: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 600, + "length": 7, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25162, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 617, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25714, - "length": 43, - "value": "\"Did receive user notification: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 633, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25756, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 577, + "length": 13, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25812, - "length": 43, - "value": "\"Did receive file notification: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 600, + "length": 7, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25854, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 617, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25911, - "length": 44, - "value": "\"Did receive admin notification: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 633, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25954, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 1677, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26200, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 1677, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26226, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 1677, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 26868, - "length": 58, - "value": "\"notificationCollection addedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2079, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 26925, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2101, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27261, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2122, + "length": 13, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27352, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2145, + "length": 17, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27661, - "length": 65, - "value": "\"notificationCollection updatedNotifications : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2241, + "length": 13, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27725, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2079, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27930, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2101, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 28076, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2122, + "length": 13, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 28107, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2145, + "length": 17, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28356, - "length": 65, - "value": "\"notificationCollection deletedNotifications : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2079, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28420, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2101, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 28624, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2122, + "length": 13, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28827, - "length": 39, - "value": "\"notificationCollection deletedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2145, + "length": 17, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 29453, - "length": 41, - "value": "\"notificationCollection didDetectHugeGap\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2241, + "length": 13, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 29833, - "length": 1, - "value": "0" + "offset": 4024, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 29912, - "length": 1, + "offset": 4041, + "length": 9, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 29922, - "length": 1, - "value": "0" + "offset": 4060, + "length": 5, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 30184, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4075, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "Dictionary", - "offset": 816, - "length": 3, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4091, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "StringLiteral", - "offset": 1189, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4178, + "length": 14, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1392, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4260, + "length": 12, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "StringLiteral", - "offset": 1494, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4341, + "length": 13, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1750, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4024, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "StringLiteral", - "offset": 1852, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1991, - "length": 1, - "value": "0" + "offset": 4060, + "length": 5, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "StringLiteral", - "offset": 4585, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4075, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 4731, - "length": 1, - "value": "0" + "offset": 4091, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 5065, - "length": 1, - "value": "0" + "offset": 4024, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "Array", - "offset": 5137, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "StringLiteral", - "offset": 7136, - "length": 3, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4060, + "length": 5, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 55038, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4075, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 55718, - "length": 4, - "value": "0.64" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4091, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 61277, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4178, + "length": 14, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 61953, - "length": 4, - "value": "0.64" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4260, + "length": 12, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 67438, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4341, + "length": 13, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 68114, - "length": 4, - "value": "0.64" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4530, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 73884, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4545, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 74649, - "length": 4, - "value": "0.64" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4530, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 85843, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4545, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 96072, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4530, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 97170, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4545, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 98230, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4770, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 118464, - "length": 4, - "value": "0.12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4770, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 123491, - "length": 4, - "value": "0.36" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4770, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 128501, - "length": 4, - "value": "0.36" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4901, + "length": 10, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 133531, - "length": 4, - "value": "0.12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4921, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 173728, - "length": 2, - "value": "18" + "offset": 4941, + "length": 15, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 174448, - "length": 2, - "value": "18" + "offset": 4966, + "length": 9, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 176138, - "length": 2, - "value": "14" + "offset": 4985, + "length": 14, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 176373, - "length": 2, - "value": "12" + "offset": 5009, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 177154, - "length": 2, - "value": "14" + "offset": 5038, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 177668, - "length": 2, - "value": "12" + "offset": 5061, + "length": 15, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 178703, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5086, + "length": 5, + "value": "9" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 178765, - "length": 11, - "value": "\"#70000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5172, + "length": 15, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 178825, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4901, + "length": 10, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 179366, - "length": 11, - "value": "\"#e0ffffff\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4921, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 179428, - "length": 11, - "value": "\"#70ffffff\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4941, + "length": 15, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 179488, - "length": 11, - "value": "\"#e0ffffff\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4966, + "length": 9, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 179603, - "length": 1, - "value": "8" + "offset": 4985, + "length": 14, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 179782, - "length": 2, - "value": "12" + "offset": 5009, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 179947, - "length": 2, - "value": "14" + "offset": 5038, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 180183, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5061, + "length": 15, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 180250, - "length": 11, - "value": "\"#70000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5086, + "length": 5, + "value": "9" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 180315, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4901, + "length": 10, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 181135, - "length": 1, - "value": "8" + "offset": 4921, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 181329, - "length": 2, - "value": "12" + "offset": 4941, + "length": 15, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 181696, - "length": 2, - "value": "14" + "offset": 4966, + "length": 9, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 182201, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4985, + "length": 14, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 182267, - "length": 11, - "value": "\"#70000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5009, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 182340, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5038, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 364, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5061, + "length": 15, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 574, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5086, + "length": 5, + "value": "9" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1005, - "length": 2, - "value": "12" + "offset": 5172, + "length": 15, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1096, - "length": 1, + "offset": 5452, + "length": 7, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1127, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5469, + "length": 8, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1356, - "length": 1, - "value": "0" + "offset": 5487, + "length": 7, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1378, - "length": 1, - "value": "0" + "offset": 5504, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1398, - "length": 1, - "value": "0" + "offset": 5452, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1421, - "length": 1, - "value": "0" + "offset": 5469, + "length": 8, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1595, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5487, + "length": 7, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1610, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5504, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1650, - "length": 2, - "value": "48" + "offset": 5646, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1662, - "length": 2, - "value": "48" + "offset": 5646, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "StringLiteral", - "offset": 2796, - "length": 11, - "value": "\"image\/gif\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5783, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "StringLiteral", - "offset": 3454, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5798, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 4854, - "length": 1, + "offset": 5783, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5798, + "length": 6, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "StringLiteral", - "offset": 4905, - "length": 11, - "value": "\"image\/gif\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5959, + "length": 3, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 5283, - "length": 1, + "offset": 5972, + "length": 6, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 343, - "length": 4, + "offset": 5988, + "length": 6, + "value": "3" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5959, + "length": 3, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 349, - "length": 5, + "offset": 5972, + "length": 6, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 356, - "length": 3, + "offset": 5988, + "length": 6, "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 343, - "length": 4, + "offset": 6234, + "length": 5, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 349, + "offset": 6249, "length": 5, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 356, - "length": 3, + "offset": 6264, + "length": 5, "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 343, - "length": 4, + "offset": 6279, + "length": 3, + "value": "4" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6292, + "length": 3, + "value": "5" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6234, + "length": 5, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 349, + "offset": 6249, "length": 5, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 356, - "length": 3, + "offset": 6264, + "length": 5, "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 609, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6279, "length": 3, - "value": "8.0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 3635, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6292, "length": 3, - "value": "2.0" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 3805, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6485, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 3896, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6532, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 3985, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6576, + "length": 7, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4076, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6655, + "length": 11, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4188, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6743, + "length": 15, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4303, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6485, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4465, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6532, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4555, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6576, + "length": 7, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4643, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7038, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4735, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7052, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4847, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7038, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4962, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7052, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6250, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7547, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6315, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7547, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6380, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7611, + "length": 10, + "value": "0b00000000" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6445, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7641, + "length": 10, + "value": "0b00000001" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6572, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7671, + "length": 10, + "value": "0b00000010" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6700, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7701, + "length": 10, + "value": "0b00000100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 702, - "length": 2, - "value": "12" + "offset": 7731, + "length": 10, + "value": "0b00000111" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 753, - "length": 1, - "value": "7" + "offset": 7611, + "length": 10, + "value": "0b00000000" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 872, - "length": 2, - "value": "16" + "offset": 7641, + "length": 10, + "value": "0b00000001" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 918, - "length": 2, - "value": "10" + "offset": 7671, + "length": 10, + "value": "0b00000010" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 968, - "length": 2, - "value": "16" + "offset": 7701, + "length": 10, + "value": "0b00000100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1017, - "length": 1, + "offset": 7731, + "length": 10, + "value": "0b00000111" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7866, + "length": 4, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "StringLiteral", - "offset": 1076, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7880, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 1317, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7866, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 1373, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7880, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 1414, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7866, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 1450, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7880, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "BooleanLiteral", - "offset": 1488, + "offset": 1452, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "IntegerLiteral", - "offset": 1606, + "offset": 2129, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", + "kind": "IntegerLiteral", + "offset": 2369, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", + "kind": "IntegerLiteral", + "offset": 2618, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "BooleanLiteral", - "offset": 1831, - "length": 5, - "value": "false" + "offset": 4079, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "BooleanLiteral", - "offset": 2097, + "offset": 4341, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "BooleanLiteral", - "offset": 2601, + "offset": 4418, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "BooleanLiteral", - "offset": 2955, + "offset": 13631, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 3137, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 3633, + "offset": 657, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "IntegerLiteral", - "offset": 3786, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", "kind": "IntegerLiteral", - "offset": 4004, + "offset": 508, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", "kind": "IntegerLiteral", - "offset": 4201, + "offset": 517, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", "kind": "IntegerLiteral", - "offset": 4433, + "offset": 528, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", "kind": "IntegerLiteral", - "offset": 5017, + "offset": 538, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", "kind": "IntegerLiteral", - "offset": 5250, + "offset": 872, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 7563, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "StringLiteral", + "offset": 1616, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 7889, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "StringLiteral", + "offset": 1738, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", "kind": "StringLiteral", - "offset": 4628, + "offset": 2098, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 240, - "length": 13, - "value": "\"E, MMM yyyy\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 3001, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 14, - "value": "\"MMM dd, yyyy\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 3323, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 334, - "length": 11, - "value": "\"E, MMM dd\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "BooleanLiteral", + "offset": 3364, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 376, - "length": 8, - "value": "\"MMM dd\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 3959, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 9, - "value": "\"hh:mm a\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 4359, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 7, - "value": "\"hh:mm\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 4869, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 495, - "length": 12, - "value": "\"yyyy\/MM\/dd\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 5150, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 545, - "length": 14, - "value": "\"yyyyMMddhhmm\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 5249, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 599, - "length": 16, - "value": "\"yyyyMMddhhmmss\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "BooleanLiteral", + "offset": 5284, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 651, - "length": 16, - "value": "\"MMM dd hh:mm a\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", + "kind": "BooleanLiteral", + "offset": 6548, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 707, - "length": 22, - "value": "\"MMM dd, yyyy hh:mm a\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 396, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 1197, + "offset": 436, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 473, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 1245, + "offset": 637, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 1310, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 1284, + "offset": 1929, "length": 1, - "value": "2" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 1752, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 2584, "length": 2, - "value": "\"\"" + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 2030, + "offset": 3238, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 2040, + "offset": 3920, "length": 1, - "value": "0" + "value": "4" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 4159, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 2048, + "offset": 4258, "length": 1, - "value": "0" + "value": "1" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 4293, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 2059, + "offset": 13359, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", "kind": "IntegerLiteral", - "offset": 6374, + "offset": 514, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", "kind": "BooleanLiteral", - "offset": 6702, - "length": 4, - "value": "true" + "offset": 548, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "FloatLiteral", - "offset": 6804, - "length": 4, - "value": "0.75" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", + "kind": "IntegerLiteral", + "offset": 693, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 8805, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", + "kind": "StringLiteral", + "offset": 331, + "length": 16, + "value": "\"SendbirdUIKit.SBUVoiceFileInfo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 9486, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1607, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 10071, + "offset": 2147, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 10405, - "length": 4, - "value": "true" + "offset": 2199, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 11061, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 2318, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 11552, - "length": 4, - "value": "true" + "offset": 2463, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", "kind": "StringLiteral", - "offset": 12008, - "length": 37, - "value": "\"Did receive error: \"" + "offset": 1489, + "length": 23, + "value": "\"SendbirdUIKit.SBUOpenChannelViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 12041, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 292, + "length": 13, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 12044, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 315, + "length": 14, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 13034, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 339, + "length": 10, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 13901, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 359, + "length": 8, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "Dictionary", - "offset": 14190, - "length": 3, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 292, + "length": 13, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 15425, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 315, + "length": 14, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 16134, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 339, + "length": 10, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 16677, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 359, + "length": 8, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 889, - "length": 4, - "value": "1000" + "offset": 508, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 939, - "length": 6, - "value": "600000" + "offset": 525, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 1076, + "offset": 544, "length": 5, - "value": "11025" + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 1118, - "length": 1, - "value": "1" + "offset": 559, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 1222, - "length": 5, - "value": "12000" + "offset": 575, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 527, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 662, + "length": 14, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 3323, - "length": 1, - "value": "0" + "offset": 744, + "length": 12, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 3441, - "length": 1, - "value": "0" + "offset": 825, + "length": 13, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 3543, - "length": 1, - "value": "0" + "offset": 508, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 3701, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 525, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 3864, - "length": 69, - "value": "\"[Failed] SendbirdChat initialize failed.: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 544, + "length": 5, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 3932, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 559, + "length": 6, + "value": "4" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 575, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", "kind": "BooleanLiteral", - "offset": 4435, + "offset": 426, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 5749, - "length": 72, - "value": "\"[Check] Connection status : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 5820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", "kind": "StringLiteral", - "offset": 5992, - "length": 75, - "value": "\"currentUser: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 6066, + "offset": 562, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 34, - "value": "\"[Request] Connection to Sendbird\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", + "kind": "IntegerLiteral", + "offset": 602, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 6903, - "length": 63, - "value": "\"[Failed] Connection to Sendbird: CurrentUser value is not set\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", + "kind": "BooleanLiteral", + "offset": 629, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 7544, - "length": 71, - "value": "\"[Failed] Connection to Sendbird: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", + "kind": "BooleanLiteral", + "offset": 2852, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", "kind": "StringLiteral", - "offset": 7611, - "length": 2, - "value": "\"\"" + "offset": 285, + "length": 31, + "value": "\"LOCAL_CACHING_EMOJI_CONTAINER\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 7614, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", + "kind": "Array", + "offset": 2356, "length": 2, - "value": "\"\"" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 7779, - "length": 97, - "value": "\"[Warning] Connection to Sendbird: Succeed but error was occurred: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 1357, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 7875, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "Array", + "offset": 1759, "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 8097, - "length": 34, - "value": "\"[Succeed] Connection to Sendbird\"" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 9812, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "Array", + "offset": 1892, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 9977, - "length": 52, - "value": "\"[Failed] Load global notification channel settings\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "Array", + "offset": 2122, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 10339, - "length": 29, - "value": "\"[Failed] Load template list\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "Array", + "offset": 2297, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 10613, - "length": 63, - "value": "\"[Failed] Connection to Sendbird: CurrentUser value is not set\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 2361, + "length": 2, + "value": "56" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 10829, - "length": 33, - "value": "\"[Failed] Connection to Sendbird\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 2404, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 12418, - "length": 37, - "value": "\"[Request] Disconnection to Sendbird\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 2846, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 12543, - "length": 37, - "value": "\"[Succeed] Disconnection to Sendbird\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 2962, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 14757, - "length": 28, - "value": "\"[Request] Update user info\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 3407, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 15575, - "length": 58, - "value": "\"[Failed] Update user info: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "FloatLiteral", + "offset": 3632, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 15632, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "FloatLiteral", + "offset": 3859, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 15821, - "length": 124, - "value": "\"[Succeed]\nUpdate user info: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 4093, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 15925, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 4350, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 15929, - "length": 2296, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 7285, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 16608, - "length": 10, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 27372, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 16617, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 29995, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", "kind": "StringLiteral", - "offset": 16740, + "offset": 239, "length": 28, - "value": "\"CFBundleShortVersionString\"" + "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", "kind": "StringLiteral", - "offset": 16795, - "length": 10, - "value": "\"\"" + "offset": 239, + "length": 28, + "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", "kind": "StringLiteral", - "offset": 16804, - "length": 1, - "value": "\"\"" + "offset": 239, + "length": 28, + "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 16854, - "length": 7, - "value": "\"0.0.0\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1622, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 17580, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", + "kind": "Array", + "offset": 1934, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 17678, - "length": 50, - "value": "\"[Request] Register push token to Sendbird server\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", + "kind": "Array", + "offset": 2009, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 18638, + "offset": 2218, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 19033, + "offset": 2264, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 19944, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", + "kind": "IntegerLiteral", + "offset": 258, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", "kind": "BooleanLiteral", - "offset": 20368, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 20449, - "length": 56, - "value": "\"[Request] Unregister all push token to Sendbird server\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 20651, - "length": 69, - "value": "\"[Failed] Push unregistration is fail: \"" + "offset": 487, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", "kind": "StringLiteral", - "offset": 20719, + "offset": 600, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 20760, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 1338, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 20857, - "length": 43, - "value": "\"[Succeed] Push unregistration is success.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 1588, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 20936, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "FloatLiteral", + "offset": 2111, + "length": 3, + "value": "4.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", "kind": "BooleanLiteral", - "offset": 21209, - "length": 4, - "value": "true" + "offset": 3129, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 22530, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 3327, + "length": 2, + "value": "80" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 23722, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 3364, + "length": 2, + "value": "48" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 23810, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 3408, + "length": 2, + "value": "64" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 25608, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 3420, + "length": 2, + "value": "68" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", "kind": "BooleanLiteral", - "offset": 25889, + "offset": 1883, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 27018, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 27540, + "offset": 748, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 27967, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 1129, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 29393, + "offset": 1289, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 30006, + "offset": 3514, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 32106, - "length": 98, - "value": "\"[Request] Create channel with users,\nUser: \"" + "offset": 363, + "length": 25, + "value": "\"com.sendbird.cache.file\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 32187, - "length": 1, - "value": "\")\"" + "offset": 488, + "length": 10, + "value": "\"template\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 32285, - "length": 2, - "value": "\"\"" + "offset": 532, + "length": 14, + "value": "\"user-profile\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 32314, - "length": 2, - "value": "\"\"" + "offset": 577, + "length": 10, + "value": "\"reaction\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 32380, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", + "kind": "StringLiteral", + "offset": 613, "length": 5, - "value": "false" + "value": "\"web\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 33316, - "length": 138, - "value": "\"[Failed] Create channel request:\n\"" + "offset": 1203, + "length": 49, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 33430, - "length": 1174, - "value": "\"\"" + "offset": 1235, + "length": 1, + "value": "\".queue.diskcache\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 33574, - "length": 59, - "value": "\"[Failed] Create channel request: There is no channel url.\"" + "offset": 7253, + "length": 51, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 33696, - "length": 57, - "value": "\"[Succeed] Create channel: \"" + "offset": 7285, + "length": 1, + "value": "\".queue.memorycache\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 33749, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", + "kind": "IntegerLiteral", + "offset": 7517, "length": 2, - "value": "\"\"" + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 33752, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", + "kind": "IntegerLiteral", + "offset": 7522, + "length": 4, + "value": "1024" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "IntegerLiteral", - "offset": 34572, - "length": 1, - "value": "0" + "offset": 7529, + "length": 4, + "value": "1024" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "IntegerLiteral", - "offset": 1674, + "offset": 7637, "length": 2, - "value": "16" + "value": "30" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", "kind": "IntegerLiteral", - "offset": 1900, - "length": 1, - "value": "0" + "offset": 1559, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", "kind": "IntegerLiteral", - "offset": 1922, - "length": 1, - "value": "0" + "offset": 1614, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", + "kind": "StringLiteral", + "offset": 1434, + "length": 28, + "value": "\"SendbirdUIKit.SBUGroupChannelListViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", "kind": "BooleanLiteral", - "offset": 3054, + "offset": 9036, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "80.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", + "kind": "BooleanLiteral", + "offset": 839, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "IntegerLiteral", - "offset": 3175, - "length": 2, - "value": "46" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", + "kind": "BooleanLiteral", + "offset": 890, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", "kind": "IntegerLiteral", - "offset": 3187, - "length": 2, - "value": "46" + "offset": 915, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 4230, + "offset": 947, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "IntegerLiteral", - "offset": 4683, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "IntegerLiteral", - "offset": 4697, - "length": 3, - "value": "-16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", + "kind": "StringLiteral", + "offset": 200, + "length": 24, + "value": "\"SendbirdUIKit.SBUUserMessageCellParams\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", "kind": "IntegerLiteral", - "offset": 4707, - "length": 2, - "value": "16" + "offset": 479, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", "kind": "IntegerLiteral", - "offset": 4947, + "offset": 691, "length": 1, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", "kind": "IntegerLiteral", - "offset": 5800, + "offset": 907, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "BooleanLiteral", - "offset": 6477, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", + "kind": "IntegerLiteral", + "offset": 1185, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", "kind": "BooleanLiteral", - "offset": 6647, + "offset": 1227, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "StringLiteral", - "offset": 7274, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", + "kind": "IntegerLiteral", + "offset": 1447, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "BooleanLiteral", - "offset": 7512, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", + "kind": "IntegerLiteral", + "offset": 1831, + "length": 2, + "value": "56" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "Array", - "offset": 1365, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", + "kind": "IntegerLiteral", + "offset": 1888, "length": 2, - "value": "[]" + "value": "26" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", "kind": "StringLiteral", - "offset": 2948, + "offset": 712, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 826, "length": 2, - "value": "\"\"" + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 3680, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 961, "length": 2, - "value": "\"\"" + "value": "15" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", "kind": "BooleanLiteral", - "offset": 5229, - "length": 4, - "value": "true" + "offset": 1290, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 5960, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", + "kind": "IntegerLiteral", + "offset": 1049, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", "kind": "BooleanLiteral", - "offset": 6370, - "length": 4, - "value": "true" + "offset": 1138, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", "kind": "StringLiteral", - "offset": 6649, - "length": 37, - "value": "\"Did receive error: \"" + "offset": 1237, + "length": 20, + "value": "\"transform.rotation\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 6682, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", + "kind": "IntegerLiteral", + "offset": 1288, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 6685, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", + "kind": "IntegerLiteral", + "offset": 1317, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8440, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", + "kind": "FloatLiteral", + "offset": 1359, + "length": 3, + "value": "1.1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 8766, + "offset": 1259, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 9434, + "offset": 1936, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 9489, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 10105, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", "kind": "IntegerLiteral", - "offset": 713, + "offset": 2331, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 719, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 2577, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 729, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 4001, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "FloatLiteral", - "offset": 740, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 10335, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "Array", - "offset": 930, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 11337, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "Array", - "offset": 968, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 15522, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "Array", - "offset": 1755, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 15549, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 2084, + "offset": 20668, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 2123, + "offset": 7319, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 2282, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "IntegerLiteral", + "offset": 7348, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 2329, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "IntegerLiteral", + "offset": 7565, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2587, - "length": 2, - "value": "56" + "offset": 7575, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2670, + "offset": 7586, "length": 2, - "value": "16" + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2680, + "offset": 7597, "length": 2, - "value": "19" + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2692, + "offset": 7632, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2702, + "offset": 7666, "length": 2, - "value": "19" + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2797, - "length": 2, - "value": "16" + "offset": 7841, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 3129, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "IntegerLiteral", + "offset": 8187, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 3196, - "length": 5, - "value": "false" + "offset": 8472, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3747, + "offset": 8502, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3757, + "offset": 8716, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3765, + "offset": 9018, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3776, + "offset": 9786, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3844, - "length": 1, - "value": "0" + "offset": 10478, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3912, - "length": 1, - "value": "0" + "offset": 10575, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "FloatLiteral", - "offset": 3937, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "IntegerLiteral", + "offset": 10668, + "length": 2, + "value": "38" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3993, + "offset": 10756, "length": 2, - "value": "60" + "value": "87" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 4037, - "length": 4, - "value": "true" + "offset": 10866, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 4162, - "length": 1, - "value": "0" + "offset": 11370, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 5689, - "length": 1, - "value": "0" + "offset": 11622, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 6212, + "offset": 11827, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 6280, - "length": 1, - "value": "0" + "offset": 11844, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 6292, + "offset": 11864, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 6316, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 6536, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 6819, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "IntegerLiteral", + "offset": 11882, + "length": 3, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7178, + "offset": 13083, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7315, + "offset": 13460, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7319, + "offset": 13811, "length": 1, - "value": "9" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7355, + "offset": 14265, "length": 2, - "value": "41" + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 7367, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "StringLiteral", + "offset": 16072, "length": 2, - "value": "44" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 7384, - "length": 2, - "value": "10" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 16105, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 7389, - "length": 2, - "value": "99" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 16135, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 7426, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 16306, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 16404, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 17184, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 17265, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "StringLiteral", + "offset": 18750, + "length": 60, + "value": "\"Message input view changed mode to \"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "StringLiteral", + "offset": 18809, "length": 2, - "value": "49" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 7438, + "offset": 2347, "length": 2, - "value": "44" + "value": "56" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 7492, + "offset": 2445, "length": 2, - "value": "57" + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 7504, + "offset": 2541, "length": 2, - "value": "44" + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 7725, - "length": 1, - "value": "0" + "offset": 3194, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 8705, + "offset": 3405, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 10123, + "offset": 3614, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 10180, + "offset": 3812, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 10623, - "length": 4, - "value": "true" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 10717, + "offset": 8528, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 10790, + "offset": 24786, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "StringLiteral", - "offset": 228, - "length": 26, - "value": "\"SendbirdUIKit.SBUReactionsViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUGlobals.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 1925, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardListView.swift", + "kind": "FloatLiteral", + "offset": 295, "length": 5, - "value": "false" + "value": "258.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardListView.swift", "kind": "IntegerLiteral", - "offset": 2041, - "length": 3, - "value": "100" + "offset": 548, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2772, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardListView.swift", + "kind": "IntegerLiteral", + "offset": 750, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "BooleanLiteral", - "offset": 2824, + "offset": 1222, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "IntegerLiteral", - "offset": 2943, + "offset": 2006, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "IntegerLiteral", - "offset": 3033, - "length": 4, - "value": "1000" + "offset": 2782, + "length": 2, + "value": "55" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3088, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", + "kind": "IntegerLiteral", + "offset": 2828, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "IntegerLiteral", - "offset": 3576, + "offset": 2910, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "BooleanLiteral", - "offset": 3977, + "offset": 3100, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "BooleanLiteral", - "offset": 4018, - "length": 4, - "value": "true" + "offset": 3511, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", + "kind": "BooleanLiteral", + "offset": 3901, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "StringLiteral", - "offset": 4193, - "length": 67, - "value": "\"\"" + "offset": 1463, + "length": 19, + "value": "\"SendbirdUIKit.SBUMessageStateView\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "StringLiteral", - "offset": 4239, - "length": 1, - "value": "\".\"" + "offset": 1463, + "length": 19, + "value": "\"SendbirdUIKit.SBUMessageStateView\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", + "kind": "BooleanLiteral", + "offset": 562, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", + "kind": "BooleanLiteral", + "offset": 851, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 4259, - "length": 1, - "value": "\"\"" + "offset": 263, + "length": 11, + "value": "\"reactions\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 5395, - "length": 67, - "value": "\"\"" + "offset": 306, + "length": 15, + "value": "\"enable_og_tag\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 5441, - "length": 1, - "value": "\".\"" + "offset": 371, + "length": 33, + "value": "\"use_last_messege_on_super_group\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 5461, - "length": 1, - "value": "\"\"" + "offset": 439, + "length": 18, + "value": "\"use_last_seen_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6052, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 500, + "length": 26, + "value": "\"enable_message_threading\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6504, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 580, + "length": 37, + "value": "\"allow_group_channel_create_from_sdk\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6881, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 671, + "length": 37, + "value": "\"allow_group_channel_invite_from_sdk\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7127, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 760, + "length": 35, + "value": "\"allow_operators_to_edit_operators\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7846, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 846, + "length": 34, + "value": "\"allow_operators_to_ban_operators\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 8848, - "length": 47, - "value": "\"[Request] Load channel: \"" + "offset": 924, + "length": 27, + "value": "\"allow_super_group_channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 8894, - "length": 2, - "value": "\"\"" + "offset": 1004, + "length": 36, + "value": "\"allow_group_channel_leave_from_sdk\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 9342, - "length": 69, - "value": "\"[Succeed] Load channel request: \"" + "offset": 1094, + "length": 37, + "value": "\"allow_group_channel_update_from_sdk\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 9410, - "length": 2, - "value": "\"\"" + "offset": 1197, + "length": 49, + "value": "\"allow_only_operator_sdk_to_update_group_channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10477, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 1288, + "length": 25, + "value": "\"allow_broadcast_channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 11391, - "length": 62, - "value": "\"[Failed] Load channel request: \"" + "offset": 1346, + "length": 19, + "value": "\"message_search_v3\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 11452, - "length": 2, - "value": "\"\"" + "offset": 1438, + "length": 28, + "value": "\"allow_user_update_from_sdk\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11853, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", + "kind": "FloatLiteral", + "offset": 414, "length": 4, - "value": "true" + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", "kind": "BooleanLiteral", - "offset": 11892, - "length": 5, - "value": "false" + "offset": 598, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", "kind": "BooleanLiteral", - "offset": 12121, - "length": 5, - "value": "false" + "offset": 947, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", "kind": "BooleanLiteral", - "offset": 12161, + "offset": 1189, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", "kind": "BooleanLiteral", - "offset": 12651, + "offset": 1236, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 13205, - "length": 4, - "value": "true" + "offset": 400, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 13244, - "length": 4, - "value": "true" + "offset": 603, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13283, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", "kind": "StringLiteral", - "offset": 14449, - "length": 187, - "value": "\"loadInitialMessages,\nstartingPoint : \"" + "offset": 203, + "length": 27, + "value": "\"SendbirdUIKit.SBUUnknownMessageCellParams\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", "kind": "StringLiteral", - "offset": 14550, - "length": 1, - "value": "\",\ninitialMessages : \"" + "offset": 20355, + "length": 12, + "value": "\"created_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", "kind": "StringLiteral", - "offset": 14620, - "length": 7153, - "value": "\"\"" + "offset": 20381, + "length": 12, + "value": "\"updated_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14773, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", + "kind": "StringLiteral", + "offset": 20355, + "length": 12, + "value": "\"created_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", "kind": "StringLiteral", - "offset": 15469, - "length": 30, - "value": "\"Prev message already loading\"" + "offset": 20381, + "length": 12, + "value": "\"updated_at\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", + "kind": "StringLiteral", + "offset": 20625, + "length": 12, + "value": "\"updated_at\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", + "kind": "StringLiteral", + "offset": 20691, + "length": 12, + "value": "\"theme_mode\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", "kind": "StringLiteral", - "offset": 15559, - "length": 69, - "value": "\"[Request] Prev message list from : \"" + "offset": 20625, + "length": 12, + "value": "\"updated_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", "kind": "StringLiteral", - "offset": 15627, + "offset": 20691, + "length": 12, + "value": "\"theme_mode\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", + "kind": "Array", + "offset": 20858, "length": 2, - "value": "\"\"" + "value": "[]" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", + "kind": "IntegerLiteral", + "offset": 466, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 15668, - "length": 4, - "value": "true" + "offset": 2260, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 15836, + "offset": 2464, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 15878, + "offset": 2506, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16081, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 16555, + "offset": 2590, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 16603, + "offset": 13266, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 16837, - "length": 40, - "value": "\"Prev message list request is not valid\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1185, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16920, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", + "kind": "Array", + "offset": 1294, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", "kind": "StringLiteral", - "offset": 17016, - "length": 52, - "value": "\"[Prev message response] \"" + "offset": 1061, + "length": 27, + "value": "\"SendbirdUIKit.SBUOpenChannelListViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 17058, - "length": 8, - "value": "\" messages\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "Array", + "offset": 2278, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17399, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "IntegerLiteral", + "offset": 2460, + "length": 2, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17599, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "FloatLiteral", + "offset": 2588, "length": 4, - "value": "true" + "value": "56.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17659, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "FloatLiteral", + "offset": 2625, + "length": 4, + "value": "48.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 17811, - "length": 30, - "value": "\"Next message already loading\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "FloatLiteral", + "offset": 2660, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 17901, - "length": 65, - "value": "\"[Request] Next message list from : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "FloatLiteral", + "offset": 2696, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 17965, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "IntegerLiteral", + "offset": 3744, "length": 2, - "value": "\"\"" + "value": "1" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "IntegerLiteral", + "offset": 4485, + "length": 2, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", "kind": "BooleanLiteral", - "offset": 18006, + "offset": 8032, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "IntegerLiteral", - "offset": 18178, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "StringLiteral", + "offset": 249, + "length": 11, + "value": "\"SBUConfig\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "StringLiteral", + "offset": 2361, + "length": 56, + "value": "\"\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "StringLiteral", + "offset": 2393, "length": 1, - "value": "0" + "value": "\".queue.diskcache.config\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", "kind": "IntegerLiteral", - "offset": 18216, + "offset": 2490, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18415, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "StringLiteral", + "offset": 2533, + "length": 23, + "value": "\"sbu_config_updated_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18795, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "StringLiteral", + "offset": 2581, + "length": 19, + "value": "\"sbu_config_config\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 19002, - "length": 40, - "value": "\"Next message list request is not valid\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "BooleanLiteral", + "offset": 3630, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/NotificationSettings\/SBUGroupChannelPushSettingsViewModel.swift", "kind": "StringLiteral", - "offset": 19134, - "length": 52, - "value": "\"[Next message Response] \"" + "offset": 744, + "length": 36, + "value": "\"SendbirdUIKit.SBUGroupChannelPushSettingsViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", "kind": "StringLiteral", - "offset": 19176, - "length": 8, - "value": "\" messages\"" + "offset": 648, + "length": 6, + "value": "\"spin\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19509, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", + "kind": "StringLiteral", + "offset": 648, + "length": 6, + "value": "\"spin\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 19691, - "length": 4, - "value": "true" + "offset": 4659, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 20102, - "length": 69, - "value": "\"[Request] Both message list from : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "kind": "Dictionary", + "offset": 5721, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", "kind": "StringLiteral", - "offset": 20170, + "offset": 892, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", "kind": "BooleanLiteral", - "offset": 20449, - "length": 4, - "value": "true" + "offset": 458, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20582, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 27, + "value": "\"SendbirdUIKit.SBUBaseChannelListViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 20854, - "length": 1, - "value": "0" + "offset": 1659, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 20926, - "length": 1, - "value": "2" + "offset": 1719, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 20992, - "length": 1, - "value": "2" + "offset": 1780, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21041, - "length": 1, - "value": "0" + "offset": 1835, + "length": 2, + "value": "24" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21117, - "length": 1, - "value": "2" + "offset": 1895, + "length": 2, + "value": "32" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21187, - "length": 1, - "value": "2" + "offset": 1959, + "length": 2, + "value": "48" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21328, - "length": 1, - "value": "0" + "offset": 2020, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21425, - "length": 1, - "value": "0" + "offset": 2131, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21564, - "length": 1, - "value": "0" + "offset": 2185, + "length": 2, + "value": "38" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21685, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 21783, - "length": 166, - "value": "\"Fetch from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 21832, - "length": 1, - "value": "\",\nlimit: prev = \"" + "offset": 2238, + "length": 2, + "value": "60" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 21888, - "length": 1, - "value": "\",\nnext = \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2289, + "length": 2, + "value": "28" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 21933, - "length": 2499, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2345, + "length": 2, + "value": "40" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21980, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2411, + "length": 2, + "value": "36" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22402, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2466, + "length": 2, + "value": "40" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22478, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2527, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23433, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2582, + "length": 2, + "value": "22" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 23592, - "length": 43, - "value": "\"Initial message list request is not valid\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2642, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "BooleanLiteral", - "offset": 23689, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 23754, - "length": 52, - "value": "\"[Both message response] \"" + "offset": 3936, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 23796, - "length": 8, - "value": "\" messages\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "Array", + "offset": 10599, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", "kind": "IntegerLiteral", - "offset": 24139, + "offset": 2330, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24442, - "length": 276, - "value": "\"[Initial message response] Prev count : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24561, - "length": 1, - "value": "\",\nprevLimit : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24639, - "length": 1, - "value": "\",\nhasPrev : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24702, - "length": 28, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24740, - "length": 268, - "value": "\"[Initial message response] Next count : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24859, - "length": 1, - "value": "\",\nnextLimit : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24933, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "kind": "IntegerLiteral", + "offset": 3263, "length": 1, - "value": "\",\nhasNext : \"" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24992, - "length": 37, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "kind": "BooleanLiteral", + "offset": 5410, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 25039, - "length": 161, - "value": "\"[Initial message response] First : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "kind": "BooleanLiteral", + "offset": 6115, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 25127, - "length": 1, - "value": "\",\nLast : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "kind": "BooleanLiteral", + "offset": 1189, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 25184, - "length": 1636, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "kind": "BooleanLiteral", + "offset": 11242, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", "kind": "BooleanLiteral", - "offset": 25304, - "length": 5, - "value": "false" + "offset": 11773, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", "kind": "BooleanLiteral", - "offset": 25376, + "offset": 718, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 25806, - "length": 67, - "value": "\"[Failed] Send user message request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", + "kind": "BooleanLiteral", + "offset": 928, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 25872, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", + "kind": "BooleanLiteral", + "offset": 460, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 26263, - "length": 57, - "value": "\"[Succeed] Send user message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", + "kind": "IntegerLiteral", + "offset": 754, + "length": 5, + "value": "10001" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", "kind": "StringLiteral", - "offset": 26319, - "length": 2, - "value": "\"\"" + "offset": 252, + "length": 17, + "value": "\"SendbirdUIKit.SBUNewMessageInfo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", "kind": "BooleanLiteral", - "offset": 26397, + "offset": 1332, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 26830, - "length": 133, - "value": "\"[Failed] Send file message request:\n\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", + "kind": "IntegerLiteral", + "offset": 1404, + "length": 2, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 26939, - "length": 2825, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", + "kind": "IntegerLiteral", + "offset": 318, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 27370, - "length": 57, - "value": "\"[Succeed] Send file message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", + "kind": "IntegerLiteral", + "offset": 364, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 27426, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", + "kind": "IntegerLiteral", + "offset": 318, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27517, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", + "kind": "IntegerLiteral", + "offset": 364, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", "kind": "BooleanLiteral", - "offset": 28037, + "offset": 1820, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", "kind": "BooleanLiteral", - "offset": 28121, + "offset": 2278, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 28166, - "length": 76, - "value": "\"[Failed] Resend failed user message request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", + "kind": "BooleanLiteral", + "offset": 3845, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 28241, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", + "kind": "FloatLiteral", + "offset": 4179, + "length": 3, + "value": "0.7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 28627, - "length": 62, - "value": "\"[Succeed] Resend failed file message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", + "kind": "BooleanLiteral", + "offset": 6037, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 28688, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", + "kind": "BooleanLiteral", + "offset": 7192, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", "kind": "BooleanLiteral", - "offset": 28775, + "offset": 7781, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", "kind": "BooleanLiteral", - "offset": 29416, - "length": 5, - "value": "false" + "offset": 8247, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 29782, - "length": 193, - "value": "\"hasNext : \"" + "offset": 288, + "length": 31, + "value": "\"enableUsingDefaultUserProfile\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 29843, - "length": 1, - "value": "\",\nfirst : \"" + "offset": 288, + "length": 31, + "value": "\"enableUsingDefaultUserProfile\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 29902, - "length": 1, - "value": "\",\nlast : \"" + "offset": 476, + "length": 16, + "value": "\"enableDocument\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 29959, - "length": 298, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "IntegerLiteral", - "offset": 30069, - "length": 1, - "value": "0" + "offset": 476, + "length": 16, + "value": "\"enableDocument\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30267, - "length": 169, - "value": "\"newTimestamp : \"" + "offset": 612, + "length": 13, + "value": "\"enablePhoto\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30313, - "length": 1, - "value": "\",\nlastUpdatedTimestamp : \"" + "offset": 656, + "length": 13, + "value": "\"enableVideo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30378, - "length": 1, - "value": "\",\ncurrentTime : \"" + "offset": 612, + "length": 13, + "value": "\"enablePhoto\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30420, - "length": 499, - "value": "\"\"" + "offset": 656, + "length": 13, + "value": "\"enableVideo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30663, - "length": 21, - "value": "\"set to \"" + "offset": 790, + "length": 13, + "value": "\"enablePhoto\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30683, - "length": 2, - "value": "\"\"" + "offset": 834, + "length": 13, + "value": "\"enableVideo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30929, - "length": 194, - "value": "\"reset timestamp to : \"" + "offset": 790, + "length": 13, + "value": "\"enablePhoto\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30994, - "length": 1, - "value": "\",\nstartingPoint : \"" + "offset": 834, + "length": 13, + "value": "\"enableVideo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 31065, - "length": 1, - "value": "\",\ncurrentTime : \"" + "offset": 1123, + "length": 13, + "value": "\"enableOgtag\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 31107, - "length": 3949, - "value": "\"\"" + "offset": 1177, + "length": 23, + "value": "\"enableTypingIndicator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31485, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", + "kind": "StringLiteral", + "offset": 1235, + "length": 17, + "value": "\"enableReactions\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31792, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 15, + "value": "\"enableMention\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 32562, - "length": 42, - "value": "\"[Request] Message change logs with token\"" + "offset": 1338, + "length": 20, + "value": "\"enableVoiceMessage\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 32827, - "length": 59, - "value": "\"[Request] Message change logs with last updated timestamp\"" + "offset": 1123, + "length": 13, + "value": "\"enableOgtag\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 33381, - "length": 76, - "value": "\"[Request] Changelog added message list from : \"" + "offset": 1177, + "length": 23, + "value": "\"enableTypingIndicator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 33456, - "length": 2, - "value": "\"\"" + "offset": 1235, + "length": 17, + "value": "\"enableReactions\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "IntegerLiteral", - "offset": 33626, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 15, + "value": "\"enableMention\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 33727, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", + "kind": "StringLiteral", + "offset": 1338, + "length": 20, + "value": "\"enableVoiceMessage\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 34189, - "length": 51, - "value": "\"Changelog added message list request is not valid\"" + "offset": 1573, + "length": 23, + "value": "\"enableTypingIndicator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 34375, - "length": 55, - "value": "\"[Changelog added response] \"" + "offset": 1642, + "length": 28, + "value": "\"enableMessageReceiptStatus\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 34420, - "length": 8, - "value": "\" messages\"" + "offset": 1573, + "length": 23, + "value": "\"enableTypingIndicator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 35066, - "length": 123, - "value": "\"[Failed] Message change logs request:\n\"" + "offset": 1642, + "length": 28, + "value": "\"enableMessageReceiptStatus\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 35169, - "length": 181, - "value": "\"\"" + "offset": 1802, + "length": 21, + "value": "\"enableMessageSearch\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 35300, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", + "kind": "StringLiteral", + "offset": 1802, + "length": 21, + "value": "\"enableMessageSearch\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 35364, - "length": 209, - "value": "\"[Response]\n\"" + "offset": 1946, + "length": 13, + "value": "\"enableOgtag\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 35420, - "length": 21, - "value": "\"%d updated messages\"" + "offset": 1946, + "length": 13, + "value": "\"enableOgtag\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "kind": "Array", + "offset": 1962, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 35472, - "length": 1, - "value": "\",\n\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "kind": "Dictionary", + "offset": 2342, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 35503, - "length": 21, - "value": "\"%d deleted messages\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "kind": "Dictionary", + "offset": 2471, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", "kind": "IntegerLiteral", - "offset": 35554, + "offset": 2748, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", "kind": "StringLiteral", - "offset": 35557, - "length": 22044, + "offset": 2816, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 35892, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 36490, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "kind": "StringLiteral", + "offset": 2860, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", "kind": "BooleanLiteral", - "offset": 37202, + "offset": 2958, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 37299, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 37503, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 37973, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 38059, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 38094, - "length": 95, - "value": "\"Loaded added messages : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 38141, - "length": 1, - "value": "\", hasNext : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", "kind": "StringLiteral", - "offset": 38188, + "offset": 6588, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 38398, - "length": 24, - "value": "\"[Request] Start typing\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 38605, - "length": 22, - "value": "\"[Request] End typing\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "IntegerLiteral", - "offset": 39547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 39552, - "length": 1, + "offset": 418, + "length": 9, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 40172, - "length": 1, - "value": "0" + "offset": 418, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 40989, - "length": 1, - "value": "0" + "offset": 418, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 40994, - "length": 1, + "offset": 802, + "length": 7, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 41144, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 42019, - "length": 42, - "value": "\"Couldn't retrieve thread list.: \"" + "offset": 819, + "length": 13, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 42060, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 842, + "length": 10, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42096, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 862, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42163, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 878, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42188, - "length": 5, - "value": "false" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 42277, - "length": 41, - "value": "\"Response of retrieve thread list is nil\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 802, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42353, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 819, + "length": 13, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42378, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 842, + "length": 10, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42418, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 862, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42778, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 878, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 43003, - "length": 5, - "value": "false" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 43288, - "length": 1, - "value": "0" + "offset": 802, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 43449, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 43841, - "length": 4, - "value": "true" + "offset": 819, + "length": 13, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 1722, - "length": 25, - "value": "\"SendbirdUIKit.SBUMessageThreadViewModel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 842, + "length": 10, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 45468, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 862, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 45511, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 878, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 45541, - "length": 5, - "value": "false" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", "kind": "BooleanLiteral", - "offset": 45939, + "offset": 13501, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 46258, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", "kind": "StringLiteral", - "offset": 46562, - "length": 32, - "value": "\"Did update message: \"" + "offset": 1232, + "length": 30, + "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", "kind": "StringLiteral", - "offset": 46593, - "length": 2, - "value": "\"\"" + "offset": 1232, + "length": 30, + "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", "kind": "StringLiteral", - "offset": 46790, - "length": 32, - "value": "\"Did update message: \"" + "offset": 1232, + "length": 30, + "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 46821, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "kind": "IntegerLiteral", + "offset": 2196, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 46895, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "kind": "IntegerLiteral", + "offset": 2218, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 47824, - "length": 63, - "value": "\"Did update message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "kind": "FloatLiteral", + "offset": 2293, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 47886, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "kind": "IntegerLiteral", + "offset": 2322, "length": 2, - "value": "\"\"" + "value": "50" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", "kind": "StringLiteral", - "offset": 48494, - "length": 48, - "value": "\"Did update message: \"" + "offset": 809, + "length": 21, + "value": "\"SendbirdUIKit.SBUFileViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 48541, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "kind": "IntegerLiteral", + "offset": 521, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 48749, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "kind": "IntegerLiteral", + "offset": 527, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 49139, - "length": 35, - "value": "\"Message was deleted: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "kind": "IntegerLiteral", + "offset": 537, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 49173, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "kind": "IntegerLiteral", + "offset": 548, "length": 2, - "value": "\"\"" + "value": "76" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 49497, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "kind": "IntegerLiteral", + "offset": 882, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", "kind": "StringLiteral", - "offset": 49826, - "length": 55, - "value": "\"Channel was changed, ChannelURL:\"" + "offset": 213, + "length": 26, + "value": "\"SendbirdUIKit.SBUMenuSheetViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 49880, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 331, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 50328, - "length": 54, - "value": "\"Channel was frozen, ChannelURL:\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 50381, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 50830, - "length": 56, - "value": "\"Channel was unfrozen, ChannelURL:\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 331, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 50885, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 51363, - "length": 16, - "value": "\"You are muted.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 51851, - "length": 18, - "value": "\"You are unmuted.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 331, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 52718, - "length": 17, - "value": "\"You are banned.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 54746, - "length": 53, - "value": "\"messageCollection addedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 54798, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 55418, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 530, + "length": 19, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 55486, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 559, + "length": 19, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 55845, - "length": 55, - "value": "\"messageCollection updatedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 588, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 55899, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 15, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 56441, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 629, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 56730, - "length": 55, - "value": "\"messageCollection deletedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 56784, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 530, + "length": 19, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 57312, - "length": 34, - "value": "\"messageCollection changedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 559, + "length": 19, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 57570, - "length": 34, - "value": "\"messageCollection deletedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 588, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.Header.swift", - "kind": "StringLiteral", - "offset": 6460, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 15, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "Array", - "offset": 1083, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 629, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "StringLiteral", - "offset": 1925, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "StringLiteral", - "offset": 3020, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 530, + "length": 19, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "BooleanLiteral", - "offset": 3963, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 559, + "length": 19, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", "kind": "IntegerLiteral", - "offset": 4083, - "length": 1, - "value": "0" + "offset": 588, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", "kind": "IntegerLiteral", - "offset": 4093, - "length": 1, - "value": "0" + "offset": 604, + "length": 15, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", "kind": "IntegerLiteral", - "offset": 4101, - "length": 1, - "value": "0" + "offset": 629, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", "kind": "IntegerLiteral", - "offset": 4112, + "offset": 2548, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", "kind": "StringLiteral", - "offset": 5943, - "length": 22, - "value": "\"Not a group channel.\"" + "offset": 2089, + "length": 16, + "value": "\"SendbirdUIKit.SBUVoiceRecorder\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 6322, + "offset": 739, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 6412, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "StringLiteral", - "offset": 6691, - "length": 37, - "value": "\"Did receive error: \"" + "offset": 778, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "StringLiteral", - "offset": 6724, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", + "kind": "IntegerLiteral", + "offset": 811, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", "kind": "StringLiteral", - "offset": 6727, - "length": 2, - "value": "\"\"" + "offset": 200, + "length": 24, + "value": "\"SendbirdUIKit.SBUFileMessageCellParams\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "BooleanLiteral", - "offset": 8441, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUTheme.Deprecated.swift", + "kind": "FloatLiteral", + "offset": 20612, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "BooleanLiteral", - "offset": 9457, - "length": 5, - "value": "false" + "value": "0.64" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", "kind": "StringLiteral", - "offset": 9512, + "offset": 341, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Deprecated.swift", - "kind": "StringLiteral", - "offset": 3900, - "length": 26, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 20, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Deprecated.swift", - "kind": "StringLiteral", - "offset": 3921, - "length": 4, - "value": "\"Cell\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 340, + "length": 17, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 1248, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 367, "length": 4, - "value": "true" + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2952, - "length": 10, - "value": "1" + "offset": 381, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2972, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3234, - "length": 13, - "value": "\"quote_reply\"" + "offset": 396, + "length": 17, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3234, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 423, "length": 13, - "value": "\"quote_reply\"" + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3882, - "length": 28, - "value": "\"Cannot decode SBUReplyType\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 20, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 4330, - "length": 28, - "value": "\"Cannot decode SBUReplyType\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 340, + "length": 17, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2952, - "length": 10, - "value": "1" + "offset": 367, + "length": 4, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2972, - "length": 6, - "value": "2" + "offset": 381, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2952, - "length": 10, - "value": "1" + "offset": 396, + "length": 17, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2972, - "length": 6, - "value": "2" + "offset": 423, + "length": 13, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4622, - "length": 6, + "offset": 310, + "length": 20, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4705, - "length": 6, + "offset": 340, + "length": 17, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 5453, - "length": 40, - "value": "\"Cannot decode SBUThreadReplySelectType\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 367, + "length": 4, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 5999, - "length": 40, - "value": "\"Cannot decode SBUThreadReplySelectType\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 381, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4622, - "length": 6, - "value": "1" + "offset": 396, + "length": 17, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4705, - "length": 6, - "value": "2" + "offset": 423, + "length": 13, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4622, - "length": 6, + "offset": 1964, + "length": 8, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4705, - "length": 6, + "offset": 1986, + "length": 7, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2202, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2007, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2624, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2027, + "length": 7, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2903, - "length": 67, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 1964, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2949, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 1986, + "length": 7, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2969, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2007, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3830, - "length": 67, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2027, + "length": 7, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3876, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 1964, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3896, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 1986, + "length": 7, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4841, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2007, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 4968, - "length": 47, - "value": "\"[Request] Load channel: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2027, + "length": 7, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5014, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 3640, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "StringLiteral", - "offset": 5498, - "length": 69, - "value": "\"[Succeed] Load channel request: \"" + "offset": 1767, + "length": 14, + "value": "\"SendbirdUIKit.SBUVoicePlayer\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5566, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 3124, "length": 2, - "value": "\"\"" + "value": "30" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "Array", - "offset": 6336, + "offset": 3644, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6472, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 3978, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 6859, - "length": 4, - "value": "true" + "offset": 4930, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7637, - "length": 62, - "value": "\"[Failed] Load channel request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5768, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7698, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5816, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 8077, - "length": 4, - "value": "true" + "offset": 5862, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 8176, - "length": 4, - "value": "true" + "offset": 5903, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 8233, + "offset": 6087, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 8462, + "offset": 6886, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 8494, - "length": 4, - "value": "true" + "offset": 23263, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8892, - "length": 187, - "value": "\"loadInitialMessages,\nstartingPoint : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4116, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8993, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4129, "length": 1, - "value": "\",\ninitialMessages : \"" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9063, - "length": 16761, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4212, + "length": 2, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9785, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4226, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", "kind": "BooleanLiteral", - "offset": 9918, - "length": 5, - "value": "false" + "offset": 4285, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4445, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", "kind": "BooleanLiteral", - "offset": 10098, + "offset": 4512, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "StringLiteral", + "offset": 4597, + "length": 13, + "value": "\"searchField\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4752, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", "kind": "BooleanLiteral", - "offset": 10171, + "offset": 4806, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUUser.swift", "kind": "BooleanLiteral", - "offset": 10684, + "offset": 652, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUUser.swift", "kind": "BooleanLiteral", - "offset": 10905, + "offset": 771, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUUser.swift", "kind": "BooleanLiteral", - "offset": 10989, + "offset": 1887, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUUser.swift", "kind": "BooleanLiteral", - "offset": 11356, + "offset": 1910, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11437, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUUser.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 7, + "value": "\"SendbirdUIKit.SBUUser\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "Array", - "offset": 11582, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 3145, "length": 2, - "value": "[]" + "value": "30" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "Array", - "offset": 11656, + "offset": 3673, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "IntegerLiteral", - "offset": 11876, + "offset": 4007, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12605, - "length": 30, - "value": "\"Prev message already loading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12695, - "length": 29, - "value": "\"[Request] Prev message list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13043, + "offset": 4959, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13201, - "length": 52, - "value": "\"[Prev message response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13243, - "length": 8, - "value": "\" messages\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5802, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13460, + "offset": 5850, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13550, - "length": 4, - "value": "true" + "offset": 5896, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13745, - "length": 30, - "value": "\"Next message already loading\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5937, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13913, - "length": 4, - "value": "true" + "offset": 6121, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 14141, + "offset": 6524, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 14274, + "offset": 21496, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "StringLiteral", - "offset": 14413, - "length": 52, - "value": "\"[Next message Response] \"" + "offset": 3040, + "length": 35, + "value": "\"SendbirdUIKit.SBUFeedNotificationChannelViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 8, - "value": "\" messages\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", + "kind": "Dictionary", + "offset": 816, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", "kind": "BooleanLiteral", - "offset": 14672, + "offset": 1750, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "FloatLiteral", + "offset": 74139, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "FloatLiteral", + "offset": 74904, "length": 4, - "value": "true" + "value": "0.64" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14761, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "FloatLiteral", + "offset": 98715, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "FloatLiteral", + "offset": 134016, "length": 4, - "value": "true" + "value": "0.12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15483, - "length": 24, - "value": "\"[Request] Start typing\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 174213, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15682, - "length": 22, - "value": "\"[Request] End typing\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 174933, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 16624, - "length": 1, - "value": "0" + "offset": 176623, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 16629, - "length": 1, - "value": "1" + "offset": 176858, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 17248, - "length": 1, - "value": "0" + "offset": 177639, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 18020, - "length": 1, - "value": "0" + "offset": 178153, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 18025, + "offset": 180088, "length": 1, - "value": "1" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 18175, - "length": 1, - "value": "0" + "offset": 180267, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19343, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 180432, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "StringLiteral", - "offset": 1303, - "length": 24, - "value": "\"SendbirdUIKit.SBUGroupChannelViewModel\"" + "offset": 180668, + "length": 11, + "value": "\"#e0000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20019, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "StringLiteral", + "offset": 180735, + "length": 11, + "value": "\"#70000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20319, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "StringLiteral", + "offset": 180800, + "length": 11, + "value": "\"#e0000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20540, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 181620, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20634, - "length": 53, - "value": "\"messageCollection addedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 181814, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20686, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 182181, "length": 2, - "value": "\"\"" + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21005, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "StringLiteral", + "offset": 182686, + "length": 11, + "value": "\"#e0000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21086, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "StringLiteral", + "offset": 182752, + "length": 11, + "value": "\"#70000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21495, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "StringLiteral", + "offset": 182825, + "length": 11, + "value": "\"#e0000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", "kind": "BooleanLiteral", - "offset": 21795, + "offset": 364, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", "kind": "BooleanLiteral", - "offset": 22016, + "offset": 574, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22118, - "length": 55, - "value": "\"messageCollection updatedMessages : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22172, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 343, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22351, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 349, "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22468, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 356, + "length": 3, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22499, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 343, "length": 4, - "value": "true" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22782, - "length": 55, - "value": "\"messageCollection deletedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 5, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22836, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 356, + "length": 3, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23013, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 343, "length": 4, - "value": "true" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23234, - "length": 34, - "value": "\"messageCollection changedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 5, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23581, - "length": 34, - "value": "\"messageCollection deletedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 356, + "length": 3, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23809, - "length": 36, - "value": "\"messageCollection didDetectHugeGap\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "FloatLiteral", + "offset": 609, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "IntegerLiteral", - "offset": 24151, - "length": 1, - "value": "0" + "offset": 702, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "IntegerLiteral", - "offset": 24230, + "offset": 753, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "IntegerLiteral", - "offset": 24240, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24500, - "length": 5, - "value": "false" + "offset": 872, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25449, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "kind": "IntegerLiteral", + "offset": 918, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25475, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "kind": "IntegerLiteral", + "offset": 968, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 1984, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "kind": "IntegerLiteral", + "offset": 1017, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "StringLiteral", - "offset": 2479, + "offset": 1076, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 4140, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 4566, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 5248, + "offset": 1317, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 7814, + "offset": 1373, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 8186, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 8236, - "length": 4, - "value": "true" + "offset": 1414, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 8478, - "length": 4, - "value": "true" + "offset": 1450, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 8585, + "offset": 1488, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "IntegerLiteral", - "offset": 339, - "length": 2, - "value": "16" + "offset": 1606, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 432, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "kind": "BooleanLiteral", + "offset": 1831, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 570, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "kind": "BooleanLiteral", + "offset": 2097, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 1183, + "offset": 2601, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3022, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 240, + "length": 13, + "value": "\"E, MMM yyyy\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3036, - "length": 3, - "value": "-16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 288, + "length": 14, + "value": "\"MMM dd, yyyy\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3046, - "length": 2, - "value": "13" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 334, + "length": 11, + "value": "\"E, MMM dd\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3058, - "length": 2, - "value": "12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 376, + "length": 8, + "value": "\"MMM dd\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3135, - "length": 2, - "value": "31" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 9, + "value": "\"hh:mm a\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3208, - "length": 2, - "value": "51" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 7, + "value": "\"hh:mm\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3273, - "length": 2, - "value": "24" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 495, + "length": 12, + "value": "\"yyyy\/MM\/dd\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3285, - "length": 2, - "value": "24" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 545, + "length": 14, + "value": "\"yyyyMMddhhmm\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3421, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 599, + "length": 16, + "value": "\"yyyyMMddhhmmss\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3435, - "length": 3, - "value": "-16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 651, + "length": 16, + "value": "\"MMM dd hh:mm a\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "FloatLiteral", - "offset": 3448, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 707, + "length": 22, + "value": "\"MMM dd, yyyy hh:mm a\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "FloatLiteral", - "offset": 3502, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "kind": "IntegerLiteral", + "offset": 1245, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 4344, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "kind": "IntegerLiteral", + "offset": 1284, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 4894, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 889, "length": 4, - "value": "true" + "value": "1000" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 4939, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 939, + "length": 6, + "value": "600000" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 4989, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 1076, "length": 5, - "value": "false" + "value": "11025" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 5041, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 1118, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 5327, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 1222, "length": 5, - "value": "false" + "value": "12000" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SendbirdUI.swift", "kind": "BooleanLiteral", - "offset": 5384, + "offset": 527, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SendbirdUI.swift", "kind": "BooleanLiteral", - "offset": 5431, + "offset": 17687, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SendbirdUI.swift", "kind": "BooleanLiteral", - "offset": 5482, + "offset": 21316, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 1007, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 1239, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 2170, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 2572, - "length": 1, - "value": "8" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SendbirdUI.swift", + "kind": "BooleanLiteral", + "offset": 22637, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", "kind": "IntegerLiteral", - "offset": 5125, + "offset": 1674, "length": 2, - "value": "18" + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", "kind": "IntegerLiteral", - "offset": 5137, + "offset": 1900, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", "kind": "IntegerLiteral", - "offset": 5223, + "offset": 1922, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5295, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "kind": "BooleanLiteral", + "offset": 3054, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5306, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "80.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", "kind": "IntegerLiteral", - "offset": 5375, - "length": 1, - "value": "0" + "offset": 3175, + "length": 2, + "value": "46" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", "kind": "IntegerLiteral", - "offset": 5386, - "length": 1, - "value": "0" + "offset": 3187, + "length": 2, + "value": "46" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", "kind": "IntegerLiteral", - "offset": 5478, + "offset": 713, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", "kind": "IntegerLiteral", - "offset": 5491, + "offset": 719, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", "kind": "IntegerLiteral", - "offset": 5499, + "offset": 729, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5510, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "kind": "FloatLiteral", + "offset": 740, + "length": 3, + "value": "0.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5588, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "kind": "Array", + "offset": 930, "length": 2, - "value": "32" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5600, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "kind": "Array", + "offset": 968, "length": 2, - "value": "32" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5677, - "length": 2, - "value": "32" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "kind": "StringLiteral", + "offset": 228, + "length": 26, + "value": "\"SendbirdUIKit.SBUReactionsViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", "kind": "IntegerLiteral", - "offset": 5689, - "length": 2, - "value": "32" + "offset": 2041, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", "kind": "BooleanLiteral", - "offset": 6857, + "offset": 2772, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9742, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "kind": "BooleanLiteral", + "offset": 2824, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", "kind": "IntegerLiteral", - "offset": 9767, + "offset": 2943, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9793, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "kind": "BooleanLiteral", + "offset": 3088, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", "kind": "IntegerLiteral", - "offset": 9742, + "offset": 3576, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9767, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "kind": "BooleanLiteral", + "offset": 12651, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9793, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "kind": "StringLiteral", + "offset": 1722, + "length": 25, + "value": "\"SendbirdUIKit.SBUMessageThreadViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9742, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "BooleanLiteral", + "offset": 1248, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 9767, - "length": 1, + "offset": 2952, + "length": 10, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 9793, - "length": 1, + "offset": 2972, + "length": 6, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "StringLiteral", - "offset": 3612, - "length": 2, - "value": "\"\"" + "offset": 3234, + "length": 13, + "value": "\"quote_reply\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "FloatLiteral", - "offset": 744, - "length": 4, - "value": "34.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "StringLiteral", + "offset": 3234, + "length": 13, + "value": "\"quote_reply\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 823, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 2952, + "length": 10, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 1226, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 2972, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1273, - "length": 1, - "value": "0" + "offset": 2952, + "length": 10, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1279, - "length": 1, - "value": "0" + "offset": 2972, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1450, - "length": 1, - "value": "0" + "offset": 4622, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1456, - "length": 1, - "value": "0" + "offset": 4705, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1466, - "length": 1, - "value": "6" + "offset": 4622, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1477, - "length": 1, - "value": "6" + "offset": 4705, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 4622, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 4705, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 1693, + "offset": 2202, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 2172, + "offset": 2624, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2490, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "kind": "StringLiteral", + "offset": 1303, + "length": 24, + "value": "\"SendbirdUIKit.SBUGroupChannelViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", "kind": "IntegerLiteral", - "offset": 2581, - "length": 1, - "value": "0" + "offset": 339, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", "kind": "IntegerLiteral", - "offset": 2674, - "length": 1, - "value": "0" + "offset": 432, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", "kind": "IntegerLiteral", - "offset": 2769, + "offset": 570, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", "kind": "BooleanLiteral", - "offset": 2896, + "offset": 1183, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3038, + "offset": 1007, "length": 1, - "value": "5" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3307, + "offset": 1239, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 3398, - "length": 5, - "value": "false" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3572, + "offset": 2170, "length": 1, "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "FloatLiteral", - "offset": 3724, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3875, + "offset": 2572, "length": 1, - "value": "5" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 4003, + "offset": 9742, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 4095, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 4170, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "FloatLiteral", - "offset": 4347, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "FloatLiteral", - "offset": 4500, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 4589, - "length": 2, - "value": "12" + "offset": 9767, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 5253, + "offset": 9793, "length": 1, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 5325, + "offset": 9742, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 5437, + "offset": 9767, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "StringLiteral", - "offset": 5633, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "StringLiteral", - "offset": 6488, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 6746, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 6758, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 7348, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 7458, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 7553, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 7565, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 7619, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 7746, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7758, - "length": 2, - "value": "40" + "offset": 9793, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7809, + "offset": 9742, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7991, - "length": 2, - "value": "40" + "offset": 9767, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 8003, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 8580, - "length": 5, - "value": "false" + "offset": 9793, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 8942, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "kind": "FloatLiteral", + "offset": 744, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "StringLiteral", - "offset": 8991, - "length": 2, - "value": "\"\"" + "value": "34.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", "kind": "BooleanLiteral", - "offset": 9372, + "offset": 823, "length": 5, "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 10091, - "length": 6, - "value": "100000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 2845, - "length": 2, - "value": "\"\"" } ] } \ No newline at end of file diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface index 85428ac6b..1726dc33e 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) +// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name SendbirdUIKit // swift-module-flags-ignorable: -enable-bare-slash-regex import AVFAudio @@ -83,9 +83,9 @@ import simd @_Concurrency.MainActor(unsafe) public var stackView: SendbirdUIKit.SBUStackView @_Concurrency.MainActor(unsafe) public var fileImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var fileNameLabel: UIKit.UILabel - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with fileType: Swift.String, fileName: Swift.String, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) open func configure(with messageFileType: SendbirdUIKit.SBUMessageFileType, fileName: Swift.String, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) open func addHighlight(keyword: Swift.String, toAttributedString attributedString: Foundation.NSMutableAttributedString, highlightTextColor: UIKit.UIColor) @@ -134,8 +134,8 @@ extension SendbirdUIKit.SBUBaseChannelModule { @objc @_Concurrency.MainActor(unsafe) public var newMessageInfoView: UIKit.UIView? @objc @_Concurrency.MainActor(unsafe) public var scrollBottomView: UIKit.UIView? @objc @_Concurrency.MainActor(unsafe) public var userProfileView: UIKit.UIView? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelModuleListDataSource? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get @@ -206,8 +206,8 @@ extension SendbirdUIKit.SBUConfig { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } @objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUBaseMessageCell : SendbirdUIKit.SBUTableViewCell, SendbirdUIKit.SBUMessageCellProtocol { @@ -251,7 +251,7 @@ public protocol SBUOpenChannelListModuleHeaderDelegate : SendbirdUIKit.SBUBaseCh extension SendbirdUIKit.SBUOpenChannelListModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelListModule.Header { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUOpenChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate? { get set } @@ -260,7 +260,7 @@ extension SendbirdUIKit.SBUOpenChannelListModule { @available(*, unavailable, renamed: "SBUOpenChannelListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUOpenChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUOpenChannelListTheme) @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUOpenChannelListTheme? = nil) } } @@ -273,7 +273,7 @@ public protocol SBUCommonDelegate : AnyObject { @objc deinit } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUParentMessageInfoReactionView : SendbirdUIKit.SBUMessageReactionView { - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(maxWidth: CoreFoundation.CGFloat, useReaction: Swift.Bool, reactions: [SendbirdChatSDK.Reaction]) @_Concurrency.MainActor(unsafe) override open func getCellSize(count: Swift.Int) -> CoreFoundation.CGSize @_Concurrency.MainActor(unsafe) @objc override open func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int @@ -299,8 +299,8 @@ extension SendbirdUIKit.SBUMessageSearchModule { } @objc @_Concurrency.MainActor(unsafe) public var resultCell: SendbirdUIKit.SBUMessageSearchResultCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageSearchTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageSearchModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageSearchModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageSearchModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageSearchModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var resultList: [SendbirdChatSDK.BaseMessage] { @objc get } @@ -309,7 +309,7 @@ extension SendbirdUIKit.SBUMessageSearchModule { @available(*, unavailable, renamed: "SBUMessageSearchModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageSearchModuleListDelegate, dataSource: any SendbirdUIKit.SBUMessageSearchModuleListDataSource, theme: SendbirdUIKit.SBUMessageSearchTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageSearchModuleListDelegate, dataSource: SendbirdUIKit.SBUMessageSearchModuleListDataSource, theme: SendbirdUIKit.SBUMessageSearchTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageSearchTheme? = nil) @@ -349,18 +349,18 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageThreadModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? + @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? @objc @_Concurrency.MainActor(unsafe) public var mentionManager: SendbirdUIKit.SBUMentionManager? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleInputDelegate, dataSource: any SendbirdUIKit.SBUMessageThreadModuleInputDataSource, parentMessage: SendbirdChatSDK.BaseMessage?, mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleInputDelegate, dataSource: SendbirdUIKit.SBUMessageThreadModuleInputDataSource, parentMessage: SendbirdChatSDK.BaseMessage?, mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -407,11 +407,11 @@ public protocol SBUGroupChannelModuleHeaderDelegate : SendbirdUIKit.SBUBaseChann } extension SendbirdUIKit.SBUGroupChannelModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func onTapLeftBarButton() @_Concurrency.MainActor(unsafe) @objc override open func onTapRightBarButton() @@ -557,11 +557,11 @@ public protocol SBUGroupChannelSettingsViewModelDelegate : SendbirdUIKit.SBUBase @available(*, deprecated, renamed: "SBUGroupChannelSettingsViewModel") public typealias SBUChannelSettingsViewModel = SendbirdUIKit.SBUGroupChannelSettingsViewModel @objc open class SBUGroupChannelSettingsViewModel : SendbirdUIKit.SBUBaseChannelSettingsViewModel { - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String?) override public func updateChannel(channelName: Swift.String? = nil, coverImage: UIKit.UIImage? = nil) @@ -594,15 +594,15 @@ public protocol SBURegisterOperatorViewModelDelegate : SendbirdUIKit.SBUBaseSele public protocol SBURegisterOperatorViewModelDataSource : SendbirdUIKit.SBUBaseSelectUserViewModelDataSource { } @objc open class SBURegisterOperatorViewModel : SendbirdUIKit.SBUBaseSelectUserViewModel { - weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBURegisterOperatorViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBURegisterOperatorViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: (any SendbirdUIKit.SBURegisterOperatorViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBURegisterOperatorViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: SendbirdUIKit.SBURegisterOperatorViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBURegisterOperatorViewModelDataSource? = nil) public func registerAsOperators() public func registerAsOperators(users: [SendbirdUIKit.SBUUser]) public func registerAsOperators(userIds: [Swift.String]) @@ -635,15 +635,15 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.OpenChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleInputDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelModuleInputDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleInputDelegate, dataSource: SendbirdUIKit.SBUOpenChannelModuleInputDataSource, theme: SendbirdUIKit.SBUChannelTheme) @objc @_Concurrency.MainActor(unsafe) open func updateStyles(overlaid: Swift.Bool = false) @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @_Concurrency.MainActor(unsafe) @objc override open func pickVideoFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -677,8 +677,8 @@ extension SendbirdUIKit.SBUBaseSelectUserModule { } @objc @_Concurrency.MainActor(unsafe) public var userCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseSelectUserModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseSelectUserModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseSelectUserModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseSelectUserModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var userList: [SendbirdUIKit.SBUUser]? { @objc get } @@ -713,15 +713,15 @@ public protocol SBUInviteUserViewModelDelegate : SendbirdUIKit.SBUBaseSelectUser public protocol SBUInviteUserViewModelDataSource : SendbirdUIKit.SBUBaseSelectUserViewModelDataSource { } @objc open class SBUInviteUserViewModel : SendbirdUIKit.SBUBaseSelectUserViewModel { - weak public var delegate: (any SendbirdUIKit.SBUInviteUserViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUInviteUserViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUInviteUserViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUInviteUserViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: (any SendbirdUIKit.SBUInviteUserViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUInviteUserViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: SendbirdUIKit.SBUInviteUserViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUInviteUserViewModelDataSource? = nil) public func inviteUsers() public func invite(users: [SendbirdUIKit.SBUUser]) public func invite(userIds: [Swift.String]) @@ -737,9 +737,9 @@ public protocol SBUInviteUserViewModelDataSource : SendbirdUIKit.SBUBaseSelectUs get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(timestamp: Swift.Int64) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -754,11 +754,11 @@ public protocol SBURegisterOperatorModuleListDataSource : SendbirdUIKit.SBUBaseS } extension SendbirdUIKit.SBURegisterOperatorModule { @_inheritsConvenienceInitializers @objc(SBURegisterOperatorModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBURegisterOperatorModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBURegisterOperatorModuleListDataSource? { get set } @@ -767,7 +767,7 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @available(*, unavailable, renamed: "SBURegisterOperatorModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBURegisterOperatorModuleListDelegate, dataSource: any SendbirdUIKit.SBURegisterOperatorModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBURegisterOperatorModuleListDelegate, dataSource: SendbirdUIKit.SBURegisterOperatorModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } @@ -791,29 +791,27 @@ open class SBUModerationsViewModel { public var channelType: SendbirdChatSDK.ChannelType { get } - public init(channel: SendbirdChatSDK.BaseChannel, delegate: (any SendbirdUIKit.SBUModerationsViewModelDelegate)? = nil) - public init(channelURL: Swift.String, channelType: SendbirdChatSDK.ChannelType, delegate: (any SendbirdUIKit.SBUModerationsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel, delegate: SendbirdUIKit.SBUModerationsViewModelDelegate? = nil) + public init(channelURL: Swift.String, channelType: SendbirdChatSDK.ChannelType, delegate: SendbirdUIKit.SBUModerationsViewModelDelegate? = nil) public func loadChannel(channelURL: Swift.String) public func freezeChannel(_ completionHandler: ((Swift.Bool) -> Swift.Void)? = nil) public func unfreezeChannel(_ completionHandler: ((Swift.Bool) -> Swift.Void)? = nil) @objc deinit } -@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUView : UIKit.UIView { +@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUView : UIKit.UIView, SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) @objc dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "init(frame:)") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() @objc deinit } -extension SendbirdUIKit.SBUView : SendbirdUIKit.SBUViewLifeCycle { - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupActions() -} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUMessageReactionView : SendbirdUIKit.SBUView, UIKit.UICollectionViewDelegate, UIKit.UICollectionViewDataSource, UIKit.UICollectionViewDelegateFlowLayout { @_Concurrency.MainActor(unsafe) public var collectionView: UIKit.UICollectionView { get @@ -839,9 +837,9 @@ extension SendbirdUIKit.SBUView : SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "MessageReactionView()") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func hasMoreEmoji(at indexPath: Foundation.IndexPath) -> Swift.Bool @_Concurrency.MainActor(unsafe) open func configure(maxWidth: CoreFoundation.CGFloat, useReaction: Swift.Bool, reactions: [SendbirdChatSDK.Reaction]) @_Concurrency.MainActor(unsafe) open func getCellSize(count: Swift.Int) -> CoreFoundation.CGSize @@ -926,11 +924,11 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var fileMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? @objc @_Concurrency.MainActor(unsafe) public var unknownMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? @objc @_Concurrency.MainActor(unsafe) public var customMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelModuleListDataSource? { get set } @@ -940,7 +938,7 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var isOverlaid: Swift.Bool { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @objc @_Concurrency.MainActor(unsafe) open func updateLayouts() @@ -996,9 +994,9 @@ extension SendbirdUIKit.SBUOpenChannelModule { get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?) @objc deinit @@ -1021,8 +1019,8 @@ extension SendbirdUIKit.SBUBaseChannelListModule { } @objc @_Concurrency.MainActor(unsafe) public var channelCell: SendbirdUIKit.SBUBaseChannelCell? @objc @_Concurrency.MainActor(unsafe) public var customCell: SendbirdUIKit.SBUBaseChannelCell? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelListModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelListModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelListModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelListModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannelList: [SendbirdChatSDK.BaseChannel]? { @objc get } @@ -1120,11 +1118,11 @@ public protocol SBUCreateChannelModuleHeaderDataSource : SendbirdUIKit.SBUBaseSe } extension SendbirdUIKit.SBUCreateChannelModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource? { get set } @@ -1133,7 +1131,7 @@ extension SendbirdUIKit.SBUCreateChannelModule { @available(*, unavailable, renamed: "SBUCreateChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -1147,7 +1145,7 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUEmptyView : SendbirdUIKit.SBUView { @_Concurrency.MainActor(unsafe) public var type: SendbirdUIKit.EmptyViewType - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUEmptyViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUEmptyViewDelegate? @_Concurrency.MainActor(unsafe) public var statusImageView: UIKit.UIImageView { get set @@ -1173,10 +1171,10 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { @available(*, unavailable, renamed: "SBUEmptyView.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateTopAnchorConstraint(constant: CoreFoundation.CGFloat) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func reloadData(_ type: SendbirdUIKit.EmptyViewType) @_Concurrency.MainActor(unsafe) open func updateViews() @objc @_Concurrency.MainActor(unsafe) open func onClickRetry(_ sender: Any) @@ -1188,8 +1186,8 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { public var openChannel: SendbirdUIKit.SBUConfig.OpenChannel @objc override dynamic public init() @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } open class SBUGroupChannelSettingsModule { public static var HeaderComponent: SendbirdUIKit.SBUGroupChannelSettingsModule.Header.Type @@ -1243,13 +1241,13 @@ extension SendbirdUIKit.SBUChannelInfoHeaderViewDelegate { set _modify } - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUChannelInfoHeaderViewDelegate)?) + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUChannelInfoHeaderViewDelegate?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "SBUChannelInfoHeaderView()") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func setupInfoButtonStyle() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?, description: Swift.String?) @@ -1283,15 +1281,62 @@ public class SBUChatNotificationChannelModule { @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView @_Concurrency.MainActor(unsafe) public var fileImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var fileNameLabel: UIKit.UILabel - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) public func addHighlight(keyword: Swift.String, toAttributedString attributedString: Foundation.NSMutableAttributedString, highlightTextColor: UIKit.UIColor) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit } +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUCardView : SendbirdUIKit.SBUView { + public struct Metric { + public static var maxWidth: Swift.Double + public static var textMinWidth: Swift.Double + public static var imageSize: Swift.Double + } + @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme + @_Concurrency.MainActor(unsafe) public var imageURL: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var title: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var subtitle: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var text: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var link: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUCardViewParams? { + get + } + @_Concurrency.MainActor(unsafe) public var contentStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var mainInfoStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var titleStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var titleLabel: UIKit.UILabel + @_Concurrency.MainActor(unsafe) public var subtitleLabel: UIKit.UILabel + @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView { + get + set + } + @_Concurrency.MainActor(unsafe) public var descriptionTextView: UIKit.UITextView + @_Concurrency.MainActor(unsafe) public var textLeftConstraint: UIKit.NSLayoutConstraint? + @_Concurrency.MainActor(unsafe) public var textRightConstraint: UIKit.NSLayoutConstraint? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupActions() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUCardViewParams) + @objc @_Concurrency.MainActor(unsafe) public func openURL() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @_hasMissingDesignatedInitializers public class SBUColorSet { public static var primary100: UIKit.UIColor public static var primary200: UIKit.UIColor @@ -1521,8 +1566,8 @@ extension SendbirdUIKit.SBUConfig { public var camera: SendbirdUIKit.SBUConfig.BaseInput.Camera public var gallery: SendbirdUIKit.SBUConfig.BaseInput.Gallery @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.BaseInput { @@ -1538,8 +1583,8 @@ extension SendbirdUIKit.SBUConfig.BaseInput { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.BaseInput { @@ -1555,8 +1600,8 @@ extension SendbirdUIKit.SBUConfig.BaseInput { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } open class SBUGroupChannelModule { @@ -1598,11 +1643,11 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -2053,13 +2098,13 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUCreateOpenChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUCreateOpenChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUCreateOpenChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUCreateOpenChannelTheme? = nil) @@ -2085,10 +2130,10 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { } @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupSizeContraint() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) open func setImage(_ image: UIKit.UIImage?, size: CoreFoundation.CGSize? = nil) @_Concurrency.MainActor(unsafe) open func setFileIcon() @@ -2117,12 +2162,12 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc open func setupViews() - @_Concurrency.MainActor(unsafe) @objc open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc open func setupActions() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() @_Concurrency.MainActor(unsafe) open func configure(model: SendbirdUIKit.SBUMessageWebViewModel) @objc deinit } @@ -2305,7 +2350,7 @@ open class SBUMessageSearchViewModel { public var messageSearchQuery: SendbirdChatSDK.MessageSearchQuery? { get } - public init(channel: SendbirdChatSDK.BaseChannel, params: SendbirdChatSDK.MessageSearchQueryParams? = nil, delegate: (any SendbirdUIKit.SBUMessageSearchViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel, params: SendbirdChatSDK.MessageSearchQueryParams? = nil, delegate: SendbirdUIKit.SBUMessageSearchViewModelDelegate? = nil) open func search(keyword: Swift.String) public func search(keyword: Swift.String, query: SendbirdChatSDK.MessageSearchQuery) public func loadMore() @@ -2463,13 +2508,13 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule { @objc @_Concurrency.MainActor(unsafe) open func inviteUserViewModel(_ viewModel: SendbirdUIKit.SBUInviteUserViewModel, didInviteUserIds userIds: [Swift.String]) @_Concurrency.MainActor(unsafe) @objc override open func baseSelectedUserViewModel(_ viewModel: SendbirdUIKit.SBUBaseSelectUserViewModel, didUpdateSelectedUsers selectedUsers: [SendbirdUIKit.SBUUser]?) } -@objc public protocol SBUViewLifeCycle { - @objc func setupViews() - @objc func setupStyles() - @objc func updateStyles() - @objc func setupLayouts() - @objc func updateLayouts() - @objc func setupActions() +public protocol SBUViewLifeCycle { + func setupViews() + func setupStyles() + func updateStyles() + func setupLayouts() + func updateLayouts() + func setupActions() } public typealias SBUNewNotificationInfoHandler = () -> Swift.Void extension SendbirdUIKit.SBUBaseChannelViewController { @@ -2550,11 +2595,11 @@ public protocol SBUOpenChannelSettingsModuleListDataSource : SendbirdUIKit.SBUBa } extension SendbirdUIKit.SBUOpenChannelSettingsModule { @_inheritsConvenienceInitializers @objc(SBUOpenChannelSettingsModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelSettingsModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource? { get set } @@ -2566,7 +2611,7 @@ extension SendbirdUIKit.SBUOpenChannelSettingsModule { @available(*, unavailable, renamed: "SBUOpenChannelSettingsModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupItems() @_Concurrency.MainActor(unsafe) open func createModerationsItem() -> SendbirdUIKit.SBUChannelSettingItem @@ -2632,13 +2677,13 @@ extension SendbirdUIKit.SBUGroupChannelPushSettingsModule { } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUGroupChannelPushSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUGroupChannelPushSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -2671,7 +2716,7 @@ extension SendbirdUIKit.SBUSelectablePhotoViewDelegate { set _modify } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUSelectablePhotoViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUSelectablePhotoViewDelegate? @objc @_Concurrency.MainActor(unsafe) public var fetchResult: Photos.PHFetchResult @objc @_Concurrency.MainActor(unsafe) public var columnSize: CoreFoundation.CGSize { @objc get @@ -2704,11 +2749,11 @@ public protocol SBUOpenChannelSettingsViewModelDelegate : SendbirdUIKit.SBUBaseC func openChannelSettingsViewModel(_ viewModel: SendbirdUIKit.SBUOpenChannelSettingsViewModel, didDeleteChannel channel: SendbirdChatSDK.OpenChannel) } @objc open class SBUOpenChannelSettingsViewModel : SendbirdUIKit.SBUBaseChannelSettingsViewModel { - weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String?) override public func updateChannel(channelName: Swift.String? = nil, coverImage: UIKit.UIImage? = nil) @@ -2747,8 +2792,8 @@ extension SendbirdUIKit.SBUOpenChannelSettingsViewModel : SendbirdChatSDK.OpenCh set } public init(wrappedValue: T) - public init(from decoder: any Swift.Decoder) throws - public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws } public protocol SBUQuoteMessageInputViewProtocol : SendbirdUIKit.SBUViewLifeCycle { func configure(with configuration: SendbirdUIKit.SBUQuoteMessageInputViewParams) @@ -2856,9 +2901,9 @@ extension SendbirdUIKit.SBUBaseChannelViewModel : SendbirdChatSDK.BaseChannelDel public static var descBottomMargin: CoreFoundation.CGFloat public static var stackSpacing: CoreFoundation.CGFloat } - @_Concurrency.MainActor(unsafe) @objc override open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func configure(model: SendbirdUIKit.SBUMessageWebViewModel) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init(coder: Foundation.NSCoder) @@ -2871,12 +2916,12 @@ extension SendbirdUIKit.SBUBaseChannelViewModel : SendbirdChatSDK.BaseChannelDel @objc deinit } extension SendbirdUIKit.SBUTableViewCell : SendbirdUIKit.SBUViewLifeCycle { - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupActions() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupViews() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupLayouts() + @objc @_Concurrency.MainActor(unsafe) dynamic open func updateLayouts() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupStyles() + @objc @_Concurrency.MainActor(unsafe) dynamic open func updateStyles() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupActions() } public protocol SBUMessageCellProtocol { func configure(with configuration: SendbirdUIKit.SBUBaseMessageCellParams) @@ -2992,6 +3037,7 @@ public protocol SBUMessageCellProtocol { @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapQuotedMessageView quotedMessageView: SendbirdUIKit.SBUQuotedBaseMessageView) @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMentionUser user: SendbirdUIKit.SBUUser) @objc @_Concurrency.MainActor(unsafe) open func groupChannelModuleDidTapThreadInfoView(_ threadInfoView: SendbirdUIKit.SBUThreadInfoView) + @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didSelectQuickReplyOption text: Swift.String) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModule(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, didTapVoiceMessage fileMessage: SendbirdChatSDK.FileMessage, cell: UIKit.UITableViewCell, forRowAt indexPath: Foundation.IndexPath) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModuleDidTapScrollToButton(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModule(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, didScroll scrollView: UIKit.UIScrollView) @@ -3015,8 +3061,8 @@ public protocol SBUMessageCellProtocol { @objc @_Concurrency.MainActor(unsafe) open func voiceMessageInputView(_ inputView: SendbirdUIKit.SBUVoiceMessageInputView, didTapSend voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo) } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelCommonContentView : SendbirdUIKit.SBUCommonContentView { - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -3138,11 +3184,11 @@ public protocol SBUGroupChannelListModuleListDataSource : SendbirdUIKit.SBUBaseC extension SendbirdUIKit.SBUGroupChannelListModule { @_inheritsConvenienceInitializers @objc(SBUGroupChannelListModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelListModule.List { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUGroupChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelListModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelListModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelListModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelListModuleListDataSource? { get set } @@ -3154,7 +3200,7 @@ extension SendbirdUIKit.SBUGroupChannelListModule { @available(*, unavailable, renamed: "SBUGroupChannelListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelListModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelListModuleListDataSource, theme: SendbirdUIKit.SBUGroupChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelListModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelListModuleListDataSource, theme: SendbirdUIKit.SBUGroupChannelListTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUGroupChannelListTheme? = nil) @objc @_Concurrency.MainActor(unsafe) public func leaveContextualAction(with indexPath: Foundation.IndexPath) -> UIKit.UIContextualAction? @@ -3190,7 +3236,7 @@ public class SBUAlertButtonItem { @objc deinit } @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class SBUAlertView : ObjectiveC.NSObject { - public static func show(title: Swift.String, message: Swift.String? = nil, needInputField: Swift.Bool = false, placeHolder: Swift.String? = "", centerYRatio: CoreFoundation.CGFloat? = 1.0, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, confirmButtonItem: SendbirdUIKit.SBUAlertButtonItem, cancelButtonItem: SendbirdUIKit.SBUAlertButtonItem?, delegate: (any SendbirdUIKit.SBUAlertViewDelegate)? = nil, dismissHandler: (() -> Swift.Void)? = nil) + public static func show(title: Swift.String, message: Swift.String? = nil, needInputField: Swift.Bool = false, placeHolder: Swift.String? = "", centerYRatio: CoreFoundation.CGFloat? = 1.0, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, confirmButtonItem: SendbirdUIKit.SBUAlertButtonItem, cancelButtonItem: SendbirdUIKit.SBUAlertButtonItem?, delegate: SendbirdUIKit.SBUAlertViewDelegate? = nil, dismissHandler: (() -> Swift.Void)? = nil) public static func dismiss() @objc deinit } @@ -3234,7 +3280,7 @@ public protocol SBUBaseSelectUserViewModelDataSource : AnyObject { public var joinedUserIds: Swift.Set { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, inviteListType: SendbirdUIKit.ChannelInviteListType, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: (any SendbirdUIKit.SBUBaseSelectUserViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUBaseSelectUserViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, inviteListType: SendbirdUIKit.ChannelInviteListType, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: SendbirdUIKit.SBUBaseSelectUserViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUBaseSelectUserViewModelDataSource? = nil) public func loadChannel(channelURL: Swift.String, type: SendbirdChatSDK.ChannelType) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) public func preLoadNextUserList(indexPath: Foundation.IndexPath) @@ -3296,8 +3342,8 @@ extension SendbirdUIKit.SBUBaseChannelModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleInputDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelModuleInputDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleInputDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelModuleInputDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -3344,9 +3390,9 @@ extension SendbirdUIKit.SBUBaseChannelModule { @_Concurrency.MainActor(unsafe) public var position: SendbirdUIKit.MessagePosition @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() @_Concurrency.MainActor(unsafe) public func setAxis(_ axis: UIKit.NSLayoutConstraint.Axis) @_Concurrency.MainActor(unsafe) public func addArrangedSubview(_ view: UIKit.UIView) @_Concurrency.MainActor(unsafe) public func removeArrangedSubview(_ view: UIKit.UIView) @@ -3430,9 +3476,9 @@ extension SendbirdUIKit.SBUBaseChannelModule { get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -3493,8 +3539,8 @@ extension SendbirdUIKit.SBUConfig { public var channel: SendbirdUIKit.SBUConfig.OpenChannel.Channel @objc override dynamic public init() @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.OpenChannel { @@ -3506,13 +3552,13 @@ extension SendbirdUIKit.SBUConfig.OpenChannel { } public var input: SendbirdUIKit.SBUConfig.OpenChannel.Channel.Input @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.OpenChannel.Channel { @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class Input : SendbirdUIKit.SBUConfig.BaseInput { - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } } @@ -3531,16 +3577,16 @@ public protocol SBUSuggestedMentionListDelegate : AnyObject { get } @_Concurrency.MainActor(unsafe) public var isLimitGuideEnabled: Swift.Bool - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUSuggestedMentionListDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUSuggestedMentionListDelegate? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme @_Concurrency.MainActor(unsafe) public var showsUserId: Swift.Bool { get set } @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func register(userCell: UIKit.UITableViewCell, nib: UIKit.UINib? = nil) @_Concurrency.MainActor(unsafe) public func register(limitGuideCell: UIKit.UITableViewCell, nib: UIKit.UINib? = nil) @_Concurrency.MainActor(unsafe) @objc open func tableView(_ tableView: UIKit.UITableView, numberOfRowsInSection section: Swift.Int) -> Swift.Int @@ -3563,8 +3609,8 @@ extension SendbirdUIKit.SBUConfig { public var channelList: SendbirdUIKit.SBUConfig.GroupChannel.ChannelList public var setting: SendbirdUIKit.SBUConfig.GroupChannel.Setting @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3604,8 +3650,8 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { } public var input: SendbirdUIKit.SBUConfig.GroupChannel.Channel.Input @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3621,8 +3667,8 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3633,13 +3679,13 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel.Channel { @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class Input : SendbirdUIKit.SBUConfig.BaseInput { - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } } @@ -3654,7 +3700,7 @@ extension SendbirdUIKit.SBUConfig.GroupChannel.Channel { final public let type: SendbirdUIKit.SBUMessageTemplate.ActionType final public let data: Swift.String final public let alterData: Swift.String? - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } public enum ActionType : Swift.String, Swift.Decodable { @@ -3700,11 +3746,11 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var customMessageCell: SendbirdUIKit.SBUBaseMessageCell? { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageThreadModuleListDataSource? { get set } @@ -3714,7 +3760,7 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleListDelegate, dataSource: any SendbirdUIKit.SBUMessageThreadModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleListDelegate, dataSource: SendbirdUIKit.SBUMessageThreadModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -3840,11 +3886,11 @@ public protocol SBUInviteUserModuleHeaderDataSource : SendbirdUIKit.SBUBaseSelec } extension SendbirdUIKit.SBUInviteUserModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUInviteUserModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUInviteUserModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUInviteUserModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUInviteUserModuleHeaderDataSource? { get set } @@ -3853,7 +3899,7 @@ extension SendbirdUIKit.SBUInviteUserModule { @available(*, unavailable, renamed: "SBUInviteUserModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUInviteUserModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUInviteUserModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUInviteUserModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUInviteUserModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -4102,6 +4148,32 @@ extension SendbirdUIKit.SBUInviteUserModule { public static func restoreDefaultIcons() @objc deinit } +public protocol SBUQuickReplyViewDelegate : AnyObject { + func quickReplyView(_ view: SendbirdUIKit.SBUQuickReplyView, didSelectOption optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} +@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) public class SBUQuickReplyView : SendbirdUIKit.SBUView, SendbirdUIKit.SBUQuickReplyOptionViewDelegate { + @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView + @_Concurrency.MainActor(unsafe) public var topSpacer: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var options: [Swift.String] { + get + } + @_Concurrency.MainActor(unsafe) public var messageId: Swift.Int64? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUQuickReplyViewParams? { + get + } + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuickReplyViewDelegate? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUQuickReplyViewParams, delegate: SendbirdUIKit.SBUQuickReplyViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) public func createQuickReplyOptionViews(options: [Swift.String]) -> [SendbirdUIKit.SBUQuickReplyOptionView] + @_Concurrency.MainActor(unsafe) public func quickReplyOptionViewDidSelect(_ optionView: SendbirdUIKit.SBUQuickReplyOptionView) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelContentBaseMessageCell : SendbirdUIKit.SBUOpenChannelBaseMessageCell { @objc @_Concurrency.MainActor(unsafe) public var baseStackView: UIKit.UIStackView { @objc get @@ -4163,8 +4235,8 @@ public protocol SBUUserListViewModelDataSource : AnyObject { func userListViewModel(_ viewModel: SendbirdUIKit.SBUUserListViewModel, nextUserListForChannel channel: SendbirdChatSDK.BaseChannel?) -> [SendbirdUIKit.SBUUser]? } @objc open class SBUUserListViewModel : ObjectiveC.NSObject { - weak public var delegate: (any SendbirdUIKit.SBUUserListViewModelDelegate)? - weak public var dataSource: (any SendbirdUIKit.SBUUserListViewModelDataSource)? + weak public var delegate: SendbirdUIKit.SBUUserListViewModelDelegate? + weak public var dataSource: SendbirdUIKit.SBUUserListViewModelDataSource? public var channel: SendbirdChatSDK.BaseChannel? { get } @@ -4186,7 +4258,7 @@ public protocol SBUUserListViewModelDataSource : AnyObject { public var userListType: SendbirdUIKit.ChannelUserListType { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListType: SendbirdUIKit.ChannelUserListType, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, operatorListQuery: SendbirdChatSDK.OperatorListQuery? = nil, mutedMemberListQuery: SendbirdChatSDK.MemberListQuery? = nil, mutedParticipantListQuery: SendbirdChatSDK.MutedUserListQuery? = nil, bannedUserListQuery: SendbirdChatSDK.BannedUserListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: (any SendbirdUIKit.SBUUserListViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUUserListViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListType: SendbirdUIKit.ChannelUserListType, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, operatorListQuery: SendbirdChatSDK.OperatorListQuery? = nil, mutedMemberListQuery: SendbirdChatSDK.MemberListQuery? = nil, mutedParticipantListQuery: SendbirdChatSDK.MutedUserListQuery? = nil, bannedUserListQuery: SendbirdChatSDK.BannedUserListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: SendbirdUIKit.SBUUserListViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUUserListViewModelDataSource? = nil) @objc deinit public func loadChannel(channelURL: Swift.String, type: SendbirdChatSDK.ChannelType) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) @@ -4238,7 +4310,7 @@ extension SendbirdUIKit.SBUBaseChannelListModule { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelListModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelListModuleHeaderDelegate? @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @objc @_Concurrency.MainActor(unsafe) open func onTapLeftBarButton() @@ -4324,7 +4396,7 @@ public protocol SBUThreadInfoViewProtocol : SendbirdUIKit.SBUViewLifeCycle { set _modify } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUThreadInfoViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUThreadInfoViewDelegate? @_Concurrency.MainActor(unsafe) public var threadInfo: SendbirdChatSDK.ThreadInfo? { get } @@ -4339,11 +4411,11 @@ public protocol SBUThreadInfoViewProtocol : SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) final public let repliedUserLimit: Swift.Int @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageCellTheme) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupActions() @_Concurrency.MainActor(unsafe) open func configure(with message: SendbirdChatSDK.BaseMessage, messagePosition: SendbirdUIKit.MessagePosition) @_Concurrency.MainActor(unsafe) open func setupRepliedUsers() @objc @_Concurrency.MainActor(unsafe) open func onTapThreadInfo(sender: UIKit.UITapGestureRecognizer) @@ -4367,7 +4439,7 @@ public protocol SBUMessageThreadTitleViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadTitleViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadTitleViewDelegate? @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme { get set @@ -4377,10 +4449,10 @@ public protocol SBUMessageThreadTitleViewDelegate : AnyObject { get } @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUMessageThreadTitleViewDelegate)? = nil) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUMessageThreadTitleViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @objc @_Concurrency.MainActor(unsafe) open func onTapChannelName(sender: UIKit.UITapGestureRecognizer) @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?, title: Swift.String?) @@ -4514,11 +4586,11 @@ public protocol SBUCreateChannelTypeSelectorProtocol { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "CreateChannelTypeSelectView.init(delegate:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUCreateChannelTypeSelectorDelegate)?) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUCreateChannelTypeSelectorDelegate?) + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func updateStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func show() @_Concurrency.MainActor(unsafe) open func dismiss() @objc @_Concurrency.MainActor(unsafe) open func onClickClose() @@ -4693,8 +4765,8 @@ public enum UserListType : Swift.Hashable { case mutedMembers @available(*, unavailable, renamed: "banned") case bannedMembers - public static func == (a: SendbirdUIKit.UserListType, b: SendbirdUIKit.UserListType) -> Swift.Bool public func hash(into hasher: inout Swift.Hasher) + public static func == (a: SendbirdUIKit.UserListType, b: SendbirdUIKit.UserListType) -> Swift.Bool public var hashValue: Swift.Int { get } @@ -4931,7 +5003,7 @@ public protocol SBUParentMessageInfoViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles() - @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.BaseMessage?, delegate: (any SendbirdUIKit.SBUParentMessageInfoViewDelegate)?, useReaction: Swift.Bool = false, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) + @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.BaseMessage?, delegate: SendbirdUIKit.SBUParentMessageInfoViewDelegate?, useReaction: Swift.Bool = false, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) @_Concurrency.MainActor(unsafe) open func setupActions() @objc @_Concurrency.MainActor(unsafe) open func onTapUserProfileView(sender: UIKit.UITapGestureRecognizer) @objc @_Concurrency.MainActor(unsafe) open func onTapContentView(sender: UIKit.UITapGestureRecognizer) @@ -4950,13 +5022,14 @@ public protocol SBUParentMessageInfoViewDelegate : AnyObject { public static var fileMessageParamsSendBuilder: ((_ params: SendbirdChatSDK.FileMessageCreateParams?) -> Swift.Void)? public static var voiceFileMessageParamsSendBuilder: ((_ params: SendbirdChatSDK.FileMessageCreateParams?) -> Swift.Void)? public static var messageListParamsBuilder: ((_ params: SendbirdChatSDK.MessageListParams?) -> Swift.Void)? + public static var cardViewParamsCollectionBuilder: ((_ messageData: Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams])? @objc deinit } public protocol SBUCreateOpenChannelViewModelDelegate : SendbirdUIKit.SBUCommonViewModelDelegate { func createOpenChannelViewModel(_ viewModel: SendbirdUIKit.SBUCreateOpenChannelViewModel, didCreateChannel channel: SendbirdChatSDK.BaseChannel?) } open class SBUCreateOpenChannelViewModel { - public init(delegate: (any SendbirdUIKit.SBUCreateOpenChannelViewModelDelegate)?) + public init(delegate: SendbirdUIKit.SBUCreateOpenChannelViewModelDelegate?) public func createChannel(channelName: Swift.String, coverImage: UIKit.UIImage?) public func createChannel(params: SendbirdChatSDK.OpenChannelCreateParams) @objc deinit @@ -4967,6 +5040,27 @@ extension SendbirdUIKit.SBUView { @available(*, unavailable, renamed: "updateLayouts()") @_Concurrency.MainActor(unsafe) public func updateAutolayout() } +public protocol SBUQuickReplyOptionViewDelegate : AnyObject { + func quickReplyOptionViewDidSelect(_ optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUQuickReplyOptionView : SendbirdUIKit.SBUView { + @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme + @_Concurrency.MainActor(unsafe) public var selectableStackView: SendbirdUIKit.SBUSelectableStackView + @_Concurrency.MainActor(unsafe) public var textView: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var text: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuickReplyOptionViewDelegate? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupActions() + @objc @_Concurrency.MainActor(unsafe) public func onSelectOption() + @_Concurrency.MainActor(unsafe) public func configure(with optionText: Swift.String, delegate: SendbirdUIKit.SBUQuickReplyOptionViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @objc public protocol SBUQuotedMessageViewDelegate { @objc func didTapQuotedMessageView(_ quotedMessageView: SendbirdUIKit.SBUQuotedBaseMessageView) } @@ -5011,13 +5105,13 @@ extension SendbirdUIKit.SBUView { set } @_Concurrency.MainActor(unsafe) public var mainContainerView: SendbirdUIKit.SBUSelectableStackView - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUQuotedMessageViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuotedMessageViewDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupActions() @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @objc @_Concurrency.MainActor(unsafe) open func didTapQuotedMessageView(sender: UIKit.UITapGestureRecognizer) @objc deinit @@ -5066,7 +5160,7 @@ extension UIKit.UIImage { @objc get @objc set } - @_Concurrency.MainActor(unsafe) public var quotedMessageView: (any UIKit.UIView & SendbirdUIKit.SBUQuotedMessageViewProtocol)? { + @_Concurrency.MainActor(unsafe) public var quotedMessageView: (UIKit.UIView & SendbirdUIKit.SBUQuotedMessageViewProtocol)? { get set } @@ -5077,7 +5171,7 @@ extension UIKit.UIImage { @objc @_Concurrency.MainActor(unsafe) public var threadInfoSpacing: UIKit.UIView { @objc get } - @_Concurrency.MainActor(unsafe) public var threadInfoView: (any UIKit.UIView & SendbirdUIKit.SBUThreadInfoViewProtocol)? { + @_Concurrency.MainActor(unsafe) public var threadInfoView: (UIKit.UIView & SendbirdUIKit.SBUThreadInfoViewProtocol)? { get set } @@ -5130,12 +5224,12 @@ extension SendbirdUIKit.SBUModerationsModule { @objc @_Concurrency.MainActor(unsafe) public var tableView: UIKit.UITableView @objc @_Concurrency.MainActor(unsafe) public var moderationCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUModerationsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUModerationsModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUModerationsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUModerationsModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUModerationsModuleListDelegate, dataSource: any SendbirdUIKit.SBUModerationsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUModerationsModuleListDelegate, dataSource: SendbirdUIKit.SBUModerationsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc deinit @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @@ -5165,15 +5259,15 @@ extension SendbirdUIKit.SBUOpenChannelViewModelDelegate { public func openChannelViewModel(_ viewModel: SendbirdUIKit.SBUOpenChannelViewModel, userDidExit user: SendbirdChatSDK.User, forChannel channel: SendbirdChatSDK.OpenChannel) } @objc open class SBUOpenChannelViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUOpenChannelViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUOpenChannelViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUOpenChannelViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = nil, delegate: (any SendbirdUIKit.SBUOpenChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUOpenChannelViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = nil, delegate: SendbirdUIKit.SBUOpenChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUOpenChannelViewModelDataSource? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) override public func refreshChannel() @@ -5277,6 +5371,17 @@ extension SendbirdUIKit.SBUGroupChannelViewController { get } } +public struct SBUCardViewParams { + public let imageURL: Swift.String? + public let title: Swift.String? + public let subtitle: Swift.String? + public let description: Swift.String? + public let link: Swift.String? + public var hasLink: Swift.Bool { + get + } + public init(imageURL: Swift.String? = nil, title: Swift.String? = nil, subtitle: Swift.String? = nil, description: Swift.String? = nil, link: Swift.String? = nil) +} public protocol SBUUserListModuleListDelegate : SendbirdUIKit.SBUCommonDelegate { func userListModule(_ listComponent: SendbirdUIKit.SBUUserListModule.List, didSelectRowAt indexPath: Foundation.IndexPath) func userListModule(_ listComponent: SendbirdUIKit.SBUUserListModule.List, didDetectPreloadingPosition indexPath: Foundation.IndexPath) @@ -5298,8 +5403,8 @@ extension SendbirdUIKit.SBUUserListModule { @objc @_Concurrency.MainActor(unsafe) public var userCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserListModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUUserListModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserListModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUUserListModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -5312,7 +5417,7 @@ extension SendbirdUIKit.SBUUserListModule { @available(*, unavailable, renamed: "SBUUserListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUUserListModuleListDelegate, dataSource: any SendbirdUIKit.SBUUserListModuleListDataSource, userListType: SendbirdUIKit.ChannelUserListType, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUUserListModuleListDelegate, dataSource: SendbirdUIKit.SBUUserListModuleListDataSource, userListType: SendbirdUIKit.ChannelUserListType, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUUserListTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -5344,11 +5449,11 @@ public protocol SBUInviteUserModuleListDataSource : SendbirdUIKit.SBUBaseSelectU } extension SendbirdUIKit.SBUInviteUserModule { @_inheritsConvenienceInitializers @objc(SBUInviteUserModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUInviteUserModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUInviteUserModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUInviteUserModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUInviteUserModuleListDataSource? { get set } @@ -5357,7 +5462,7 @@ extension SendbirdUIKit.SBUInviteUserModule { @available(*, unavailable, renamed: "SBUInviteUserModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUInviteUserModuleListDelegate, dataSource: any SendbirdUIKit.SBUInviteUserModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUInviteUserModuleListDelegate, dataSource: SendbirdUIKit.SBUInviteUserModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } @@ -5397,11 +5502,11 @@ extension UIKit.UIStackView { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "UserNameView(username:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func updateLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func updateStyles() @_Concurrency.MainActor(unsafe) open func configure(username: Swift.String, isOverlay: Swift.Bool = false) @_Concurrency.MainActor(unsafe) public func setUsernameColor(_ color: UIKit.UIColor) @objc deinit @@ -5460,6 +5565,11 @@ extension SendbirdUIKit.SBUModerationsViewController { public static func loadAllEmojis(completionHandler: @escaping (_ container: SendbirdChatSDK.EmojiContainer?, _ error: SendbirdChatSDK.SBError?) -> Swift.Void) @objc deinit } +public struct SBUQuickReplyViewParams { + public let messageId: Swift.Int64 + public let replyOptions: [Swift.String] + public init(messageId: Swift.Int64, replyOptions: [Swift.String]) +} open class SBUOpenChannelSettingsModule { public static var HeaderComponent: SendbirdUIKit.SBUOpenChannelSettingsModule.Header.Type public static var ListComponent: SendbirdUIKit.SBUOpenChannelSettingsModule.List.Type @@ -5488,8 +5598,8 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule { @objc @_Concurrency.MainActor(unsafe) public var tableView: UIKit.UITableView @objc @_Concurrency.MainActor(unsafe) public var channelInfoView: UIKit.UIView? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelSettingsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelSettingsModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelSettingsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelSettingsModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -5569,7 +5679,7 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule.List : UIKit.UITableViewDat @_Concurrency.MainActor(unsafe) required public init(channelURL: Swift.String, startingPoint: Swift.Int64? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillAppear(_ animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillTransition(to size: CoreFoundation.CGSize, with coordinator: any UIKit.UIViewControllerTransitionCoordinator) + @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillTransition(to size: CoreFoundation.CGSize, with coordinator: UIKit.UIViewControllerTransitionCoordinator) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillDisappear(_ animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLayoutSubviews() @objc deinit @@ -5615,8 +5725,8 @@ public protocol SBUCreateChannelViewModelDataSource : AnyObject { func createChannelViewModel(_ viewModel: SendbirdUIKit.SBUCreateChannelViewModel, nextUserListForChannelType channelType: SendbirdUIKit.ChannelCreationType) -> [SendbirdUIKit.SBUUser]? } open class SBUCreateChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUCreateChannelViewModelDelegate)? - weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelViewModelDataSource)? + weak public var delegate: SendbirdUIKit.SBUCreateChannelViewModelDelegate? + weak public var dataSource: SendbirdUIKit.SBUCreateChannelViewModelDataSource? public var channelType: SendbirdUIKit.ChannelCreationType { get } @@ -5629,7 +5739,7 @@ open class SBUCreateChannelViewModel { public var userListQuery: SendbirdChatSDK.ApplicationUserListQuery? { get } - public init(channelType: SendbirdUIKit.ChannelCreationType = .group, users: [SendbirdUIKit.SBUUser]? = nil, delegate: (any SendbirdUIKit.SBUCreateChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUCreateChannelViewModelDataSource)? = nil) + public init(channelType: SendbirdUIKit.ChannelCreationType = .group, users: [SendbirdUIKit.SBUUser]? = nil, delegate: SendbirdUIKit.SBUCreateChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUCreateChannelViewModelDataSource? = nil) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) public func preLoadNextUserList(indexPath: Foundation.IndexPath) public func resetUserList() @@ -5654,9 +5764,9 @@ open class SBUCreateChannelViewModel { @_Concurrency.MainActor(unsafe) public var imageDownloadTask: Foundation.URLSessionTask? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(urlString: Swift.String, imageSize: CoreFoundation.CGFloat? = SBUMessageProfileView.imageSize) @objc deinit } @@ -5771,9 +5881,9 @@ extension SendbirdUIKit.SBUGroupChannelPushSettingsModule { @_Concurrency.MainActor(unsafe) public var pushTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate)?, dataSource: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource)?, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate?, dataSource: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource?, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil) @@ -5866,7 +5976,7 @@ public protocol SBUGroupChannelListViewModelDelegate : SendbirdUIKit.SBUBaseChan public var channelListQuery: SendbirdChatSDK.GroupChannelListQuery? { get } - public init(delegate: (any SendbirdUIKit.SBUGroupChannelListViewModelDelegate)? = nil, channelListQuery: SendbirdChatSDK.GroupChannelListQuery? = nil) + public init(delegate: SendbirdUIKit.SBUGroupChannelListViewModelDelegate? = nil, channelListQuery: SendbirdChatSDK.GroupChannelListQuery? = nil) @objc deinit override public func initChannelList() override public func loadNextChannelList(reset: Swift.Bool) @@ -6034,7 +6144,8 @@ public class SBUUserMessageCellParams : SendbirdUIKit.SBUBaseMessageCellParams { } final public let useReaction: Swift.Bool final public let withTextView: Swift.Bool - public init(message: SendbirdChatSDK.UserMessage, hideDateView: Swift.Bool, useMessagePosition: Swift.Bool, groupPosition: SendbirdUIKit.MessageGroupPosition = .none, receiptState: SendbirdUIKit.SBUMessageReceiptState = .none, useReaction: Swift.Bool = false, withTextView: Swift.Bool, isThreadMessage: Swift.Bool = false, joinedAt: Swift.Int64 = 0) + final public let shouldHideQuickReply: Swift.Bool + public init(message: SendbirdChatSDK.UserMessage, hideDateView: Swift.Bool, useMessagePosition: Swift.Bool, groupPosition: SendbirdUIKit.MessageGroupPosition = .none, receiptState: SendbirdUIKit.SBUMessageReceiptState = .none, useReaction: Swift.Bool = false, withTextView: Swift.Bool, isThreadMessage: Swift.Bool = false, joinedAt: Swift.Int64 = 0, shouldHideQuickReply: Swift.Bool = true) @objc deinit } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUMessageSearchResultCell : SendbirdUIKit.SBUTableViewCell { @@ -6139,9 +6250,9 @@ extension SendbirdUIKit.SBUBaseSelectUserModule { @_Concurrency.MainActor(unsafe) public var progressTimeLabel: UIKit.UILabel @_Concurrency.MainActor(unsafe) public var statusButton: UIKit.UIButton @_Concurrency.MainActor(unsafe) public var voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo? - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -6420,8 +6531,8 @@ public protocol SBUMessageInputViewDataSource : AnyObject { @_Concurrency.MainActor(unsafe) public var mentionedAttributes: [Foundation.NSAttributedString.Key : Any] { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageInputViewDelegate)? - @_Concurrency.MainActor(unsafe) weak public var datasource: (any SendbirdUIKit.SBUMessageInputViewDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageInputViewDelegate? + @_Concurrency.MainActor(unsafe) weak public var datasource: SendbirdUIKit.SBUMessageInputViewDataSource? @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var overlayTheme: SendbirdUIKit.SBUMessageInputTheme { get set @@ -6438,9 +6549,9 @@ public protocol SBUMessageInputViewDataSource : AnyObject { @_Concurrency.MainActor(unsafe) open func setMode(_ mode: SendbirdUIKit.SBUMessageInputMode, message: SendbirdChatSDK.BaseMessage? = nil) @_Concurrency.MainActor(unsafe) public func startQuoteReplyMode(message: SendbirdChatSDK.BaseMessage) @_Concurrency.MainActor(unsafe) public func endQuoteReplyMode() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @_Concurrency.MainActor(unsafe) public func startEditMode(text: Swift.String) @_Concurrency.MainActor(unsafe) public func endEditMode() @@ -6601,6 +6712,14 @@ extension SendbirdUIKit.SBUChatNotificationChannelModule { @objc @_Concurrency.MainActor(unsafe) public func didSelectRetry() } } +extension SendbirdChatSDK.UserMessage { + public var quickReply: SendbirdUIKit.SBUQuickReplyOptions? { + get + } + public var cardListData: [Swift.String : Any]? { + get + } +} open class SBUCreateOpenChannelModule { public static var HeaderComponent: SendbirdUIKit.SBUCreateOpenChannelModule.Header.Type public static var ProfileInputComponent: SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput.Type @@ -6658,7 +6777,7 @@ open class SBUCreateOpenChannelModule { public var currentRecordAccessStatus: AVFAudio.AVAudioSession.RecordPermission { get } - public func showPermissionAlert(forType permissionType: SendbirdUIKit.SBUPermissionManager.PermissionType, alertViewDelegate: (any SendbirdUIKit.SBUAlertViewDelegate)? = nil, onDismiss: SendbirdUIKit.AlertButtonHandler? = nil) + public func showPermissionAlert(forType permissionType: SendbirdUIKit.SBUPermissionManager.PermissionType, alertViewDelegate: SendbirdUIKit.SBUAlertViewDelegate? = nil, onDismiss: SendbirdUIKit.AlertButtonHandler? = nil) public func requestRecordAcess(onGranted: (() -> Swift.Void)? = nil, onDenied: (() -> Swift.Void)? = nil) public func requestPhotoAccessIfNeeded(completion: @escaping (SendbirdUIKit.SBUPhotoAccessibleStatus) -> Swift.Void) public func requestCameraAccess(for type: AVFoundation.AVMediaType, onGranted: (() -> Swift.Void)? = nil, onDenied: (() -> Swift.Void)? = nil) @@ -6689,6 +6808,30 @@ open class SBUMessageSearchModule { required public init(headerComponent: SendbirdUIKit.SBUMessageSearchModule.Header? = nil, listComponent: SendbirdUIKit.SBUMessageSearchModule.List? = nil) @objc deinit } +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUCardListView : SendbirdUIKit.SBUView { + public struct Metric { + public static var maxWidth: Swift.Double + } + @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView + @_Concurrency.MainActor(unsafe) public var topSpacer: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var items: [SendbirdUIKit.SBUCardViewParams] { + get + } + @_Concurrency.MainActor(unsafe) public var messageId: Swift.Int64? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUCardListViewParams? { + get + } + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUCardListViewParams) + @_Concurrency.MainActor(unsafe) public func createCardViews(items: [SendbirdUIKit.SBUCardViewParams]) -> [SendbirdUIKit.SBUCardView] + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} open class SBUMessageStateViewParams { final public let timestamp: Swift.Int64 final public let sendingState: SendbirdChatSDK.MessageSendingStatus @@ -6717,9 +6860,9 @@ open class SBUMessageStateViewParams { @_Concurrency.MainActor(unsafe) public var timeLabelCustomSize: CoreFoundation.CGSize? @_Concurrency.MainActor(unsafe) public init(sendingState: SendbirdChatSDK.MessageSendingStatus, receiptState: SendbirdUIKit.SBUMessageReceiptState, isQuotedReplyMessage: Swift.Bool = false) @_Concurrency.MainActor(unsafe) public init(isQuotedReplyMessage: Swift.Bool = false) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUMessageStateViewParams) @available(*, deprecated, renamed: "configure(with:)") @_Concurrency.MainActor(unsafe) open func configure(timestamp: Swift.Int64, sendingState: SendbirdChatSDK.MessageSendingStatus, receiptState: SendbirdUIKit.SBUMessageReceiptState?, position: SendbirdUIKit.MessagePosition) @@ -6773,13 +6916,13 @@ extension Foundation.NSArray { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc open func setupViews() - @_Concurrency.MainActor(unsafe) @objc open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func configure(image: UIKit.UIImage?, forMediaType mediaType: Photos.PHAssetMediaType) - @_Concurrency.MainActor(unsafe) @objc open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc open func setupActions() - @_Concurrency.MainActor(unsafe) @objc open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func updateStyles() @objc deinit } open class SBUGroupChannelListModule { @@ -6903,11 +7046,11 @@ public protocol SBURegisterOperatorModuleHeaderDataSource : SendbirdUIKit.SBUBas } extension SendbirdUIKit.SBURegisterOperatorModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource? { get set } @@ -6916,7 +7059,7 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @available(*, unavailable, renamed: "SBURegisterOperatorModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate, dataSource: SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -6965,6 +7108,11 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +public struct SBUCardListData : Swift.Codable where CardData : Swift.Decodable, CardData : Swift.Encodable { + public let recommends: [CardData] + public func encode(to encoder: Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws +} public class SBUUnknownMessageCellParams : SendbirdUIKit.SBUBaseMessageCellParams { public var unknownMessage: SendbirdChatSDK.BaseMessage { get @@ -7003,6 +7151,11 @@ extension SendbirdUIKit.SBUCoverImageView { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +public struct SBUCardListViewParams { + public let messageId: Swift.Int64 + public let items: [SendbirdUIKit.SBUCardViewParams] + public init(messageId: Swift.Int64, items: [SendbirdUIKit.SBUCardViewParams]) +} public protocol SBUBaseChannelModuleHeaderDelegate : SendbirdUIKit.SBUCommonDelegate { func baseChannelModule(_ headerComponent: SendbirdUIKit.SBUBaseChannelModule.Header, didUpdateTitleView titleView: UIKit.UIView?) func baseChannelModule(_ headerComponent: SendbirdUIKit.SBUBaseChannelModule.Header, didUpdateLeftItem leftItem: UIKit.UIBarButtonItem?) @@ -7027,7 +7180,7 @@ extension SendbirdUIKit.SBUBaseChannelModule { } @objc @_Concurrency.MainActor(unsafe) public var titleSpacer: UIKit.UIView @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUBaseChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUBaseChannelModule.Header()") @@ -7054,12 +7207,12 @@ public protocol SBUVoiceMessageInputViewDelegate : AnyObject { } @objc override dynamic public init() @objc deinit - @objc public func setupViews() - @objc public func setupLayouts() - @objc public func updateLayouts() - @objc public func setupStyles() - @objc public func updateStyles() - @objc public func setupActions() + public func setupViews() + public func setupLayouts() + public func updateLayouts() + public func setupStyles() + public func updateStyles() + public func setupActions() } extension SendbirdUIKit.SBUVoiceMessageInputView : SendbirdUIKit.SBUVoiceRecorderDelegate { public func voiceRecorderDidReceiveError(_ recorder: SendbirdUIKit.SBUVoiceRecorder, errorStatus: SendbirdUIKit.VoiceRecorderErrorStatus) @@ -7087,7 +7240,7 @@ public protocol SBUOpenChannelListViewModelDelegate : SendbirdUIKit.SBUBaseChann public var channelListQuery: SendbirdChatSDK.OpenChannelListQuery? { get } - public init(delegate: (any SendbirdUIKit.SBUOpenChannelListViewModelDelegate)?, channelListQuery: SendbirdChatSDK.OpenChannelListQuery?) + public init(delegate: SendbirdUIKit.SBUOpenChannelListViewModelDelegate?, channelListQuery: SendbirdChatSDK.OpenChannelListQuery?) @objc deinit override public func initChannelList() override public func loadNextChannelList(reset: Swift.Bool) @@ -7242,14 +7395,14 @@ extension SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate { } extension SendbirdUIKit.SBUMessageThreadModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelModule.Header, SendbirdUIKit.SBUMessageThreadTitleViewDelegate { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate? { get set } @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? { get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate, parentMessage: SendbirdChatSDK.BaseMessage?, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate, parentMessage: SendbirdChatSDK.BaseMessage?, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -7273,7 +7426,7 @@ extension SendbirdUIKit.SBUActionSheetDelegate { @objc deinit } @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class SBUActionSheet : ObjectiveC.NSObject { - public static func show(items: [SendbirdUIKit.SBUActionSheetItem], cancelItem: SendbirdUIKit.SBUActionSheetItem, identifier: Swift.Int = -1, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, delegate: (any SendbirdUIKit.SBUActionSheetDelegate)? = nil, dismissHandler: (() -> Swift.Void)? = nil) + public static func show(items: [SendbirdUIKit.SBUActionSheetItem], cancelItem: SendbirdUIKit.SBUActionSheetItem, identifier: Swift.Int = -1, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, delegate: SendbirdUIKit.SBUActionSheetDelegate? = nil, dismissHandler: (() -> Swift.Void)? = nil) public static func dismiss() @objc deinit } @@ -7284,11 +7437,11 @@ public protocol SBUGroupChannelPushSettingsViewModelDelegate : SendbirdUIKit.SBU public var currentTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption { get } - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate? = nil) open func changeNotification(_ pushTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption) public func updateChannelPushTriggerOption() @objc deinit @@ -7341,6 +7494,7 @@ public protocol SBUGroupChannelModuleListDelegate : SendbirdUIKit.SBUBaseChannel func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMoreEmojiForCell messageCell: SendbirdUIKit.SBUBaseMessageCell) func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMentionUser user: SendbirdUIKit.SBUUser) func groupChannelModuleDidTapThreadInfoView(_ threadInfoView: SendbirdUIKit.SBUThreadInfoView) + func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didSelectQuickReplyOption text: Swift.String) } public protocol SBUGroupChannelModuleListDataSource : SendbirdUIKit.SBUBaseChannelModuleListDataSource { func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, highlightInfoInTableView tableView: UIKit.UITableView) -> SendbirdUIKit.SBUHighlightMessageInfo? @@ -7366,18 +7520,18 @@ extension SendbirdUIKit.SBUGroupChannelModule { get } @objc @_Concurrency.MainActor(unsafe) public var isHighlightInfoAnimated: Swift.Bool - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelModuleListDataSource? { get set } @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func updateStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme = SBUTheme.componentTheme) @@ -7439,17 +7593,17 @@ extension SendbirdUIKit.SBUGroupChannelModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? + @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? @objc @_Concurrency.MainActor(unsafe) public var mentionManager: SendbirdUIKit.SBUMentionManager? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleInputDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelModuleInputDataSource, mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleInputDelegate, dataSource: SendbirdUIKit.SBUGroupChannelModuleInputDataSource, mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -7615,7 +7769,7 @@ extension SendbirdUIKit.SBUOpenChannelViewController { public protocol SBUBaseChannelListViewModelDelegate : SendbirdUIKit.SBUCommonViewModelDelegate { } @objc open class SBUBaseChannelListViewModel : ObjectiveC.NSObject { - public init(delegate: (any SendbirdUIKit.SBUBaseChannelListViewModelDelegate)?) + public init(delegate: SendbirdUIKit.SBUBaseChannelListViewModelDelegate?) @objc deinit public func initChannelList() public func loadNextChannelList(reset: Swift.Bool) @@ -7695,7 +7849,7 @@ public protocol SBUGroupChannelListModuleHeaderDelegate : SendbirdUIKit.SBUBaseC extension SendbirdUIKit.SBUGroupChannelListModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelListModule.Header { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUGroupChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate? { get set } @@ -7704,7 +7858,7 @@ extension SendbirdUIKit.SBUGroupChannelListModule { @available(*, unavailable, renamed: "SBUGroupChannelListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUGroupChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUGroupChannelListTheme) @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUGroupChannelListTheme? = nil) } } @@ -7805,8 +7959,8 @@ extension Foundation.Date { } @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -7823,9 +7977,9 @@ public typealias SBUNewMessageInfoHandler = () -> Swift.Void @_Concurrency.MainActor(unsafe) public init(type: SendbirdUIKit.NewMessageInfoItemType = .tooltip) @available(*, unavailable, renamed: "SBUNewMessageInfo.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @objc @_Concurrency.MainActor(unsafe) open func onClickNewMessageInfo() @_Concurrency.MainActor(unsafe) open func updateCount(count: Swift.Int, actionHandler: SendbirdUIKit.SBUNewMessageInfoHandler?) @@ -7883,6 +8037,16 @@ open class SBUInviteUserModule { get } @objc @_Concurrency.MainActor(unsafe) public var webView: SendbirdUIKit.SBUMessageWebView + @objc @_Concurrency.MainActor(unsafe) public var shouldHideQuickReply: Swift.Bool { + get + } + @objc @_Concurrency.MainActor(unsafe) public var quickReplyView: SendbirdUIKit.SBUQuickReplyView? { + get + } + @objc @_Concurrency.MainActor(unsafe) public var quickReplySelectHandler: ((_ selectedOptionView: SendbirdUIKit.SBUQuickReplyOptionView) -> Swift.Void)? + @objc @_Concurrency.MainActor(unsafe) public var cardListView: SendbirdUIKit.SBUCardListView? { + get + } @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() @@ -7895,11 +8059,16 @@ open class SBUInviteUserModule { @_Concurrency.MainActor(unsafe) override open func configure(highlightInfo: SendbirdUIKit.SBUHighlightMessageInfo?) @_Concurrency.MainActor(unsafe) @objc override dynamic public func setSelected(_ selected: Swift.Bool, animated: Swift.Bool) @objc @_Concurrency.MainActor(unsafe) open func onTapWebview(sender: UIKit.UITapGestureRecognizer) + @objc @_Concurrency.MainActor(unsafe) public func updateQuickReplyView(with options: [Swift.String]) + @_Concurrency.MainActor(unsafe) public func addCardListView(with items: [SendbirdUIKit.SBUCardViewParams]) @objc @_Concurrency.MainActor(unsafe) open func userMessageTextView(_ textView: SendbirdUIKit.SBUUserMessageTextView, didTapMention user: SendbirdUIKit.SBUUser) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(style: UIKit.UITableViewCell.CellStyle, reuseIdentifier: Swift.String?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +extension SendbirdUIKit.SBUUserMessageCell : SendbirdUIKit.SBUQuickReplyViewDelegate { + @objc @_Concurrency.MainActor(unsafe) dynamic public func quickReplyView(_ view: SendbirdUIKit.SBUQuickReplyView, didSelectOption optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelSettingCell : SendbirdUIKit.SBUBaseChannelSettingCell { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(style: UIKit.UITableViewCell.CellStyle, reuseIdentifier: Swift.String?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @@ -7990,11 +8159,11 @@ public protocol SBUGroupChannelSettingsModuleHeaderDataSource : SendbirdUIKit.SB } extension SendbirdUIKit.SBUGroupChannelSettingsModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelSettingsModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource? { get set } @@ -8003,7 +8172,7 @@ extension SendbirdUIKit.SBUGroupChannelSettingsModule { @available(*, unavailable, renamed: "SBUGroupChannelSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -8097,11 +8266,11 @@ public protocol SBUOpenChannelListModuleListDataSource : SendbirdUIKit.SBUBaseCh extension SendbirdUIKit.SBUOpenChannelListModule { @_inheritsConvenienceInitializers @objc(SBUOpenChannelListModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelListModule.List { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUOpenChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelListModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelListModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelListModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelListModuleListDataSource? { get set } @@ -8113,7 +8282,7 @@ extension SendbirdUIKit.SBUOpenChannelListModule { @available(*, unavailable, renamed: "SBUOpenChannelListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelListModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelListModuleListDataSource, theme: SendbirdUIKit.SBUOpenChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelListModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelListModuleListDataSource, theme: SendbirdUIKit.SBUOpenChannelListTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUOpenChannelListTheme? = nil) } @@ -8141,7 +8310,7 @@ public protocol SBUMentionManagerDataSource : AnyObject { public var defaultTextAttributes: [Foundation.NSAttributedString.Key : Any] public var mentionTextAttributes: [Foundation.NSAttributedString.Key : Any] @objc override dynamic public init() - public func configure(delegate: (any SendbirdUIKit.SBUMentionManagerDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, defaultTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil, mentionTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil) + public func configure(delegate: SendbirdUIKit.SBUMentionManagerDelegate? = nil, dataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, defaultTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil, mentionTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil) @discardableResult public func addMention(at textView: UIKit.UITextView, user: SendbirdUIKit.SBUUser) -> Swift.Bool public func clearMentions(_ mentions: [SendbirdUIKit.SBUMention], with replaceText: Swift.String = "", on textView: UIKit.UITextView, at range: Foundation.NSRange) @@ -8208,7 +8377,7 @@ public protocol SBUMessageThreadViewControllerDelegate : AnyObject { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadViewControllerDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadViewControllerDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public var channel: SendbirdChatSDK.GroupChannel? { @objc get } @@ -8217,7 +8386,7 @@ public protocol SBUMessageThreadViewControllerDelegate : AnyObject { } @available(*, unavailable) @_Concurrency.MainActor(unsafe) required public init(channelURL: Swift.String, startingPoint: Swift.Int64? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil) - @_Concurrency.MainActor(unsafe) required public init(channel: SendbirdChatSDK.GroupChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = nil, delegate: (any SendbirdUIKit.SBUMessageThreadViewControllerDelegate)? = nil, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) + @_Concurrency.MainActor(unsafe) required public init(channel: SendbirdChatSDK.GroupChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = nil, delegate: SendbirdUIKit.SBUMessageThreadViewControllerDelegate? = nil, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarStyle: UIKit.UIStatusBarStyle { @objc get } @@ -8301,7 +8470,7 @@ public protocol SBUFileViewControllerDelegate : AnyObject { @objc set } @objc @_Concurrency.MainActor(unsafe) public var bottomView: UIKit.UIView - @_Concurrency.MainActor(unsafe) required public init(fileMessage: SendbirdChatSDK.FileMessage, delegate: (any SendbirdUIKit.SBUFileViewControllerDelegate)?) + @_Concurrency.MainActor(unsafe) required public init(fileMessage: SendbirdChatSDK.FileMessage, delegate: SendbirdUIKit.SBUFileViewControllerDelegate?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillAppear(_ animated: Swift.Bool) @@ -8387,14 +8556,14 @@ public protocol SBUVoiceRecorderDelegate : AnyObject { public var progressTimer: Foundation.Timer? { get } - public init(delegate: (any SendbirdUIKit.SBUVoiceRecorderDelegate)?) + public init(delegate: SendbirdUIKit.SBUVoiceRecorderDelegate?) @objc deinit @discardableResult public func record() -> Swift.Bool public func stop() public func resetRecorder() @objc public func audioRecorderDidFinishRecording(_ recorder: AVFAudio.AVAudioRecorder, successfully success: Swift.Bool) - @objc public func audioRecorderEncodeErrorDidOccur(_ recorder: AVFAudio.AVAudioRecorder, error: (any Swift.Error)?) + @objc public func audioRecorderEncodeErrorDidOccur(_ recorder: AVFAudio.AVAudioRecorder, error: Swift.Error?) } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUBaseFileContentView : SendbirdUIKit.SBUView { @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme { @@ -8455,9 +8624,9 @@ extension SendbirdUIKit.SBUMessageCellTheme { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "SBUNavigationTitleView.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @_Concurrency.MainActor(unsafe) public func configure(title: Swift.String?) @@ -8504,7 +8673,7 @@ public protocol SBUVoicePlayerDelegate : AnyObject { public var progressTimer: Foundation.Timer? { get } - public init(delegate: (any SendbirdUIKit.SBUVoicePlayerDelegate)?) + public init(delegate: SendbirdUIKit.SBUVoicePlayerDelegate?) public func configure(voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo) @objc deinit public func play(fromTime time: Foundation.TimeInterval = 0) @@ -8512,7 +8681,7 @@ public protocol SBUVoicePlayerDelegate : AnyObject { public func stop() public func resetPlayer() @objc public func audioPlayerDidFinishPlaying(_ player: AVFAudio.AVAudioPlayer, successfully success: Swift.Bool) - @objc public func audioPlayerDecodeErrorDidOccur(_ player: AVFAudio.AVAudioPlayer, error: (any Swift.Error)?) + @objc public func audioPlayerDecodeErrorDidOccur(_ player: AVFAudio.AVAudioPlayer, error: Swift.Error?) } public protocol SBUOpenChannelModuleMediaDelegate : AnyObject { func openChannelModule(_ mediaComponent: SendbirdUIKit.SBUOpenChannelModule.Media, didTapMediaView mediaView: UIKit.UIView) @@ -8521,8 +8690,8 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class Media : UIKit.UIView { @_Concurrency.MainActor(unsafe) public var mediaView: UIKit.UIView @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleMediaDelegate)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleMediaDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleMediaDelegate? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleMediaDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -8544,11 +8713,11 @@ public protocol SBUGroupChannelSettingsModuleListDataSource : SendbirdUIKit.SBUB } extension SendbirdUIKit.SBUGroupChannelSettingsModule { @_inheritsConvenienceInitializers @objc(SBUGroupChannelSettingsModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelSettingsModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource? { get set } @@ -8560,7 +8729,7 @@ extension SendbirdUIKit.SBUGroupChannelSettingsModule { @available(*, unavailable, renamed: "SBUGroupChannelSettingsModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupItems() @_Concurrency.MainActor(unsafe) open func createModerationsItem() -> SendbirdUIKit.SBUChannelSettingItem @@ -8598,13 +8767,13 @@ extension SendbirdUIKit.SBUMessageSearchModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageSearchTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUMessageSearchModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUMessageSearchModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate, theme: SendbirdUIKit.SBUMessageSearchTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate, theme: SendbirdUIKit.SBUMessageSearchTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageSearchTheme? = nil) @@ -8965,7 +9134,7 @@ public class SBUMessageCellTheme { public static var overlay: SendbirdUIKit.SBUMessageCellTheme { get } - public init(backgroundColor: UIKit.UIColor = SBUColorSet.background50, leftBackgroundColor: UIKit.UIColor = SBUColorSet.background100, leftPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary100, rightBackgroundColor: UIKit.UIColor = SBUColorSet.primary300, rightPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary400, openChannelBackgroundColor: UIKit.UIColor = .clear, openChannelPressedBackgroundColor: UIKit.UIColor = SBUColorSet.background100, dateFont: UIKit.UIFont = SBUFontSet.caption1, dateTextColor: UIKit.UIColor = SBUColorSet.ondark01, dateBackgroundColor: UIKit.UIColor = SBUColorSet.overlay02, userPlaceholderBackgroundColor: UIKit.UIColor = SBUColorSet.background300, userPlaceholderTintColor: UIKit.UIColor = SBUColorSet.ondark01, userNameFont: UIKit.UIFont = SBUFontSet.caption1, userNameTextColor: UIKit.UIColor = SBUColorSet.onlight02, currentUserNameTextColor: UIKit.UIColor = SBUColorSet.secondary300, timeFont: UIKit.UIFont = SBUFontSet.caption4, timeTextColor: UIKit.UIColor = SBUColorSet.onlight03, pendingStateColor: UIKit.UIColor = SBUColorSet.primary300, failedStateColor: UIKit.UIColor = SBUColorSet.error300, succeededStateColor: UIKit.UIColor = SBUColorSet.onlight03, readReceiptStateColor: UIKit.UIColor = SBUColorSet.secondary300, deliveryReceiptStateColor: UIKit.UIColor = SBUColorSet.onlight03, userMessageFont: UIKit.UIFont = SBUFontSet.body3, userMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageLeftEditTextColor: UIKit.UIColor = SBUColorSet.onlight02, userMessageLeftHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, userMessageRightEditTextColor: UIKit.UIColor = SBUColorSet.ondark02, userMessageRightHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileIconBackgroundColor: UIKit.UIColor = SBUColorSet.background50, fileImageBackgroundColor: UIKit.UIColor = SBUColorSet.ondark01, fileImageIconColor: UIKit.UIColor = SBUColorSet.onlight02, fileIconColor: UIKit.UIColor = SBUColorSet.primary300, fileMessageNameFont: UIKit.UIFont = SBUFontSet.body3, fileMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, fileMessagePlaceholderColor: UIKit.UIColor = SBUColorSet.onlight02, adminMessageFont: UIKit.UIFont = SBUFontSet.caption2, adminMessageTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescFont: UIKit.UIFont = SBUFontSet.body3, unknownMessageDescLeftTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescRightTextColor: UIKit.UIColor = SBUColorSet.ondark02, ogTitleFont: UIKit.UIFont = SBUFontSet.body2, ogTitleColor: UIKit.UIColor = SBUColorSet.onlight01, ogDescriptionFont: UIKit.UIFont = SBUFontSet.caption2, ogDescriptionColor: UIKit.UIColor = SBUColorSet.onlight01, ogURLAddressFont: UIKit.UIFont = SBUFontSet.caption2, ogURLAddressColor: UIKit.UIColor = SBUColorSet.onlight02, openChannelOGTitleColor: UIKit.UIColor = SBUColorSet.primary300, linkColor: UIKit.UIColor = SBUColorSet.primary300, contentBackgroundColor: UIKit.UIColor = SBUColorSet.background100, pressedContentBackgroundColor: UIKit.UIColor = SBUColorSet.background300, quotedMessageLeftBackgroundColor: UIKit.UIColor = SBUColorSet.background100.withAlphaComponent(0.5), quotedMessageRightBackgroundColor: UIKit.UIColor = SBUColorSet.background100, quotedFileMessageThumbnailColor: UIKit.UIColor = SBUColorSet.onlight02, quotedMessageTextColor: UIKit.UIColor = SBUColorSet.onlight03, quotedMessageTextFont: UIKit.UIFont = SBUFontSet.body3, repliedIconColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextFont: UIKit.UIFont = SBUFontSet.caption1, repliedCountTextColor: UIKit.UIColor = SBUColorSet.primary300, repliedCountTextFont: UIKit.UIFont = SBUFontSet.caption3, repliedUsersMoreIconBackgroundColor: UIKit.UIColor = SBUColorSet.background700.withAlphaComponent(0.64), repliedUsersMoreIconTintColor: UIKit.UIColor = SBUColorSet.ondark01, mentionTextFont: UIKit.UIFont = SBUFontSet.body4, mentionLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, mentionRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, mentionLeftTextBackgroundColor: UIKit.UIColor = .clear, mentionRightTextBackgroundColor: UIKit.UIColor = .clear, buttonBackgroundColor: UIKit.UIColor = SBUColorSet.background200, buttonTitleColor: UIKit.UIColor = SBUColorSet.primary300, sideButtonIconColor: UIKit.UIColor = SBUColorSet.onlight03, newMessageBadgeColor: UIKit.UIColor = SBUColorSet.secondary300, parentInfoBackgroundColor: UIKit.UIColor = SBUColorSet.background50, parentInfoUserNameTextFont: UIKit.UIFont = SBUFontSet.h3, parentInfoUserNameTextColor: UIKit.UIColor = SBUColorSet.onlight01, parentInfoDateFont: UIKit.UIFont = SBUFontSet.caption2, parentInfoDateTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoMoreButtonTintColor: UIKit.UIColor = SBUColorSet.onlight02, parentInfoSeparateBarColor: UIKit.UIColor = SBUColorSet.onlight04, parentInfoReplyCountTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoReplyCountTextFont: UIKit.UIFont = SBUFontSet.body3, parentInfoProgressBackgroundColor: UIKit.UIColor = SBUColorSet.background100, progressTrackTintColor: UIKit.UIColor = SBUColorSet.onlight03, progressTimeFont: UIKit.UIFont = SBUFontSet.body3, progressTimeRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, progressTimeLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, statusButtonBackgroundColor: UIKit.UIColor = SBUColorSet.background50, loadingButtonTintColor: UIKit.UIColor = SBUColorSet.primary200, playButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, pauseButtonTintColor: UIKit.UIColor = SBUColorSet.primary300) + public init(backgroundColor: UIKit.UIColor = SBUColorSet.background50, leftBackgroundColor: UIKit.UIColor = SBUColorSet.background100, leftPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary100, rightBackgroundColor: UIKit.UIColor = SBUColorSet.primary300, rightPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary400, openChannelBackgroundColor: UIKit.UIColor = .clear, openChannelPressedBackgroundColor: UIKit.UIColor = SBUColorSet.background100, dateFont: UIKit.UIFont = SBUFontSet.caption1, dateTextColor: UIKit.UIColor = SBUColorSet.ondark01, dateBackgroundColor: UIKit.UIColor = SBUColorSet.overlay02, userPlaceholderBackgroundColor: UIKit.UIColor = SBUColorSet.background300, userPlaceholderTintColor: UIKit.UIColor = SBUColorSet.ondark01, userNameFont: UIKit.UIFont = SBUFontSet.caption1, userNameTextColor: UIKit.UIColor = SBUColorSet.onlight02, currentUserNameTextColor: UIKit.UIColor = SBUColorSet.secondary300, timeFont: UIKit.UIFont = SBUFontSet.caption4, timeTextColor: UIKit.UIColor = SBUColorSet.onlight03, pendingStateColor: UIKit.UIColor = SBUColorSet.primary300, failedStateColor: UIKit.UIColor = SBUColorSet.error300, succeededStateColor: UIKit.UIColor = SBUColorSet.onlight03, readReceiptStateColor: UIKit.UIColor = SBUColorSet.secondary300, deliveryReceiptStateColor: UIKit.UIColor = SBUColorSet.onlight03, userMessageFont: UIKit.UIFont = SBUFontSet.body3, userMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageLeftEditTextColor: UIKit.UIColor = SBUColorSet.onlight02, userMessageLeftHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, userMessageRightEditTextColor: UIKit.UIColor = SBUColorSet.ondark02, userMessageRightHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileIconBackgroundColor: UIKit.UIColor = SBUColorSet.background50, fileImageBackgroundColor: UIKit.UIColor = SBUColorSet.ondark01, fileImageIconColor: UIKit.UIColor = SBUColorSet.onlight02, fileIconColor: UIKit.UIColor = SBUColorSet.primary300, fileMessageNameFont: UIKit.UIFont = SBUFontSet.body3, fileMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, fileMessagePlaceholderColor: UIKit.UIColor = SBUColorSet.onlight02, adminMessageFont: UIKit.UIFont = SBUFontSet.caption2, adminMessageTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescFont: UIKit.UIFont = SBUFontSet.body3, unknownMessageDescLeftTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescRightTextColor: UIKit.UIColor = SBUColorSet.ondark02, ogTitleFont: UIKit.UIFont = SBUFontSet.body2, ogTitleColor: UIKit.UIColor = SBUColorSet.onlight01, ogDescriptionFont: UIKit.UIFont = SBUFontSet.caption2, ogDescriptionColor: UIKit.UIColor = SBUColorSet.onlight01, ogURLAddressFont: UIKit.UIFont = SBUFontSet.caption2, ogURLAddressColor: UIKit.UIColor = SBUColorSet.onlight02, openChannelOGTitleColor: UIKit.UIColor = SBUColorSet.primary300, linkColor: UIKit.UIColor = SBUColorSet.primary300, contentBackgroundColor: UIKit.UIColor = SBUColorSet.background100, pressedContentBackgroundColor: UIKit.UIColor = SBUColorSet.background300, quotedMessageLeftBackgroundColor: UIKit.UIColor = SBUColorSet.background100.withAlphaComponent(0.5), quotedMessageRightBackgroundColor: UIKit.UIColor = SBUColorSet.background100, quotedFileMessageThumbnailColor: UIKit.UIColor = SBUColorSet.onlight02, quotedMessageTextColor: UIKit.UIColor = SBUColorSet.onlight03, quotedMessageTextFont: UIKit.UIFont = SBUFontSet.body3, repliedIconColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextFont: UIKit.UIFont = SBUFontSet.caption1, repliedCountTextColor: UIKit.UIColor = SBUColorSet.primary300, repliedCountTextFont: UIKit.UIFont = SBUFontSet.caption3, repliedUsersMoreIconBackgroundColor: UIKit.UIColor = SBUColorSet.background700.withAlphaComponent(0.64), repliedUsersMoreIconTintColor: UIKit.UIColor = SBUColorSet.ondark01, mentionTextFont: UIKit.UIFont = SBUFontSet.body4, mentionLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, mentionRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, mentionLeftTextBackgroundColor: UIKit.UIColor = .clear, mentionRightTextBackgroundColor: UIKit.UIColor = .clear, buttonBackgroundColor: UIKit.UIColor = SBUColorSet.background200, buttonTitleColor: UIKit.UIColor = SBUColorSet.primary300, sideButtonIconColor: UIKit.UIColor = SBUColorSet.onlight03, newMessageBadgeColor: UIKit.UIColor = SBUColorSet.secondary300, parentInfoBackgroundColor: UIKit.UIColor = SBUColorSet.background50, parentInfoUserNameTextFont: UIKit.UIFont = SBUFontSet.h3, parentInfoUserNameTextColor: UIKit.UIColor = SBUColorSet.onlight01, parentInfoDateFont: UIKit.UIFont = SBUFontSet.caption2, parentInfoDateTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoMoreButtonTintColor: UIKit.UIColor = SBUColorSet.onlight02, parentInfoSeparateBarColor: UIKit.UIColor = SBUColorSet.onlight04, parentInfoReplyCountTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoReplyCountTextFont: UIKit.UIFont = SBUFontSet.body3, parentInfoProgressBackgroundColor: UIKit.UIColor = SBUColorSet.background100, progressTrackTintColor: UIKit.UIColor = SBUColorSet.onlight03, progressTimeFont: UIKit.UIFont = SBUFontSet.body3, progressTimeRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, progressTimeLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, statusButtonBackgroundColor: UIKit.UIColor = SBUColorSet.background50, loadingButtonTintColor: UIKit.UIColor = SBUColorSet.primary200, playButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, pauseButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, selectableTitleFont: UIKit.UIFont = SBUFontSet.button2) public var backgroundColor: UIKit.UIColor public var leftBackgroundColor: UIKit.UIColor public var leftPressedBackgroundColor: UIKit.UIColor @@ -9062,6 +9231,7 @@ public class SBUMessageCellTheme { public var playerLoadingButtonTintColor: UIKit.UIColor public var playerPlayButtonTintColor: UIKit.UIColor public var playerPauseButtonTintColor: UIKit.UIColor + public var selectableTitleFont: UIKit.UIFont @objc deinit } public class SBUUserListTheme { @@ -9405,8 +9575,8 @@ public class SBUMessageTemplateTheme { @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var widthConstraint: UIKit.NSLayoutConstraint! @_Concurrency.MainActor(unsafe) public var heightConstraint: UIKit.NSLayoutConstraint! - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupSizeContraint() @_Concurrency.MainActor(unsafe) override open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition) @_Concurrency.MainActor(unsafe) public func setImage(_ image: UIKit.UIImage?, size: CoreFoundation.CGSize? = nil) @@ -9500,14 +9670,14 @@ public protocol SBUUserMessageTextViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) public var needsToRemoveMargin: Swift.Bool { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserMessageTextViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserMessageTextViewDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) public init(channelType: SendbirdChatSDK.ChannelType = .group, removeMargin: Swift.Bool = false) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateSideConstraint() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(model: SendbirdUIKit.SBUUserMessageTextViewModel) @objc deinit } @@ -9535,13 +9705,13 @@ extension SendbirdUIKit.SBUModerationsModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUModerationsModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUModerationsModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUModerationsModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUModerationsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUModerationsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUModerationsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil) @@ -9733,8 +9903,8 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { } @_Concurrency.MainActor(unsafe) public var channelNameInputField: SendbirdUIKit.SBUUnderLineTextField @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUCreateOpenChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate)?, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate?, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUCreateOpenChannelTheme? = nil) @@ -9868,11 +10038,11 @@ public protocol SBUMessageThreadViewModelDelegate : SendbirdUIKit.SBUBaseChannel func messageThreadViewModelShouldDismissMessageThread(_ viewModel: SendbirdUIKit.SBUMessageThreadViewModel) } @objc open class SBUMessageThreadViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUMessageThreadViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUMessageThreadViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUMessageThreadViewModelDataSource? { get set } @@ -9882,7 +10052,7 @@ public protocol SBUMessageThreadViewModelDelegate : SendbirdUIKit.SBUBaseChannel public var threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = 0, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: (any SendbirdUIKit.SBUMessageThreadViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUMessageThreadViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = 0, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: SendbirdUIKit.SBUMessageThreadViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUMessageThreadViewModelDataSource? = nil) @objc deinit public func loadChannelAndMessages(channelURL: Swift.String?) override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) @@ -9956,7 +10126,7 @@ extension SendbirdUIKit.SBUUserListModule { } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserListModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserListModuleHeaderDelegate? @objc @_Concurrency.MainActor(unsafe) public var channelType: SendbirdChatSDK.ChannelType @_Concurrency.MainActor(unsafe) public var userListType: SendbirdUIKit.ChannelUserListType { get @@ -9966,7 +10136,7 @@ extension SendbirdUIKit.SBUUserListModule { @available(*, unavailable, renamed: "SBUUserListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUUserListModuleHeaderDelegate, userListType: SendbirdUIKit.ChannelUserListType, channelType: SendbirdChatSDK.ChannelType = .group, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUUserListModuleHeaderDelegate, userListType: SendbirdUIKit.ChannelUserListType, channelType: SendbirdChatSDK.ChannelType = .group, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUUserListTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -10096,7 +10266,7 @@ public enum SBUReplyType : Swift.Int, Swift.Codable { public var filterValue: SendbirdChatSDK.ReplyType { get } - public init(from decoder: any Swift.Decoder) throws + public init(from decoder: Swift.Decoder) throws public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { @@ -10107,13 +10277,18 @@ public enum SBUThreadReplySelectType : Swift.Int, Swift.Codable { case none case parent case thread - public init(from decoder: any Swift.Decoder) throws + public init(from decoder: Swift.Decoder) throws public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } +public struct SBUQuickReplyOptions : Swift.Codable { + public let options: [Swift.String] + public func encode(to encoder: Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws +} public protocol SBUGroupChannelViewModelDataSource : SendbirdUIKit.SBUBaseChannelViewModelDataSource { func groupChannelViewModel(_ viewModel: SendbirdUIKit.SBUGroupChannelViewModel, startingPointIndexPathsForChannel channel: SendbirdChatSDK.GroupChannel?) -> [Foundation.IndexPath]? } @@ -10121,15 +10296,15 @@ public protocol SBUGroupChannelViewModelDelegate : SendbirdUIKit.SBUBaseChannelV func groupChannelViewModel(_ viewModel: SendbirdUIKit.SBUGroupChannelViewModel, didReceiveSuggestedMentions members: [SendbirdUIKit.SBUUser]?) } @objc open class SBUGroupChannelViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUGroupChannelViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: (any SendbirdUIKit.SBUGroupChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUGroupChannelViewModelDataSource)? = nil, displaysLocalCachedListFirst: Swift.Bool = false) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: SendbirdUIKit.SBUGroupChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUGroupChannelViewModelDataSource? = nil, displaysLocalCachedListFirst: Swift.Bool = false) @objc deinit override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) override public func refreshChannel() @@ -10235,10 +10410,10 @@ extension SendbirdUIKit.SBUGroupChannelViewModel : SendbirdChatSDK.GroupChannelD } @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUQuoteMessageInputViewParams) public enum Edge : Swift.Int { case vertical @@ -10261,7 +10436,7 @@ public protocol SBUOpenChannelSettingsModuleHeaderDelegate : SendbirdUIKit.SBUBa } extension SendbirdUIKit.SBUOpenChannelSettingsModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelSettingsModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate? { get set } @@ -10270,7 +10445,7 @@ extension SendbirdUIKit.SBUOpenChannelSettingsModule { @available(*, unavailable, renamed: "SBUOpenChannelSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @_Concurrency.MainActor(unsafe) @objc public func didUpdateRightItem() @@ -10327,11 +10502,11 @@ public protocol SBUCreateChannelModuleListDataSource : SendbirdUIKit.SBUBaseSele } extension SendbirdUIKit.SBUCreateChannelModule { @_inheritsConvenienceInitializers @objc(SBUCreateChannelModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUCreateChannelModuleListDataSource? { get set } @@ -10340,7 +10515,7 @@ extension SendbirdUIKit.SBUCreateChannelModule { @available(*, unavailable, renamed: "SBUCreateChannelModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUCreateChannelModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUCreateChannelModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc index 22a4cbf6a..6269105ae 100644 Binary files a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface index 85428ac6b..1726dc33e 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) +// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name SendbirdUIKit // swift-module-flags-ignorable: -enable-bare-slash-regex import AVFAudio @@ -83,9 +83,9 @@ import simd @_Concurrency.MainActor(unsafe) public var stackView: SendbirdUIKit.SBUStackView @_Concurrency.MainActor(unsafe) public var fileImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var fileNameLabel: UIKit.UILabel - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with fileType: Swift.String, fileName: Swift.String, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) open func configure(with messageFileType: SendbirdUIKit.SBUMessageFileType, fileName: Swift.String, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) open func addHighlight(keyword: Swift.String, toAttributedString attributedString: Foundation.NSMutableAttributedString, highlightTextColor: UIKit.UIColor) @@ -134,8 +134,8 @@ extension SendbirdUIKit.SBUBaseChannelModule { @objc @_Concurrency.MainActor(unsafe) public var newMessageInfoView: UIKit.UIView? @objc @_Concurrency.MainActor(unsafe) public var scrollBottomView: UIKit.UIView? @objc @_Concurrency.MainActor(unsafe) public var userProfileView: UIKit.UIView? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelModuleListDataSource? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get @@ -206,8 +206,8 @@ extension SendbirdUIKit.SBUConfig { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } @objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUBaseMessageCell : SendbirdUIKit.SBUTableViewCell, SendbirdUIKit.SBUMessageCellProtocol { @@ -251,7 +251,7 @@ public protocol SBUOpenChannelListModuleHeaderDelegate : SendbirdUIKit.SBUBaseCh extension SendbirdUIKit.SBUOpenChannelListModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelListModule.Header { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUOpenChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate? { get set } @@ -260,7 +260,7 @@ extension SendbirdUIKit.SBUOpenChannelListModule { @available(*, unavailable, renamed: "SBUOpenChannelListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUOpenChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUOpenChannelListTheme) @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUOpenChannelListTheme? = nil) } } @@ -273,7 +273,7 @@ public protocol SBUCommonDelegate : AnyObject { @objc deinit } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUParentMessageInfoReactionView : SendbirdUIKit.SBUMessageReactionView { - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(maxWidth: CoreFoundation.CGFloat, useReaction: Swift.Bool, reactions: [SendbirdChatSDK.Reaction]) @_Concurrency.MainActor(unsafe) override open func getCellSize(count: Swift.Int) -> CoreFoundation.CGSize @_Concurrency.MainActor(unsafe) @objc override open func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int @@ -299,8 +299,8 @@ extension SendbirdUIKit.SBUMessageSearchModule { } @objc @_Concurrency.MainActor(unsafe) public var resultCell: SendbirdUIKit.SBUMessageSearchResultCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageSearchTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageSearchModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageSearchModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageSearchModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageSearchModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var resultList: [SendbirdChatSDK.BaseMessage] { @objc get } @@ -309,7 +309,7 @@ extension SendbirdUIKit.SBUMessageSearchModule { @available(*, unavailable, renamed: "SBUMessageSearchModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageSearchModuleListDelegate, dataSource: any SendbirdUIKit.SBUMessageSearchModuleListDataSource, theme: SendbirdUIKit.SBUMessageSearchTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageSearchModuleListDelegate, dataSource: SendbirdUIKit.SBUMessageSearchModuleListDataSource, theme: SendbirdUIKit.SBUMessageSearchTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageSearchTheme? = nil) @@ -349,18 +349,18 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageThreadModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? + @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? @objc @_Concurrency.MainActor(unsafe) public var mentionManager: SendbirdUIKit.SBUMentionManager? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleInputDelegate, dataSource: any SendbirdUIKit.SBUMessageThreadModuleInputDataSource, parentMessage: SendbirdChatSDK.BaseMessage?, mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleInputDelegate, dataSource: SendbirdUIKit.SBUMessageThreadModuleInputDataSource, parentMessage: SendbirdChatSDK.BaseMessage?, mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -407,11 +407,11 @@ public protocol SBUGroupChannelModuleHeaderDelegate : SendbirdUIKit.SBUBaseChann } extension SendbirdUIKit.SBUGroupChannelModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func onTapLeftBarButton() @_Concurrency.MainActor(unsafe) @objc override open func onTapRightBarButton() @@ -557,11 +557,11 @@ public protocol SBUGroupChannelSettingsViewModelDelegate : SendbirdUIKit.SBUBase @available(*, deprecated, renamed: "SBUGroupChannelSettingsViewModel") public typealias SBUChannelSettingsViewModel = SendbirdUIKit.SBUGroupChannelSettingsViewModel @objc open class SBUGroupChannelSettingsViewModel : SendbirdUIKit.SBUBaseChannelSettingsViewModel { - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String?) override public func updateChannel(channelName: Swift.String? = nil, coverImage: UIKit.UIImage? = nil) @@ -594,15 +594,15 @@ public protocol SBURegisterOperatorViewModelDelegate : SendbirdUIKit.SBUBaseSele public protocol SBURegisterOperatorViewModelDataSource : SendbirdUIKit.SBUBaseSelectUserViewModelDataSource { } @objc open class SBURegisterOperatorViewModel : SendbirdUIKit.SBUBaseSelectUserViewModel { - weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBURegisterOperatorViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBURegisterOperatorViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: (any SendbirdUIKit.SBURegisterOperatorViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBURegisterOperatorViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: SendbirdUIKit.SBURegisterOperatorViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBURegisterOperatorViewModelDataSource? = nil) public func registerAsOperators() public func registerAsOperators(users: [SendbirdUIKit.SBUUser]) public func registerAsOperators(userIds: [Swift.String]) @@ -635,15 +635,15 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.OpenChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleInputDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelModuleInputDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleInputDelegate, dataSource: SendbirdUIKit.SBUOpenChannelModuleInputDataSource, theme: SendbirdUIKit.SBUChannelTheme) @objc @_Concurrency.MainActor(unsafe) open func updateStyles(overlaid: Swift.Bool = false) @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @_Concurrency.MainActor(unsafe) @objc override open func pickVideoFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -677,8 +677,8 @@ extension SendbirdUIKit.SBUBaseSelectUserModule { } @objc @_Concurrency.MainActor(unsafe) public var userCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseSelectUserModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseSelectUserModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseSelectUserModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseSelectUserModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var userList: [SendbirdUIKit.SBUUser]? { @objc get } @@ -713,15 +713,15 @@ public protocol SBUInviteUserViewModelDelegate : SendbirdUIKit.SBUBaseSelectUser public protocol SBUInviteUserViewModelDataSource : SendbirdUIKit.SBUBaseSelectUserViewModelDataSource { } @objc open class SBUInviteUserViewModel : SendbirdUIKit.SBUBaseSelectUserViewModel { - weak public var delegate: (any SendbirdUIKit.SBUInviteUserViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUInviteUserViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUInviteUserViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUInviteUserViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: (any SendbirdUIKit.SBUInviteUserViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUInviteUserViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: SendbirdUIKit.SBUInviteUserViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUInviteUserViewModelDataSource? = nil) public func inviteUsers() public func invite(users: [SendbirdUIKit.SBUUser]) public func invite(userIds: [Swift.String]) @@ -737,9 +737,9 @@ public protocol SBUInviteUserViewModelDataSource : SendbirdUIKit.SBUBaseSelectUs get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(timestamp: Swift.Int64) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -754,11 +754,11 @@ public protocol SBURegisterOperatorModuleListDataSource : SendbirdUIKit.SBUBaseS } extension SendbirdUIKit.SBURegisterOperatorModule { @_inheritsConvenienceInitializers @objc(SBURegisterOperatorModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBURegisterOperatorModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBURegisterOperatorModuleListDataSource? { get set } @@ -767,7 +767,7 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @available(*, unavailable, renamed: "SBURegisterOperatorModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBURegisterOperatorModuleListDelegate, dataSource: any SendbirdUIKit.SBURegisterOperatorModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBURegisterOperatorModuleListDelegate, dataSource: SendbirdUIKit.SBURegisterOperatorModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } @@ -791,29 +791,27 @@ open class SBUModerationsViewModel { public var channelType: SendbirdChatSDK.ChannelType { get } - public init(channel: SendbirdChatSDK.BaseChannel, delegate: (any SendbirdUIKit.SBUModerationsViewModelDelegate)? = nil) - public init(channelURL: Swift.String, channelType: SendbirdChatSDK.ChannelType, delegate: (any SendbirdUIKit.SBUModerationsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel, delegate: SendbirdUIKit.SBUModerationsViewModelDelegate? = nil) + public init(channelURL: Swift.String, channelType: SendbirdChatSDK.ChannelType, delegate: SendbirdUIKit.SBUModerationsViewModelDelegate? = nil) public func loadChannel(channelURL: Swift.String) public func freezeChannel(_ completionHandler: ((Swift.Bool) -> Swift.Void)? = nil) public func unfreezeChannel(_ completionHandler: ((Swift.Bool) -> Swift.Void)? = nil) @objc deinit } -@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUView : UIKit.UIView { +@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUView : UIKit.UIView, SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) @objc dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "init(frame:)") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() @objc deinit } -extension SendbirdUIKit.SBUView : SendbirdUIKit.SBUViewLifeCycle { - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupActions() -} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUMessageReactionView : SendbirdUIKit.SBUView, UIKit.UICollectionViewDelegate, UIKit.UICollectionViewDataSource, UIKit.UICollectionViewDelegateFlowLayout { @_Concurrency.MainActor(unsafe) public var collectionView: UIKit.UICollectionView { get @@ -839,9 +837,9 @@ extension SendbirdUIKit.SBUView : SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "MessageReactionView()") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func hasMoreEmoji(at indexPath: Foundation.IndexPath) -> Swift.Bool @_Concurrency.MainActor(unsafe) open func configure(maxWidth: CoreFoundation.CGFloat, useReaction: Swift.Bool, reactions: [SendbirdChatSDK.Reaction]) @_Concurrency.MainActor(unsafe) open func getCellSize(count: Swift.Int) -> CoreFoundation.CGSize @@ -926,11 +924,11 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var fileMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? @objc @_Concurrency.MainActor(unsafe) public var unknownMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? @objc @_Concurrency.MainActor(unsafe) public var customMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelModuleListDataSource? { get set } @@ -940,7 +938,7 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var isOverlaid: Swift.Bool { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @objc @_Concurrency.MainActor(unsafe) open func updateLayouts() @@ -996,9 +994,9 @@ extension SendbirdUIKit.SBUOpenChannelModule { get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?) @objc deinit @@ -1021,8 +1019,8 @@ extension SendbirdUIKit.SBUBaseChannelListModule { } @objc @_Concurrency.MainActor(unsafe) public var channelCell: SendbirdUIKit.SBUBaseChannelCell? @objc @_Concurrency.MainActor(unsafe) public var customCell: SendbirdUIKit.SBUBaseChannelCell? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelListModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelListModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelListModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelListModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannelList: [SendbirdChatSDK.BaseChannel]? { @objc get } @@ -1120,11 +1118,11 @@ public protocol SBUCreateChannelModuleHeaderDataSource : SendbirdUIKit.SBUBaseSe } extension SendbirdUIKit.SBUCreateChannelModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource? { get set } @@ -1133,7 +1131,7 @@ extension SendbirdUIKit.SBUCreateChannelModule { @available(*, unavailable, renamed: "SBUCreateChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -1147,7 +1145,7 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUEmptyView : SendbirdUIKit.SBUView { @_Concurrency.MainActor(unsafe) public var type: SendbirdUIKit.EmptyViewType - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUEmptyViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUEmptyViewDelegate? @_Concurrency.MainActor(unsafe) public var statusImageView: UIKit.UIImageView { get set @@ -1173,10 +1171,10 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { @available(*, unavailable, renamed: "SBUEmptyView.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateTopAnchorConstraint(constant: CoreFoundation.CGFloat) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func reloadData(_ type: SendbirdUIKit.EmptyViewType) @_Concurrency.MainActor(unsafe) open func updateViews() @objc @_Concurrency.MainActor(unsafe) open func onClickRetry(_ sender: Any) @@ -1188,8 +1186,8 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { public var openChannel: SendbirdUIKit.SBUConfig.OpenChannel @objc override dynamic public init() @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } open class SBUGroupChannelSettingsModule { public static var HeaderComponent: SendbirdUIKit.SBUGroupChannelSettingsModule.Header.Type @@ -1243,13 +1241,13 @@ extension SendbirdUIKit.SBUChannelInfoHeaderViewDelegate { set _modify } - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUChannelInfoHeaderViewDelegate)?) + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUChannelInfoHeaderViewDelegate?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "SBUChannelInfoHeaderView()") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func setupInfoButtonStyle() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?, description: Swift.String?) @@ -1283,15 +1281,62 @@ public class SBUChatNotificationChannelModule { @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView @_Concurrency.MainActor(unsafe) public var fileImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var fileNameLabel: UIKit.UILabel - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) public func addHighlight(keyword: Swift.String, toAttributedString attributedString: Foundation.NSMutableAttributedString, highlightTextColor: UIKit.UIColor) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit } +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUCardView : SendbirdUIKit.SBUView { + public struct Metric { + public static var maxWidth: Swift.Double + public static var textMinWidth: Swift.Double + public static var imageSize: Swift.Double + } + @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme + @_Concurrency.MainActor(unsafe) public var imageURL: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var title: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var subtitle: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var text: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var link: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUCardViewParams? { + get + } + @_Concurrency.MainActor(unsafe) public var contentStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var mainInfoStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var titleStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var titleLabel: UIKit.UILabel + @_Concurrency.MainActor(unsafe) public var subtitleLabel: UIKit.UILabel + @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView { + get + set + } + @_Concurrency.MainActor(unsafe) public var descriptionTextView: UIKit.UITextView + @_Concurrency.MainActor(unsafe) public var textLeftConstraint: UIKit.NSLayoutConstraint? + @_Concurrency.MainActor(unsafe) public var textRightConstraint: UIKit.NSLayoutConstraint? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupActions() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUCardViewParams) + @objc @_Concurrency.MainActor(unsafe) public func openURL() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @_hasMissingDesignatedInitializers public class SBUColorSet { public static var primary100: UIKit.UIColor public static var primary200: UIKit.UIColor @@ -1521,8 +1566,8 @@ extension SendbirdUIKit.SBUConfig { public var camera: SendbirdUIKit.SBUConfig.BaseInput.Camera public var gallery: SendbirdUIKit.SBUConfig.BaseInput.Gallery @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.BaseInput { @@ -1538,8 +1583,8 @@ extension SendbirdUIKit.SBUConfig.BaseInput { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.BaseInput { @@ -1555,8 +1600,8 @@ extension SendbirdUIKit.SBUConfig.BaseInput { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } open class SBUGroupChannelModule { @@ -1598,11 +1643,11 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -2053,13 +2098,13 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUCreateOpenChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUCreateOpenChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUCreateOpenChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUCreateOpenChannelTheme? = nil) @@ -2085,10 +2130,10 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { } @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupSizeContraint() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) open func setImage(_ image: UIKit.UIImage?, size: CoreFoundation.CGSize? = nil) @_Concurrency.MainActor(unsafe) open func setFileIcon() @@ -2117,12 +2162,12 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc open func setupViews() - @_Concurrency.MainActor(unsafe) @objc open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc open func setupActions() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() @_Concurrency.MainActor(unsafe) open func configure(model: SendbirdUIKit.SBUMessageWebViewModel) @objc deinit } @@ -2305,7 +2350,7 @@ open class SBUMessageSearchViewModel { public var messageSearchQuery: SendbirdChatSDK.MessageSearchQuery? { get } - public init(channel: SendbirdChatSDK.BaseChannel, params: SendbirdChatSDK.MessageSearchQueryParams? = nil, delegate: (any SendbirdUIKit.SBUMessageSearchViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel, params: SendbirdChatSDK.MessageSearchQueryParams? = nil, delegate: SendbirdUIKit.SBUMessageSearchViewModelDelegate? = nil) open func search(keyword: Swift.String) public func search(keyword: Swift.String, query: SendbirdChatSDK.MessageSearchQuery) public func loadMore() @@ -2463,13 +2508,13 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule { @objc @_Concurrency.MainActor(unsafe) open func inviteUserViewModel(_ viewModel: SendbirdUIKit.SBUInviteUserViewModel, didInviteUserIds userIds: [Swift.String]) @_Concurrency.MainActor(unsafe) @objc override open func baseSelectedUserViewModel(_ viewModel: SendbirdUIKit.SBUBaseSelectUserViewModel, didUpdateSelectedUsers selectedUsers: [SendbirdUIKit.SBUUser]?) } -@objc public protocol SBUViewLifeCycle { - @objc func setupViews() - @objc func setupStyles() - @objc func updateStyles() - @objc func setupLayouts() - @objc func updateLayouts() - @objc func setupActions() +public protocol SBUViewLifeCycle { + func setupViews() + func setupStyles() + func updateStyles() + func setupLayouts() + func updateLayouts() + func setupActions() } public typealias SBUNewNotificationInfoHandler = () -> Swift.Void extension SendbirdUIKit.SBUBaseChannelViewController { @@ -2550,11 +2595,11 @@ public protocol SBUOpenChannelSettingsModuleListDataSource : SendbirdUIKit.SBUBa } extension SendbirdUIKit.SBUOpenChannelSettingsModule { @_inheritsConvenienceInitializers @objc(SBUOpenChannelSettingsModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelSettingsModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource? { get set } @@ -2566,7 +2611,7 @@ extension SendbirdUIKit.SBUOpenChannelSettingsModule { @available(*, unavailable, renamed: "SBUOpenChannelSettingsModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupItems() @_Concurrency.MainActor(unsafe) open func createModerationsItem() -> SendbirdUIKit.SBUChannelSettingItem @@ -2632,13 +2677,13 @@ extension SendbirdUIKit.SBUGroupChannelPushSettingsModule { } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUGroupChannelPushSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUGroupChannelPushSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -2671,7 +2716,7 @@ extension SendbirdUIKit.SBUSelectablePhotoViewDelegate { set _modify } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUSelectablePhotoViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUSelectablePhotoViewDelegate? @objc @_Concurrency.MainActor(unsafe) public var fetchResult: Photos.PHFetchResult @objc @_Concurrency.MainActor(unsafe) public var columnSize: CoreFoundation.CGSize { @objc get @@ -2704,11 +2749,11 @@ public protocol SBUOpenChannelSettingsViewModelDelegate : SendbirdUIKit.SBUBaseC func openChannelSettingsViewModel(_ viewModel: SendbirdUIKit.SBUOpenChannelSettingsViewModel, didDeleteChannel channel: SendbirdChatSDK.OpenChannel) } @objc open class SBUOpenChannelSettingsViewModel : SendbirdUIKit.SBUBaseChannelSettingsViewModel { - weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String?) override public func updateChannel(channelName: Swift.String? = nil, coverImage: UIKit.UIImage? = nil) @@ -2747,8 +2792,8 @@ extension SendbirdUIKit.SBUOpenChannelSettingsViewModel : SendbirdChatSDK.OpenCh set } public init(wrappedValue: T) - public init(from decoder: any Swift.Decoder) throws - public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws } public protocol SBUQuoteMessageInputViewProtocol : SendbirdUIKit.SBUViewLifeCycle { func configure(with configuration: SendbirdUIKit.SBUQuoteMessageInputViewParams) @@ -2856,9 +2901,9 @@ extension SendbirdUIKit.SBUBaseChannelViewModel : SendbirdChatSDK.BaseChannelDel public static var descBottomMargin: CoreFoundation.CGFloat public static var stackSpacing: CoreFoundation.CGFloat } - @_Concurrency.MainActor(unsafe) @objc override open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func configure(model: SendbirdUIKit.SBUMessageWebViewModel) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init(coder: Foundation.NSCoder) @@ -2871,12 +2916,12 @@ extension SendbirdUIKit.SBUBaseChannelViewModel : SendbirdChatSDK.BaseChannelDel @objc deinit } extension SendbirdUIKit.SBUTableViewCell : SendbirdUIKit.SBUViewLifeCycle { - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupActions() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupViews() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupLayouts() + @objc @_Concurrency.MainActor(unsafe) dynamic open func updateLayouts() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupStyles() + @objc @_Concurrency.MainActor(unsafe) dynamic open func updateStyles() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupActions() } public protocol SBUMessageCellProtocol { func configure(with configuration: SendbirdUIKit.SBUBaseMessageCellParams) @@ -2992,6 +3037,7 @@ public protocol SBUMessageCellProtocol { @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapQuotedMessageView quotedMessageView: SendbirdUIKit.SBUQuotedBaseMessageView) @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMentionUser user: SendbirdUIKit.SBUUser) @objc @_Concurrency.MainActor(unsafe) open func groupChannelModuleDidTapThreadInfoView(_ threadInfoView: SendbirdUIKit.SBUThreadInfoView) + @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didSelectQuickReplyOption text: Swift.String) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModule(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, didTapVoiceMessage fileMessage: SendbirdChatSDK.FileMessage, cell: UIKit.UITableViewCell, forRowAt indexPath: Foundation.IndexPath) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModuleDidTapScrollToButton(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModule(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, didScroll scrollView: UIKit.UIScrollView) @@ -3015,8 +3061,8 @@ public protocol SBUMessageCellProtocol { @objc @_Concurrency.MainActor(unsafe) open func voiceMessageInputView(_ inputView: SendbirdUIKit.SBUVoiceMessageInputView, didTapSend voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo) } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelCommonContentView : SendbirdUIKit.SBUCommonContentView { - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -3138,11 +3184,11 @@ public protocol SBUGroupChannelListModuleListDataSource : SendbirdUIKit.SBUBaseC extension SendbirdUIKit.SBUGroupChannelListModule { @_inheritsConvenienceInitializers @objc(SBUGroupChannelListModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelListModule.List { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUGroupChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelListModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelListModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelListModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelListModuleListDataSource? { get set } @@ -3154,7 +3200,7 @@ extension SendbirdUIKit.SBUGroupChannelListModule { @available(*, unavailable, renamed: "SBUGroupChannelListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelListModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelListModuleListDataSource, theme: SendbirdUIKit.SBUGroupChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelListModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelListModuleListDataSource, theme: SendbirdUIKit.SBUGroupChannelListTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUGroupChannelListTheme? = nil) @objc @_Concurrency.MainActor(unsafe) public func leaveContextualAction(with indexPath: Foundation.IndexPath) -> UIKit.UIContextualAction? @@ -3190,7 +3236,7 @@ public class SBUAlertButtonItem { @objc deinit } @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class SBUAlertView : ObjectiveC.NSObject { - public static func show(title: Swift.String, message: Swift.String? = nil, needInputField: Swift.Bool = false, placeHolder: Swift.String? = "", centerYRatio: CoreFoundation.CGFloat? = 1.0, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, confirmButtonItem: SendbirdUIKit.SBUAlertButtonItem, cancelButtonItem: SendbirdUIKit.SBUAlertButtonItem?, delegate: (any SendbirdUIKit.SBUAlertViewDelegate)? = nil, dismissHandler: (() -> Swift.Void)? = nil) + public static func show(title: Swift.String, message: Swift.String? = nil, needInputField: Swift.Bool = false, placeHolder: Swift.String? = "", centerYRatio: CoreFoundation.CGFloat? = 1.0, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, confirmButtonItem: SendbirdUIKit.SBUAlertButtonItem, cancelButtonItem: SendbirdUIKit.SBUAlertButtonItem?, delegate: SendbirdUIKit.SBUAlertViewDelegate? = nil, dismissHandler: (() -> Swift.Void)? = nil) public static func dismiss() @objc deinit } @@ -3234,7 +3280,7 @@ public protocol SBUBaseSelectUserViewModelDataSource : AnyObject { public var joinedUserIds: Swift.Set { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, inviteListType: SendbirdUIKit.ChannelInviteListType, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: (any SendbirdUIKit.SBUBaseSelectUserViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUBaseSelectUserViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, inviteListType: SendbirdUIKit.ChannelInviteListType, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: SendbirdUIKit.SBUBaseSelectUserViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUBaseSelectUserViewModelDataSource? = nil) public func loadChannel(channelURL: Swift.String, type: SendbirdChatSDK.ChannelType) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) public func preLoadNextUserList(indexPath: Foundation.IndexPath) @@ -3296,8 +3342,8 @@ extension SendbirdUIKit.SBUBaseChannelModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleInputDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelModuleInputDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleInputDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelModuleInputDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -3344,9 +3390,9 @@ extension SendbirdUIKit.SBUBaseChannelModule { @_Concurrency.MainActor(unsafe) public var position: SendbirdUIKit.MessagePosition @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() @_Concurrency.MainActor(unsafe) public func setAxis(_ axis: UIKit.NSLayoutConstraint.Axis) @_Concurrency.MainActor(unsafe) public func addArrangedSubview(_ view: UIKit.UIView) @_Concurrency.MainActor(unsafe) public func removeArrangedSubview(_ view: UIKit.UIView) @@ -3430,9 +3476,9 @@ extension SendbirdUIKit.SBUBaseChannelModule { get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -3493,8 +3539,8 @@ extension SendbirdUIKit.SBUConfig { public var channel: SendbirdUIKit.SBUConfig.OpenChannel.Channel @objc override dynamic public init() @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.OpenChannel { @@ -3506,13 +3552,13 @@ extension SendbirdUIKit.SBUConfig.OpenChannel { } public var input: SendbirdUIKit.SBUConfig.OpenChannel.Channel.Input @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.OpenChannel.Channel { @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class Input : SendbirdUIKit.SBUConfig.BaseInput { - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } } @@ -3531,16 +3577,16 @@ public protocol SBUSuggestedMentionListDelegate : AnyObject { get } @_Concurrency.MainActor(unsafe) public var isLimitGuideEnabled: Swift.Bool - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUSuggestedMentionListDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUSuggestedMentionListDelegate? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme @_Concurrency.MainActor(unsafe) public var showsUserId: Swift.Bool { get set } @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func register(userCell: UIKit.UITableViewCell, nib: UIKit.UINib? = nil) @_Concurrency.MainActor(unsafe) public func register(limitGuideCell: UIKit.UITableViewCell, nib: UIKit.UINib? = nil) @_Concurrency.MainActor(unsafe) @objc open func tableView(_ tableView: UIKit.UITableView, numberOfRowsInSection section: Swift.Int) -> Swift.Int @@ -3563,8 +3609,8 @@ extension SendbirdUIKit.SBUConfig { public var channelList: SendbirdUIKit.SBUConfig.GroupChannel.ChannelList public var setting: SendbirdUIKit.SBUConfig.GroupChannel.Setting @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3604,8 +3650,8 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { } public var input: SendbirdUIKit.SBUConfig.GroupChannel.Channel.Input @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3621,8 +3667,8 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3633,13 +3679,13 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel.Channel { @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class Input : SendbirdUIKit.SBUConfig.BaseInput { - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } } @@ -3654,7 +3700,7 @@ extension SendbirdUIKit.SBUConfig.GroupChannel.Channel { final public let type: SendbirdUIKit.SBUMessageTemplate.ActionType final public let data: Swift.String final public let alterData: Swift.String? - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } public enum ActionType : Swift.String, Swift.Decodable { @@ -3700,11 +3746,11 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var customMessageCell: SendbirdUIKit.SBUBaseMessageCell? { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageThreadModuleListDataSource? { get set } @@ -3714,7 +3760,7 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleListDelegate, dataSource: any SendbirdUIKit.SBUMessageThreadModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleListDelegate, dataSource: SendbirdUIKit.SBUMessageThreadModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -3840,11 +3886,11 @@ public protocol SBUInviteUserModuleHeaderDataSource : SendbirdUIKit.SBUBaseSelec } extension SendbirdUIKit.SBUInviteUserModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUInviteUserModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUInviteUserModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUInviteUserModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUInviteUserModuleHeaderDataSource? { get set } @@ -3853,7 +3899,7 @@ extension SendbirdUIKit.SBUInviteUserModule { @available(*, unavailable, renamed: "SBUInviteUserModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUInviteUserModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUInviteUserModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUInviteUserModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUInviteUserModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -4102,6 +4148,32 @@ extension SendbirdUIKit.SBUInviteUserModule { public static func restoreDefaultIcons() @objc deinit } +public protocol SBUQuickReplyViewDelegate : AnyObject { + func quickReplyView(_ view: SendbirdUIKit.SBUQuickReplyView, didSelectOption optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} +@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) public class SBUQuickReplyView : SendbirdUIKit.SBUView, SendbirdUIKit.SBUQuickReplyOptionViewDelegate { + @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView + @_Concurrency.MainActor(unsafe) public var topSpacer: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var options: [Swift.String] { + get + } + @_Concurrency.MainActor(unsafe) public var messageId: Swift.Int64? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUQuickReplyViewParams? { + get + } + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuickReplyViewDelegate? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUQuickReplyViewParams, delegate: SendbirdUIKit.SBUQuickReplyViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) public func createQuickReplyOptionViews(options: [Swift.String]) -> [SendbirdUIKit.SBUQuickReplyOptionView] + @_Concurrency.MainActor(unsafe) public func quickReplyOptionViewDidSelect(_ optionView: SendbirdUIKit.SBUQuickReplyOptionView) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelContentBaseMessageCell : SendbirdUIKit.SBUOpenChannelBaseMessageCell { @objc @_Concurrency.MainActor(unsafe) public var baseStackView: UIKit.UIStackView { @objc get @@ -4163,8 +4235,8 @@ public protocol SBUUserListViewModelDataSource : AnyObject { func userListViewModel(_ viewModel: SendbirdUIKit.SBUUserListViewModel, nextUserListForChannel channel: SendbirdChatSDK.BaseChannel?) -> [SendbirdUIKit.SBUUser]? } @objc open class SBUUserListViewModel : ObjectiveC.NSObject { - weak public var delegate: (any SendbirdUIKit.SBUUserListViewModelDelegate)? - weak public var dataSource: (any SendbirdUIKit.SBUUserListViewModelDataSource)? + weak public var delegate: SendbirdUIKit.SBUUserListViewModelDelegate? + weak public var dataSource: SendbirdUIKit.SBUUserListViewModelDataSource? public var channel: SendbirdChatSDK.BaseChannel? { get } @@ -4186,7 +4258,7 @@ public protocol SBUUserListViewModelDataSource : AnyObject { public var userListType: SendbirdUIKit.ChannelUserListType { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListType: SendbirdUIKit.ChannelUserListType, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, operatorListQuery: SendbirdChatSDK.OperatorListQuery? = nil, mutedMemberListQuery: SendbirdChatSDK.MemberListQuery? = nil, mutedParticipantListQuery: SendbirdChatSDK.MutedUserListQuery? = nil, bannedUserListQuery: SendbirdChatSDK.BannedUserListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: (any SendbirdUIKit.SBUUserListViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUUserListViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListType: SendbirdUIKit.ChannelUserListType, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, operatorListQuery: SendbirdChatSDK.OperatorListQuery? = nil, mutedMemberListQuery: SendbirdChatSDK.MemberListQuery? = nil, mutedParticipantListQuery: SendbirdChatSDK.MutedUserListQuery? = nil, bannedUserListQuery: SendbirdChatSDK.BannedUserListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: SendbirdUIKit.SBUUserListViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUUserListViewModelDataSource? = nil) @objc deinit public func loadChannel(channelURL: Swift.String, type: SendbirdChatSDK.ChannelType) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) @@ -4238,7 +4310,7 @@ extension SendbirdUIKit.SBUBaseChannelListModule { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelListModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelListModuleHeaderDelegate? @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @objc @_Concurrency.MainActor(unsafe) open func onTapLeftBarButton() @@ -4324,7 +4396,7 @@ public protocol SBUThreadInfoViewProtocol : SendbirdUIKit.SBUViewLifeCycle { set _modify } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUThreadInfoViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUThreadInfoViewDelegate? @_Concurrency.MainActor(unsafe) public var threadInfo: SendbirdChatSDK.ThreadInfo? { get } @@ -4339,11 +4411,11 @@ public protocol SBUThreadInfoViewProtocol : SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) final public let repliedUserLimit: Swift.Int @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageCellTheme) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupActions() @_Concurrency.MainActor(unsafe) open func configure(with message: SendbirdChatSDK.BaseMessage, messagePosition: SendbirdUIKit.MessagePosition) @_Concurrency.MainActor(unsafe) open func setupRepliedUsers() @objc @_Concurrency.MainActor(unsafe) open func onTapThreadInfo(sender: UIKit.UITapGestureRecognizer) @@ -4367,7 +4439,7 @@ public protocol SBUMessageThreadTitleViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadTitleViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadTitleViewDelegate? @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme { get set @@ -4377,10 +4449,10 @@ public protocol SBUMessageThreadTitleViewDelegate : AnyObject { get } @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUMessageThreadTitleViewDelegate)? = nil) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUMessageThreadTitleViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @objc @_Concurrency.MainActor(unsafe) open func onTapChannelName(sender: UIKit.UITapGestureRecognizer) @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?, title: Swift.String?) @@ -4514,11 +4586,11 @@ public protocol SBUCreateChannelTypeSelectorProtocol { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "CreateChannelTypeSelectView.init(delegate:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUCreateChannelTypeSelectorDelegate)?) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUCreateChannelTypeSelectorDelegate?) + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func updateStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func show() @_Concurrency.MainActor(unsafe) open func dismiss() @objc @_Concurrency.MainActor(unsafe) open func onClickClose() @@ -4693,8 +4765,8 @@ public enum UserListType : Swift.Hashable { case mutedMembers @available(*, unavailable, renamed: "banned") case bannedMembers - public static func == (a: SendbirdUIKit.UserListType, b: SendbirdUIKit.UserListType) -> Swift.Bool public func hash(into hasher: inout Swift.Hasher) + public static func == (a: SendbirdUIKit.UserListType, b: SendbirdUIKit.UserListType) -> Swift.Bool public var hashValue: Swift.Int { get } @@ -4931,7 +5003,7 @@ public protocol SBUParentMessageInfoViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles() - @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.BaseMessage?, delegate: (any SendbirdUIKit.SBUParentMessageInfoViewDelegate)?, useReaction: Swift.Bool = false, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) + @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.BaseMessage?, delegate: SendbirdUIKit.SBUParentMessageInfoViewDelegate?, useReaction: Swift.Bool = false, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) @_Concurrency.MainActor(unsafe) open func setupActions() @objc @_Concurrency.MainActor(unsafe) open func onTapUserProfileView(sender: UIKit.UITapGestureRecognizer) @objc @_Concurrency.MainActor(unsafe) open func onTapContentView(sender: UIKit.UITapGestureRecognizer) @@ -4950,13 +5022,14 @@ public protocol SBUParentMessageInfoViewDelegate : AnyObject { public static var fileMessageParamsSendBuilder: ((_ params: SendbirdChatSDK.FileMessageCreateParams?) -> Swift.Void)? public static var voiceFileMessageParamsSendBuilder: ((_ params: SendbirdChatSDK.FileMessageCreateParams?) -> Swift.Void)? public static var messageListParamsBuilder: ((_ params: SendbirdChatSDK.MessageListParams?) -> Swift.Void)? + public static var cardViewParamsCollectionBuilder: ((_ messageData: Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams])? @objc deinit } public protocol SBUCreateOpenChannelViewModelDelegate : SendbirdUIKit.SBUCommonViewModelDelegate { func createOpenChannelViewModel(_ viewModel: SendbirdUIKit.SBUCreateOpenChannelViewModel, didCreateChannel channel: SendbirdChatSDK.BaseChannel?) } open class SBUCreateOpenChannelViewModel { - public init(delegate: (any SendbirdUIKit.SBUCreateOpenChannelViewModelDelegate)?) + public init(delegate: SendbirdUIKit.SBUCreateOpenChannelViewModelDelegate?) public func createChannel(channelName: Swift.String, coverImage: UIKit.UIImage?) public func createChannel(params: SendbirdChatSDK.OpenChannelCreateParams) @objc deinit @@ -4967,6 +5040,27 @@ extension SendbirdUIKit.SBUView { @available(*, unavailable, renamed: "updateLayouts()") @_Concurrency.MainActor(unsafe) public func updateAutolayout() } +public protocol SBUQuickReplyOptionViewDelegate : AnyObject { + func quickReplyOptionViewDidSelect(_ optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUQuickReplyOptionView : SendbirdUIKit.SBUView { + @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme + @_Concurrency.MainActor(unsafe) public var selectableStackView: SendbirdUIKit.SBUSelectableStackView + @_Concurrency.MainActor(unsafe) public var textView: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var text: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuickReplyOptionViewDelegate? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupActions() + @objc @_Concurrency.MainActor(unsafe) public func onSelectOption() + @_Concurrency.MainActor(unsafe) public func configure(with optionText: Swift.String, delegate: SendbirdUIKit.SBUQuickReplyOptionViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @objc public protocol SBUQuotedMessageViewDelegate { @objc func didTapQuotedMessageView(_ quotedMessageView: SendbirdUIKit.SBUQuotedBaseMessageView) } @@ -5011,13 +5105,13 @@ extension SendbirdUIKit.SBUView { set } @_Concurrency.MainActor(unsafe) public var mainContainerView: SendbirdUIKit.SBUSelectableStackView - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUQuotedMessageViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuotedMessageViewDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupActions() @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @objc @_Concurrency.MainActor(unsafe) open func didTapQuotedMessageView(sender: UIKit.UITapGestureRecognizer) @objc deinit @@ -5066,7 +5160,7 @@ extension UIKit.UIImage { @objc get @objc set } - @_Concurrency.MainActor(unsafe) public var quotedMessageView: (any UIKit.UIView & SendbirdUIKit.SBUQuotedMessageViewProtocol)? { + @_Concurrency.MainActor(unsafe) public var quotedMessageView: (UIKit.UIView & SendbirdUIKit.SBUQuotedMessageViewProtocol)? { get set } @@ -5077,7 +5171,7 @@ extension UIKit.UIImage { @objc @_Concurrency.MainActor(unsafe) public var threadInfoSpacing: UIKit.UIView { @objc get } - @_Concurrency.MainActor(unsafe) public var threadInfoView: (any UIKit.UIView & SendbirdUIKit.SBUThreadInfoViewProtocol)? { + @_Concurrency.MainActor(unsafe) public var threadInfoView: (UIKit.UIView & SendbirdUIKit.SBUThreadInfoViewProtocol)? { get set } @@ -5130,12 +5224,12 @@ extension SendbirdUIKit.SBUModerationsModule { @objc @_Concurrency.MainActor(unsafe) public var tableView: UIKit.UITableView @objc @_Concurrency.MainActor(unsafe) public var moderationCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUModerationsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUModerationsModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUModerationsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUModerationsModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUModerationsModuleListDelegate, dataSource: any SendbirdUIKit.SBUModerationsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUModerationsModuleListDelegate, dataSource: SendbirdUIKit.SBUModerationsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc deinit @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @@ -5165,15 +5259,15 @@ extension SendbirdUIKit.SBUOpenChannelViewModelDelegate { public func openChannelViewModel(_ viewModel: SendbirdUIKit.SBUOpenChannelViewModel, userDidExit user: SendbirdChatSDK.User, forChannel channel: SendbirdChatSDK.OpenChannel) } @objc open class SBUOpenChannelViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUOpenChannelViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUOpenChannelViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUOpenChannelViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = nil, delegate: (any SendbirdUIKit.SBUOpenChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUOpenChannelViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = nil, delegate: SendbirdUIKit.SBUOpenChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUOpenChannelViewModelDataSource? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) override public func refreshChannel() @@ -5277,6 +5371,17 @@ extension SendbirdUIKit.SBUGroupChannelViewController { get } } +public struct SBUCardViewParams { + public let imageURL: Swift.String? + public let title: Swift.String? + public let subtitle: Swift.String? + public let description: Swift.String? + public let link: Swift.String? + public var hasLink: Swift.Bool { + get + } + public init(imageURL: Swift.String? = nil, title: Swift.String? = nil, subtitle: Swift.String? = nil, description: Swift.String? = nil, link: Swift.String? = nil) +} public protocol SBUUserListModuleListDelegate : SendbirdUIKit.SBUCommonDelegate { func userListModule(_ listComponent: SendbirdUIKit.SBUUserListModule.List, didSelectRowAt indexPath: Foundation.IndexPath) func userListModule(_ listComponent: SendbirdUIKit.SBUUserListModule.List, didDetectPreloadingPosition indexPath: Foundation.IndexPath) @@ -5298,8 +5403,8 @@ extension SendbirdUIKit.SBUUserListModule { @objc @_Concurrency.MainActor(unsafe) public var userCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserListModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUUserListModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserListModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUUserListModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -5312,7 +5417,7 @@ extension SendbirdUIKit.SBUUserListModule { @available(*, unavailable, renamed: "SBUUserListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUUserListModuleListDelegate, dataSource: any SendbirdUIKit.SBUUserListModuleListDataSource, userListType: SendbirdUIKit.ChannelUserListType, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUUserListModuleListDelegate, dataSource: SendbirdUIKit.SBUUserListModuleListDataSource, userListType: SendbirdUIKit.ChannelUserListType, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUUserListTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -5344,11 +5449,11 @@ public protocol SBUInviteUserModuleListDataSource : SendbirdUIKit.SBUBaseSelectU } extension SendbirdUIKit.SBUInviteUserModule { @_inheritsConvenienceInitializers @objc(SBUInviteUserModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUInviteUserModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUInviteUserModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUInviteUserModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUInviteUserModuleListDataSource? { get set } @@ -5357,7 +5462,7 @@ extension SendbirdUIKit.SBUInviteUserModule { @available(*, unavailable, renamed: "SBUInviteUserModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUInviteUserModuleListDelegate, dataSource: any SendbirdUIKit.SBUInviteUserModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUInviteUserModuleListDelegate, dataSource: SendbirdUIKit.SBUInviteUserModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } @@ -5397,11 +5502,11 @@ extension UIKit.UIStackView { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "UserNameView(username:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func updateLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func updateStyles() @_Concurrency.MainActor(unsafe) open func configure(username: Swift.String, isOverlay: Swift.Bool = false) @_Concurrency.MainActor(unsafe) public func setUsernameColor(_ color: UIKit.UIColor) @objc deinit @@ -5460,6 +5565,11 @@ extension SendbirdUIKit.SBUModerationsViewController { public static func loadAllEmojis(completionHandler: @escaping (_ container: SendbirdChatSDK.EmojiContainer?, _ error: SendbirdChatSDK.SBError?) -> Swift.Void) @objc deinit } +public struct SBUQuickReplyViewParams { + public let messageId: Swift.Int64 + public let replyOptions: [Swift.String] + public init(messageId: Swift.Int64, replyOptions: [Swift.String]) +} open class SBUOpenChannelSettingsModule { public static var HeaderComponent: SendbirdUIKit.SBUOpenChannelSettingsModule.Header.Type public static var ListComponent: SendbirdUIKit.SBUOpenChannelSettingsModule.List.Type @@ -5488,8 +5598,8 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule { @objc @_Concurrency.MainActor(unsafe) public var tableView: UIKit.UITableView @objc @_Concurrency.MainActor(unsafe) public var channelInfoView: UIKit.UIView? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelSettingsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelSettingsModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelSettingsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelSettingsModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -5569,7 +5679,7 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule.List : UIKit.UITableViewDat @_Concurrency.MainActor(unsafe) required public init(channelURL: Swift.String, startingPoint: Swift.Int64? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillAppear(_ animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillTransition(to size: CoreFoundation.CGSize, with coordinator: any UIKit.UIViewControllerTransitionCoordinator) + @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillTransition(to size: CoreFoundation.CGSize, with coordinator: UIKit.UIViewControllerTransitionCoordinator) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillDisappear(_ animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLayoutSubviews() @objc deinit @@ -5615,8 +5725,8 @@ public protocol SBUCreateChannelViewModelDataSource : AnyObject { func createChannelViewModel(_ viewModel: SendbirdUIKit.SBUCreateChannelViewModel, nextUserListForChannelType channelType: SendbirdUIKit.ChannelCreationType) -> [SendbirdUIKit.SBUUser]? } open class SBUCreateChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUCreateChannelViewModelDelegate)? - weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelViewModelDataSource)? + weak public var delegate: SendbirdUIKit.SBUCreateChannelViewModelDelegate? + weak public var dataSource: SendbirdUIKit.SBUCreateChannelViewModelDataSource? public var channelType: SendbirdUIKit.ChannelCreationType { get } @@ -5629,7 +5739,7 @@ open class SBUCreateChannelViewModel { public var userListQuery: SendbirdChatSDK.ApplicationUserListQuery? { get } - public init(channelType: SendbirdUIKit.ChannelCreationType = .group, users: [SendbirdUIKit.SBUUser]? = nil, delegate: (any SendbirdUIKit.SBUCreateChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUCreateChannelViewModelDataSource)? = nil) + public init(channelType: SendbirdUIKit.ChannelCreationType = .group, users: [SendbirdUIKit.SBUUser]? = nil, delegate: SendbirdUIKit.SBUCreateChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUCreateChannelViewModelDataSource? = nil) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) public func preLoadNextUserList(indexPath: Foundation.IndexPath) public func resetUserList() @@ -5654,9 +5764,9 @@ open class SBUCreateChannelViewModel { @_Concurrency.MainActor(unsafe) public var imageDownloadTask: Foundation.URLSessionTask? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(urlString: Swift.String, imageSize: CoreFoundation.CGFloat? = SBUMessageProfileView.imageSize) @objc deinit } @@ -5771,9 +5881,9 @@ extension SendbirdUIKit.SBUGroupChannelPushSettingsModule { @_Concurrency.MainActor(unsafe) public var pushTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate)?, dataSource: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource)?, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate?, dataSource: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource?, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil) @@ -5866,7 +5976,7 @@ public protocol SBUGroupChannelListViewModelDelegate : SendbirdUIKit.SBUBaseChan public var channelListQuery: SendbirdChatSDK.GroupChannelListQuery? { get } - public init(delegate: (any SendbirdUIKit.SBUGroupChannelListViewModelDelegate)? = nil, channelListQuery: SendbirdChatSDK.GroupChannelListQuery? = nil) + public init(delegate: SendbirdUIKit.SBUGroupChannelListViewModelDelegate? = nil, channelListQuery: SendbirdChatSDK.GroupChannelListQuery? = nil) @objc deinit override public func initChannelList() override public func loadNextChannelList(reset: Swift.Bool) @@ -6034,7 +6144,8 @@ public class SBUUserMessageCellParams : SendbirdUIKit.SBUBaseMessageCellParams { } final public let useReaction: Swift.Bool final public let withTextView: Swift.Bool - public init(message: SendbirdChatSDK.UserMessage, hideDateView: Swift.Bool, useMessagePosition: Swift.Bool, groupPosition: SendbirdUIKit.MessageGroupPosition = .none, receiptState: SendbirdUIKit.SBUMessageReceiptState = .none, useReaction: Swift.Bool = false, withTextView: Swift.Bool, isThreadMessage: Swift.Bool = false, joinedAt: Swift.Int64 = 0) + final public let shouldHideQuickReply: Swift.Bool + public init(message: SendbirdChatSDK.UserMessage, hideDateView: Swift.Bool, useMessagePosition: Swift.Bool, groupPosition: SendbirdUIKit.MessageGroupPosition = .none, receiptState: SendbirdUIKit.SBUMessageReceiptState = .none, useReaction: Swift.Bool = false, withTextView: Swift.Bool, isThreadMessage: Swift.Bool = false, joinedAt: Swift.Int64 = 0, shouldHideQuickReply: Swift.Bool = true) @objc deinit } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUMessageSearchResultCell : SendbirdUIKit.SBUTableViewCell { @@ -6139,9 +6250,9 @@ extension SendbirdUIKit.SBUBaseSelectUserModule { @_Concurrency.MainActor(unsafe) public var progressTimeLabel: UIKit.UILabel @_Concurrency.MainActor(unsafe) public var statusButton: UIKit.UIButton @_Concurrency.MainActor(unsafe) public var voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo? - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -6420,8 +6531,8 @@ public protocol SBUMessageInputViewDataSource : AnyObject { @_Concurrency.MainActor(unsafe) public var mentionedAttributes: [Foundation.NSAttributedString.Key : Any] { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageInputViewDelegate)? - @_Concurrency.MainActor(unsafe) weak public var datasource: (any SendbirdUIKit.SBUMessageInputViewDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageInputViewDelegate? + @_Concurrency.MainActor(unsafe) weak public var datasource: SendbirdUIKit.SBUMessageInputViewDataSource? @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var overlayTheme: SendbirdUIKit.SBUMessageInputTheme { get set @@ -6438,9 +6549,9 @@ public protocol SBUMessageInputViewDataSource : AnyObject { @_Concurrency.MainActor(unsafe) open func setMode(_ mode: SendbirdUIKit.SBUMessageInputMode, message: SendbirdChatSDK.BaseMessage? = nil) @_Concurrency.MainActor(unsafe) public func startQuoteReplyMode(message: SendbirdChatSDK.BaseMessage) @_Concurrency.MainActor(unsafe) public func endQuoteReplyMode() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @_Concurrency.MainActor(unsafe) public func startEditMode(text: Swift.String) @_Concurrency.MainActor(unsafe) public func endEditMode() @@ -6601,6 +6712,14 @@ extension SendbirdUIKit.SBUChatNotificationChannelModule { @objc @_Concurrency.MainActor(unsafe) public func didSelectRetry() } } +extension SendbirdChatSDK.UserMessage { + public var quickReply: SendbirdUIKit.SBUQuickReplyOptions? { + get + } + public var cardListData: [Swift.String : Any]? { + get + } +} open class SBUCreateOpenChannelModule { public static var HeaderComponent: SendbirdUIKit.SBUCreateOpenChannelModule.Header.Type public static var ProfileInputComponent: SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput.Type @@ -6658,7 +6777,7 @@ open class SBUCreateOpenChannelModule { public var currentRecordAccessStatus: AVFAudio.AVAudioSession.RecordPermission { get } - public func showPermissionAlert(forType permissionType: SendbirdUIKit.SBUPermissionManager.PermissionType, alertViewDelegate: (any SendbirdUIKit.SBUAlertViewDelegate)? = nil, onDismiss: SendbirdUIKit.AlertButtonHandler? = nil) + public func showPermissionAlert(forType permissionType: SendbirdUIKit.SBUPermissionManager.PermissionType, alertViewDelegate: SendbirdUIKit.SBUAlertViewDelegate? = nil, onDismiss: SendbirdUIKit.AlertButtonHandler? = nil) public func requestRecordAcess(onGranted: (() -> Swift.Void)? = nil, onDenied: (() -> Swift.Void)? = nil) public func requestPhotoAccessIfNeeded(completion: @escaping (SendbirdUIKit.SBUPhotoAccessibleStatus) -> Swift.Void) public func requestCameraAccess(for type: AVFoundation.AVMediaType, onGranted: (() -> Swift.Void)? = nil, onDenied: (() -> Swift.Void)? = nil) @@ -6689,6 +6808,30 @@ open class SBUMessageSearchModule { required public init(headerComponent: SendbirdUIKit.SBUMessageSearchModule.Header? = nil, listComponent: SendbirdUIKit.SBUMessageSearchModule.List? = nil) @objc deinit } +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUCardListView : SendbirdUIKit.SBUView { + public struct Metric { + public static var maxWidth: Swift.Double + } + @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView + @_Concurrency.MainActor(unsafe) public var topSpacer: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var items: [SendbirdUIKit.SBUCardViewParams] { + get + } + @_Concurrency.MainActor(unsafe) public var messageId: Swift.Int64? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUCardListViewParams? { + get + } + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUCardListViewParams) + @_Concurrency.MainActor(unsafe) public func createCardViews(items: [SendbirdUIKit.SBUCardViewParams]) -> [SendbirdUIKit.SBUCardView] + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} open class SBUMessageStateViewParams { final public let timestamp: Swift.Int64 final public let sendingState: SendbirdChatSDK.MessageSendingStatus @@ -6717,9 +6860,9 @@ open class SBUMessageStateViewParams { @_Concurrency.MainActor(unsafe) public var timeLabelCustomSize: CoreFoundation.CGSize? @_Concurrency.MainActor(unsafe) public init(sendingState: SendbirdChatSDK.MessageSendingStatus, receiptState: SendbirdUIKit.SBUMessageReceiptState, isQuotedReplyMessage: Swift.Bool = false) @_Concurrency.MainActor(unsafe) public init(isQuotedReplyMessage: Swift.Bool = false) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUMessageStateViewParams) @available(*, deprecated, renamed: "configure(with:)") @_Concurrency.MainActor(unsafe) open func configure(timestamp: Swift.Int64, sendingState: SendbirdChatSDK.MessageSendingStatus, receiptState: SendbirdUIKit.SBUMessageReceiptState?, position: SendbirdUIKit.MessagePosition) @@ -6773,13 +6916,13 @@ extension Foundation.NSArray { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc open func setupViews() - @_Concurrency.MainActor(unsafe) @objc open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func configure(image: UIKit.UIImage?, forMediaType mediaType: Photos.PHAssetMediaType) - @_Concurrency.MainActor(unsafe) @objc open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc open func setupActions() - @_Concurrency.MainActor(unsafe) @objc open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func updateStyles() @objc deinit } open class SBUGroupChannelListModule { @@ -6903,11 +7046,11 @@ public protocol SBURegisterOperatorModuleHeaderDataSource : SendbirdUIKit.SBUBas } extension SendbirdUIKit.SBURegisterOperatorModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource? { get set } @@ -6916,7 +7059,7 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @available(*, unavailable, renamed: "SBURegisterOperatorModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate, dataSource: SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -6965,6 +7108,11 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +public struct SBUCardListData : Swift.Codable where CardData : Swift.Decodable, CardData : Swift.Encodable { + public let recommends: [CardData] + public func encode(to encoder: Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws +} public class SBUUnknownMessageCellParams : SendbirdUIKit.SBUBaseMessageCellParams { public var unknownMessage: SendbirdChatSDK.BaseMessage { get @@ -7003,6 +7151,11 @@ extension SendbirdUIKit.SBUCoverImageView { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +public struct SBUCardListViewParams { + public let messageId: Swift.Int64 + public let items: [SendbirdUIKit.SBUCardViewParams] + public init(messageId: Swift.Int64, items: [SendbirdUIKit.SBUCardViewParams]) +} public protocol SBUBaseChannelModuleHeaderDelegate : SendbirdUIKit.SBUCommonDelegate { func baseChannelModule(_ headerComponent: SendbirdUIKit.SBUBaseChannelModule.Header, didUpdateTitleView titleView: UIKit.UIView?) func baseChannelModule(_ headerComponent: SendbirdUIKit.SBUBaseChannelModule.Header, didUpdateLeftItem leftItem: UIKit.UIBarButtonItem?) @@ -7027,7 +7180,7 @@ extension SendbirdUIKit.SBUBaseChannelModule { } @objc @_Concurrency.MainActor(unsafe) public var titleSpacer: UIKit.UIView @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUBaseChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUBaseChannelModule.Header()") @@ -7054,12 +7207,12 @@ public protocol SBUVoiceMessageInputViewDelegate : AnyObject { } @objc override dynamic public init() @objc deinit - @objc public func setupViews() - @objc public func setupLayouts() - @objc public func updateLayouts() - @objc public func setupStyles() - @objc public func updateStyles() - @objc public func setupActions() + public func setupViews() + public func setupLayouts() + public func updateLayouts() + public func setupStyles() + public func updateStyles() + public func setupActions() } extension SendbirdUIKit.SBUVoiceMessageInputView : SendbirdUIKit.SBUVoiceRecorderDelegate { public func voiceRecorderDidReceiveError(_ recorder: SendbirdUIKit.SBUVoiceRecorder, errorStatus: SendbirdUIKit.VoiceRecorderErrorStatus) @@ -7087,7 +7240,7 @@ public protocol SBUOpenChannelListViewModelDelegate : SendbirdUIKit.SBUBaseChann public var channelListQuery: SendbirdChatSDK.OpenChannelListQuery? { get } - public init(delegate: (any SendbirdUIKit.SBUOpenChannelListViewModelDelegate)?, channelListQuery: SendbirdChatSDK.OpenChannelListQuery?) + public init(delegate: SendbirdUIKit.SBUOpenChannelListViewModelDelegate?, channelListQuery: SendbirdChatSDK.OpenChannelListQuery?) @objc deinit override public func initChannelList() override public func loadNextChannelList(reset: Swift.Bool) @@ -7242,14 +7395,14 @@ extension SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate { } extension SendbirdUIKit.SBUMessageThreadModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelModule.Header, SendbirdUIKit.SBUMessageThreadTitleViewDelegate { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate? { get set } @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? { get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate, parentMessage: SendbirdChatSDK.BaseMessage?, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate, parentMessage: SendbirdChatSDK.BaseMessage?, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -7273,7 +7426,7 @@ extension SendbirdUIKit.SBUActionSheetDelegate { @objc deinit } @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class SBUActionSheet : ObjectiveC.NSObject { - public static func show(items: [SendbirdUIKit.SBUActionSheetItem], cancelItem: SendbirdUIKit.SBUActionSheetItem, identifier: Swift.Int = -1, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, delegate: (any SendbirdUIKit.SBUActionSheetDelegate)? = nil, dismissHandler: (() -> Swift.Void)? = nil) + public static func show(items: [SendbirdUIKit.SBUActionSheetItem], cancelItem: SendbirdUIKit.SBUActionSheetItem, identifier: Swift.Int = -1, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, delegate: SendbirdUIKit.SBUActionSheetDelegate? = nil, dismissHandler: (() -> Swift.Void)? = nil) public static func dismiss() @objc deinit } @@ -7284,11 +7437,11 @@ public protocol SBUGroupChannelPushSettingsViewModelDelegate : SendbirdUIKit.SBU public var currentTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption { get } - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate? = nil) open func changeNotification(_ pushTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption) public func updateChannelPushTriggerOption() @objc deinit @@ -7341,6 +7494,7 @@ public protocol SBUGroupChannelModuleListDelegate : SendbirdUIKit.SBUBaseChannel func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMoreEmojiForCell messageCell: SendbirdUIKit.SBUBaseMessageCell) func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMentionUser user: SendbirdUIKit.SBUUser) func groupChannelModuleDidTapThreadInfoView(_ threadInfoView: SendbirdUIKit.SBUThreadInfoView) + func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didSelectQuickReplyOption text: Swift.String) } public protocol SBUGroupChannelModuleListDataSource : SendbirdUIKit.SBUBaseChannelModuleListDataSource { func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, highlightInfoInTableView tableView: UIKit.UITableView) -> SendbirdUIKit.SBUHighlightMessageInfo? @@ -7366,18 +7520,18 @@ extension SendbirdUIKit.SBUGroupChannelModule { get } @objc @_Concurrency.MainActor(unsafe) public var isHighlightInfoAnimated: Swift.Bool - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelModuleListDataSource? { get set } @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func updateStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme = SBUTheme.componentTheme) @@ -7439,17 +7593,17 @@ extension SendbirdUIKit.SBUGroupChannelModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? + @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? @objc @_Concurrency.MainActor(unsafe) public var mentionManager: SendbirdUIKit.SBUMentionManager? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleInputDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelModuleInputDataSource, mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleInputDelegate, dataSource: SendbirdUIKit.SBUGroupChannelModuleInputDataSource, mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -7615,7 +7769,7 @@ extension SendbirdUIKit.SBUOpenChannelViewController { public protocol SBUBaseChannelListViewModelDelegate : SendbirdUIKit.SBUCommonViewModelDelegate { } @objc open class SBUBaseChannelListViewModel : ObjectiveC.NSObject { - public init(delegate: (any SendbirdUIKit.SBUBaseChannelListViewModelDelegate)?) + public init(delegate: SendbirdUIKit.SBUBaseChannelListViewModelDelegate?) @objc deinit public func initChannelList() public func loadNextChannelList(reset: Swift.Bool) @@ -7695,7 +7849,7 @@ public protocol SBUGroupChannelListModuleHeaderDelegate : SendbirdUIKit.SBUBaseC extension SendbirdUIKit.SBUGroupChannelListModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelListModule.Header { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUGroupChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate? { get set } @@ -7704,7 +7858,7 @@ extension SendbirdUIKit.SBUGroupChannelListModule { @available(*, unavailable, renamed: "SBUGroupChannelListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUGroupChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUGroupChannelListTheme) @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUGroupChannelListTheme? = nil) } } @@ -7805,8 +7959,8 @@ extension Foundation.Date { } @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -7823,9 +7977,9 @@ public typealias SBUNewMessageInfoHandler = () -> Swift.Void @_Concurrency.MainActor(unsafe) public init(type: SendbirdUIKit.NewMessageInfoItemType = .tooltip) @available(*, unavailable, renamed: "SBUNewMessageInfo.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @objc @_Concurrency.MainActor(unsafe) open func onClickNewMessageInfo() @_Concurrency.MainActor(unsafe) open func updateCount(count: Swift.Int, actionHandler: SendbirdUIKit.SBUNewMessageInfoHandler?) @@ -7883,6 +8037,16 @@ open class SBUInviteUserModule { get } @objc @_Concurrency.MainActor(unsafe) public var webView: SendbirdUIKit.SBUMessageWebView + @objc @_Concurrency.MainActor(unsafe) public var shouldHideQuickReply: Swift.Bool { + get + } + @objc @_Concurrency.MainActor(unsafe) public var quickReplyView: SendbirdUIKit.SBUQuickReplyView? { + get + } + @objc @_Concurrency.MainActor(unsafe) public var quickReplySelectHandler: ((_ selectedOptionView: SendbirdUIKit.SBUQuickReplyOptionView) -> Swift.Void)? + @objc @_Concurrency.MainActor(unsafe) public var cardListView: SendbirdUIKit.SBUCardListView? { + get + } @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() @@ -7895,11 +8059,16 @@ open class SBUInviteUserModule { @_Concurrency.MainActor(unsafe) override open func configure(highlightInfo: SendbirdUIKit.SBUHighlightMessageInfo?) @_Concurrency.MainActor(unsafe) @objc override dynamic public func setSelected(_ selected: Swift.Bool, animated: Swift.Bool) @objc @_Concurrency.MainActor(unsafe) open func onTapWebview(sender: UIKit.UITapGestureRecognizer) + @objc @_Concurrency.MainActor(unsafe) public func updateQuickReplyView(with options: [Swift.String]) + @_Concurrency.MainActor(unsafe) public func addCardListView(with items: [SendbirdUIKit.SBUCardViewParams]) @objc @_Concurrency.MainActor(unsafe) open func userMessageTextView(_ textView: SendbirdUIKit.SBUUserMessageTextView, didTapMention user: SendbirdUIKit.SBUUser) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(style: UIKit.UITableViewCell.CellStyle, reuseIdentifier: Swift.String?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +extension SendbirdUIKit.SBUUserMessageCell : SendbirdUIKit.SBUQuickReplyViewDelegate { + @objc @_Concurrency.MainActor(unsafe) dynamic public func quickReplyView(_ view: SendbirdUIKit.SBUQuickReplyView, didSelectOption optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelSettingCell : SendbirdUIKit.SBUBaseChannelSettingCell { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(style: UIKit.UITableViewCell.CellStyle, reuseIdentifier: Swift.String?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @@ -7990,11 +8159,11 @@ public protocol SBUGroupChannelSettingsModuleHeaderDataSource : SendbirdUIKit.SB } extension SendbirdUIKit.SBUGroupChannelSettingsModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelSettingsModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource? { get set } @@ -8003,7 +8172,7 @@ extension SendbirdUIKit.SBUGroupChannelSettingsModule { @available(*, unavailable, renamed: "SBUGroupChannelSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -8097,11 +8266,11 @@ public protocol SBUOpenChannelListModuleListDataSource : SendbirdUIKit.SBUBaseCh extension SendbirdUIKit.SBUOpenChannelListModule { @_inheritsConvenienceInitializers @objc(SBUOpenChannelListModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelListModule.List { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUOpenChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelListModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelListModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelListModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelListModuleListDataSource? { get set } @@ -8113,7 +8282,7 @@ extension SendbirdUIKit.SBUOpenChannelListModule { @available(*, unavailable, renamed: "SBUOpenChannelListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelListModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelListModuleListDataSource, theme: SendbirdUIKit.SBUOpenChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelListModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelListModuleListDataSource, theme: SendbirdUIKit.SBUOpenChannelListTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUOpenChannelListTheme? = nil) } @@ -8141,7 +8310,7 @@ public protocol SBUMentionManagerDataSource : AnyObject { public var defaultTextAttributes: [Foundation.NSAttributedString.Key : Any] public var mentionTextAttributes: [Foundation.NSAttributedString.Key : Any] @objc override dynamic public init() - public func configure(delegate: (any SendbirdUIKit.SBUMentionManagerDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, defaultTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil, mentionTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil) + public func configure(delegate: SendbirdUIKit.SBUMentionManagerDelegate? = nil, dataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, defaultTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil, mentionTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil) @discardableResult public func addMention(at textView: UIKit.UITextView, user: SendbirdUIKit.SBUUser) -> Swift.Bool public func clearMentions(_ mentions: [SendbirdUIKit.SBUMention], with replaceText: Swift.String = "", on textView: UIKit.UITextView, at range: Foundation.NSRange) @@ -8208,7 +8377,7 @@ public protocol SBUMessageThreadViewControllerDelegate : AnyObject { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadViewControllerDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadViewControllerDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public var channel: SendbirdChatSDK.GroupChannel? { @objc get } @@ -8217,7 +8386,7 @@ public protocol SBUMessageThreadViewControllerDelegate : AnyObject { } @available(*, unavailable) @_Concurrency.MainActor(unsafe) required public init(channelURL: Swift.String, startingPoint: Swift.Int64? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil) - @_Concurrency.MainActor(unsafe) required public init(channel: SendbirdChatSDK.GroupChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = nil, delegate: (any SendbirdUIKit.SBUMessageThreadViewControllerDelegate)? = nil, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) + @_Concurrency.MainActor(unsafe) required public init(channel: SendbirdChatSDK.GroupChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = nil, delegate: SendbirdUIKit.SBUMessageThreadViewControllerDelegate? = nil, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarStyle: UIKit.UIStatusBarStyle { @objc get } @@ -8301,7 +8470,7 @@ public protocol SBUFileViewControllerDelegate : AnyObject { @objc set } @objc @_Concurrency.MainActor(unsafe) public var bottomView: UIKit.UIView - @_Concurrency.MainActor(unsafe) required public init(fileMessage: SendbirdChatSDK.FileMessage, delegate: (any SendbirdUIKit.SBUFileViewControllerDelegate)?) + @_Concurrency.MainActor(unsafe) required public init(fileMessage: SendbirdChatSDK.FileMessage, delegate: SendbirdUIKit.SBUFileViewControllerDelegate?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillAppear(_ animated: Swift.Bool) @@ -8387,14 +8556,14 @@ public protocol SBUVoiceRecorderDelegate : AnyObject { public var progressTimer: Foundation.Timer? { get } - public init(delegate: (any SendbirdUIKit.SBUVoiceRecorderDelegate)?) + public init(delegate: SendbirdUIKit.SBUVoiceRecorderDelegate?) @objc deinit @discardableResult public func record() -> Swift.Bool public func stop() public func resetRecorder() @objc public func audioRecorderDidFinishRecording(_ recorder: AVFAudio.AVAudioRecorder, successfully success: Swift.Bool) - @objc public func audioRecorderEncodeErrorDidOccur(_ recorder: AVFAudio.AVAudioRecorder, error: (any Swift.Error)?) + @objc public func audioRecorderEncodeErrorDidOccur(_ recorder: AVFAudio.AVAudioRecorder, error: Swift.Error?) } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUBaseFileContentView : SendbirdUIKit.SBUView { @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme { @@ -8455,9 +8624,9 @@ extension SendbirdUIKit.SBUMessageCellTheme { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "SBUNavigationTitleView.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @_Concurrency.MainActor(unsafe) public func configure(title: Swift.String?) @@ -8504,7 +8673,7 @@ public protocol SBUVoicePlayerDelegate : AnyObject { public var progressTimer: Foundation.Timer? { get } - public init(delegate: (any SendbirdUIKit.SBUVoicePlayerDelegate)?) + public init(delegate: SendbirdUIKit.SBUVoicePlayerDelegate?) public func configure(voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo) @objc deinit public func play(fromTime time: Foundation.TimeInterval = 0) @@ -8512,7 +8681,7 @@ public protocol SBUVoicePlayerDelegate : AnyObject { public func stop() public func resetPlayer() @objc public func audioPlayerDidFinishPlaying(_ player: AVFAudio.AVAudioPlayer, successfully success: Swift.Bool) - @objc public func audioPlayerDecodeErrorDidOccur(_ player: AVFAudio.AVAudioPlayer, error: (any Swift.Error)?) + @objc public func audioPlayerDecodeErrorDidOccur(_ player: AVFAudio.AVAudioPlayer, error: Swift.Error?) } public protocol SBUOpenChannelModuleMediaDelegate : AnyObject { func openChannelModule(_ mediaComponent: SendbirdUIKit.SBUOpenChannelModule.Media, didTapMediaView mediaView: UIKit.UIView) @@ -8521,8 +8690,8 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class Media : UIKit.UIView { @_Concurrency.MainActor(unsafe) public var mediaView: UIKit.UIView @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleMediaDelegate)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleMediaDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleMediaDelegate? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleMediaDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -8544,11 +8713,11 @@ public protocol SBUGroupChannelSettingsModuleListDataSource : SendbirdUIKit.SBUB } extension SendbirdUIKit.SBUGroupChannelSettingsModule { @_inheritsConvenienceInitializers @objc(SBUGroupChannelSettingsModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelSettingsModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource? { get set } @@ -8560,7 +8729,7 @@ extension SendbirdUIKit.SBUGroupChannelSettingsModule { @available(*, unavailable, renamed: "SBUGroupChannelSettingsModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupItems() @_Concurrency.MainActor(unsafe) open func createModerationsItem() -> SendbirdUIKit.SBUChannelSettingItem @@ -8598,13 +8767,13 @@ extension SendbirdUIKit.SBUMessageSearchModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageSearchTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUMessageSearchModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUMessageSearchModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate, theme: SendbirdUIKit.SBUMessageSearchTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate, theme: SendbirdUIKit.SBUMessageSearchTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageSearchTheme? = nil) @@ -8965,7 +9134,7 @@ public class SBUMessageCellTheme { public static var overlay: SendbirdUIKit.SBUMessageCellTheme { get } - public init(backgroundColor: UIKit.UIColor = SBUColorSet.background50, leftBackgroundColor: UIKit.UIColor = SBUColorSet.background100, leftPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary100, rightBackgroundColor: UIKit.UIColor = SBUColorSet.primary300, rightPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary400, openChannelBackgroundColor: UIKit.UIColor = .clear, openChannelPressedBackgroundColor: UIKit.UIColor = SBUColorSet.background100, dateFont: UIKit.UIFont = SBUFontSet.caption1, dateTextColor: UIKit.UIColor = SBUColorSet.ondark01, dateBackgroundColor: UIKit.UIColor = SBUColorSet.overlay02, userPlaceholderBackgroundColor: UIKit.UIColor = SBUColorSet.background300, userPlaceholderTintColor: UIKit.UIColor = SBUColorSet.ondark01, userNameFont: UIKit.UIFont = SBUFontSet.caption1, userNameTextColor: UIKit.UIColor = SBUColorSet.onlight02, currentUserNameTextColor: UIKit.UIColor = SBUColorSet.secondary300, timeFont: UIKit.UIFont = SBUFontSet.caption4, timeTextColor: UIKit.UIColor = SBUColorSet.onlight03, pendingStateColor: UIKit.UIColor = SBUColorSet.primary300, failedStateColor: UIKit.UIColor = SBUColorSet.error300, succeededStateColor: UIKit.UIColor = SBUColorSet.onlight03, readReceiptStateColor: UIKit.UIColor = SBUColorSet.secondary300, deliveryReceiptStateColor: UIKit.UIColor = SBUColorSet.onlight03, userMessageFont: UIKit.UIFont = SBUFontSet.body3, userMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageLeftEditTextColor: UIKit.UIColor = SBUColorSet.onlight02, userMessageLeftHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, userMessageRightEditTextColor: UIKit.UIColor = SBUColorSet.ondark02, userMessageRightHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileIconBackgroundColor: UIKit.UIColor = SBUColorSet.background50, fileImageBackgroundColor: UIKit.UIColor = SBUColorSet.ondark01, fileImageIconColor: UIKit.UIColor = SBUColorSet.onlight02, fileIconColor: UIKit.UIColor = SBUColorSet.primary300, fileMessageNameFont: UIKit.UIFont = SBUFontSet.body3, fileMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, fileMessagePlaceholderColor: UIKit.UIColor = SBUColorSet.onlight02, adminMessageFont: UIKit.UIFont = SBUFontSet.caption2, adminMessageTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescFont: UIKit.UIFont = SBUFontSet.body3, unknownMessageDescLeftTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescRightTextColor: UIKit.UIColor = SBUColorSet.ondark02, ogTitleFont: UIKit.UIFont = SBUFontSet.body2, ogTitleColor: UIKit.UIColor = SBUColorSet.onlight01, ogDescriptionFont: UIKit.UIFont = SBUFontSet.caption2, ogDescriptionColor: UIKit.UIColor = SBUColorSet.onlight01, ogURLAddressFont: UIKit.UIFont = SBUFontSet.caption2, ogURLAddressColor: UIKit.UIColor = SBUColorSet.onlight02, openChannelOGTitleColor: UIKit.UIColor = SBUColorSet.primary300, linkColor: UIKit.UIColor = SBUColorSet.primary300, contentBackgroundColor: UIKit.UIColor = SBUColorSet.background100, pressedContentBackgroundColor: UIKit.UIColor = SBUColorSet.background300, quotedMessageLeftBackgroundColor: UIKit.UIColor = SBUColorSet.background100.withAlphaComponent(0.5), quotedMessageRightBackgroundColor: UIKit.UIColor = SBUColorSet.background100, quotedFileMessageThumbnailColor: UIKit.UIColor = SBUColorSet.onlight02, quotedMessageTextColor: UIKit.UIColor = SBUColorSet.onlight03, quotedMessageTextFont: UIKit.UIFont = SBUFontSet.body3, repliedIconColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextFont: UIKit.UIFont = SBUFontSet.caption1, repliedCountTextColor: UIKit.UIColor = SBUColorSet.primary300, repliedCountTextFont: UIKit.UIFont = SBUFontSet.caption3, repliedUsersMoreIconBackgroundColor: UIKit.UIColor = SBUColorSet.background700.withAlphaComponent(0.64), repliedUsersMoreIconTintColor: UIKit.UIColor = SBUColorSet.ondark01, mentionTextFont: UIKit.UIFont = SBUFontSet.body4, mentionLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, mentionRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, mentionLeftTextBackgroundColor: UIKit.UIColor = .clear, mentionRightTextBackgroundColor: UIKit.UIColor = .clear, buttonBackgroundColor: UIKit.UIColor = SBUColorSet.background200, buttonTitleColor: UIKit.UIColor = SBUColorSet.primary300, sideButtonIconColor: UIKit.UIColor = SBUColorSet.onlight03, newMessageBadgeColor: UIKit.UIColor = SBUColorSet.secondary300, parentInfoBackgroundColor: UIKit.UIColor = SBUColorSet.background50, parentInfoUserNameTextFont: UIKit.UIFont = SBUFontSet.h3, parentInfoUserNameTextColor: UIKit.UIColor = SBUColorSet.onlight01, parentInfoDateFont: UIKit.UIFont = SBUFontSet.caption2, parentInfoDateTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoMoreButtonTintColor: UIKit.UIColor = SBUColorSet.onlight02, parentInfoSeparateBarColor: UIKit.UIColor = SBUColorSet.onlight04, parentInfoReplyCountTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoReplyCountTextFont: UIKit.UIFont = SBUFontSet.body3, parentInfoProgressBackgroundColor: UIKit.UIColor = SBUColorSet.background100, progressTrackTintColor: UIKit.UIColor = SBUColorSet.onlight03, progressTimeFont: UIKit.UIFont = SBUFontSet.body3, progressTimeRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, progressTimeLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, statusButtonBackgroundColor: UIKit.UIColor = SBUColorSet.background50, loadingButtonTintColor: UIKit.UIColor = SBUColorSet.primary200, playButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, pauseButtonTintColor: UIKit.UIColor = SBUColorSet.primary300) + public init(backgroundColor: UIKit.UIColor = SBUColorSet.background50, leftBackgroundColor: UIKit.UIColor = SBUColorSet.background100, leftPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary100, rightBackgroundColor: UIKit.UIColor = SBUColorSet.primary300, rightPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary400, openChannelBackgroundColor: UIKit.UIColor = .clear, openChannelPressedBackgroundColor: UIKit.UIColor = SBUColorSet.background100, dateFont: UIKit.UIFont = SBUFontSet.caption1, dateTextColor: UIKit.UIColor = SBUColorSet.ondark01, dateBackgroundColor: UIKit.UIColor = SBUColorSet.overlay02, userPlaceholderBackgroundColor: UIKit.UIColor = SBUColorSet.background300, userPlaceholderTintColor: UIKit.UIColor = SBUColorSet.ondark01, userNameFont: UIKit.UIFont = SBUFontSet.caption1, userNameTextColor: UIKit.UIColor = SBUColorSet.onlight02, currentUserNameTextColor: UIKit.UIColor = SBUColorSet.secondary300, timeFont: UIKit.UIFont = SBUFontSet.caption4, timeTextColor: UIKit.UIColor = SBUColorSet.onlight03, pendingStateColor: UIKit.UIColor = SBUColorSet.primary300, failedStateColor: UIKit.UIColor = SBUColorSet.error300, succeededStateColor: UIKit.UIColor = SBUColorSet.onlight03, readReceiptStateColor: UIKit.UIColor = SBUColorSet.secondary300, deliveryReceiptStateColor: UIKit.UIColor = SBUColorSet.onlight03, userMessageFont: UIKit.UIFont = SBUFontSet.body3, userMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageLeftEditTextColor: UIKit.UIColor = SBUColorSet.onlight02, userMessageLeftHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, userMessageRightEditTextColor: UIKit.UIColor = SBUColorSet.ondark02, userMessageRightHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileIconBackgroundColor: UIKit.UIColor = SBUColorSet.background50, fileImageBackgroundColor: UIKit.UIColor = SBUColorSet.ondark01, fileImageIconColor: UIKit.UIColor = SBUColorSet.onlight02, fileIconColor: UIKit.UIColor = SBUColorSet.primary300, fileMessageNameFont: UIKit.UIFont = SBUFontSet.body3, fileMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, fileMessagePlaceholderColor: UIKit.UIColor = SBUColorSet.onlight02, adminMessageFont: UIKit.UIFont = SBUFontSet.caption2, adminMessageTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescFont: UIKit.UIFont = SBUFontSet.body3, unknownMessageDescLeftTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescRightTextColor: UIKit.UIColor = SBUColorSet.ondark02, ogTitleFont: UIKit.UIFont = SBUFontSet.body2, ogTitleColor: UIKit.UIColor = SBUColorSet.onlight01, ogDescriptionFont: UIKit.UIFont = SBUFontSet.caption2, ogDescriptionColor: UIKit.UIColor = SBUColorSet.onlight01, ogURLAddressFont: UIKit.UIFont = SBUFontSet.caption2, ogURLAddressColor: UIKit.UIColor = SBUColorSet.onlight02, openChannelOGTitleColor: UIKit.UIColor = SBUColorSet.primary300, linkColor: UIKit.UIColor = SBUColorSet.primary300, contentBackgroundColor: UIKit.UIColor = SBUColorSet.background100, pressedContentBackgroundColor: UIKit.UIColor = SBUColorSet.background300, quotedMessageLeftBackgroundColor: UIKit.UIColor = SBUColorSet.background100.withAlphaComponent(0.5), quotedMessageRightBackgroundColor: UIKit.UIColor = SBUColorSet.background100, quotedFileMessageThumbnailColor: UIKit.UIColor = SBUColorSet.onlight02, quotedMessageTextColor: UIKit.UIColor = SBUColorSet.onlight03, quotedMessageTextFont: UIKit.UIFont = SBUFontSet.body3, repliedIconColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextFont: UIKit.UIFont = SBUFontSet.caption1, repliedCountTextColor: UIKit.UIColor = SBUColorSet.primary300, repliedCountTextFont: UIKit.UIFont = SBUFontSet.caption3, repliedUsersMoreIconBackgroundColor: UIKit.UIColor = SBUColorSet.background700.withAlphaComponent(0.64), repliedUsersMoreIconTintColor: UIKit.UIColor = SBUColorSet.ondark01, mentionTextFont: UIKit.UIFont = SBUFontSet.body4, mentionLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, mentionRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, mentionLeftTextBackgroundColor: UIKit.UIColor = .clear, mentionRightTextBackgroundColor: UIKit.UIColor = .clear, buttonBackgroundColor: UIKit.UIColor = SBUColorSet.background200, buttonTitleColor: UIKit.UIColor = SBUColorSet.primary300, sideButtonIconColor: UIKit.UIColor = SBUColorSet.onlight03, newMessageBadgeColor: UIKit.UIColor = SBUColorSet.secondary300, parentInfoBackgroundColor: UIKit.UIColor = SBUColorSet.background50, parentInfoUserNameTextFont: UIKit.UIFont = SBUFontSet.h3, parentInfoUserNameTextColor: UIKit.UIColor = SBUColorSet.onlight01, parentInfoDateFont: UIKit.UIFont = SBUFontSet.caption2, parentInfoDateTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoMoreButtonTintColor: UIKit.UIColor = SBUColorSet.onlight02, parentInfoSeparateBarColor: UIKit.UIColor = SBUColorSet.onlight04, parentInfoReplyCountTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoReplyCountTextFont: UIKit.UIFont = SBUFontSet.body3, parentInfoProgressBackgroundColor: UIKit.UIColor = SBUColorSet.background100, progressTrackTintColor: UIKit.UIColor = SBUColorSet.onlight03, progressTimeFont: UIKit.UIFont = SBUFontSet.body3, progressTimeRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, progressTimeLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, statusButtonBackgroundColor: UIKit.UIColor = SBUColorSet.background50, loadingButtonTintColor: UIKit.UIColor = SBUColorSet.primary200, playButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, pauseButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, selectableTitleFont: UIKit.UIFont = SBUFontSet.button2) public var backgroundColor: UIKit.UIColor public var leftBackgroundColor: UIKit.UIColor public var leftPressedBackgroundColor: UIKit.UIColor @@ -9062,6 +9231,7 @@ public class SBUMessageCellTheme { public var playerLoadingButtonTintColor: UIKit.UIColor public var playerPlayButtonTintColor: UIKit.UIColor public var playerPauseButtonTintColor: UIKit.UIColor + public var selectableTitleFont: UIKit.UIFont @objc deinit } public class SBUUserListTheme { @@ -9405,8 +9575,8 @@ public class SBUMessageTemplateTheme { @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var widthConstraint: UIKit.NSLayoutConstraint! @_Concurrency.MainActor(unsafe) public var heightConstraint: UIKit.NSLayoutConstraint! - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupSizeContraint() @_Concurrency.MainActor(unsafe) override open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition) @_Concurrency.MainActor(unsafe) public func setImage(_ image: UIKit.UIImage?, size: CoreFoundation.CGSize? = nil) @@ -9500,14 +9670,14 @@ public protocol SBUUserMessageTextViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) public var needsToRemoveMargin: Swift.Bool { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserMessageTextViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserMessageTextViewDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) public init(channelType: SendbirdChatSDK.ChannelType = .group, removeMargin: Swift.Bool = false) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateSideConstraint() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(model: SendbirdUIKit.SBUUserMessageTextViewModel) @objc deinit } @@ -9535,13 +9705,13 @@ extension SendbirdUIKit.SBUModerationsModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUModerationsModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUModerationsModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUModerationsModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUModerationsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUModerationsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUModerationsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil) @@ -9733,8 +9903,8 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { } @_Concurrency.MainActor(unsafe) public var channelNameInputField: SendbirdUIKit.SBUUnderLineTextField @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUCreateOpenChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate)?, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate?, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUCreateOpenChannelTheme? = nil) @@ -9868,11 +10038,11 @@ public protocol SBUMessageThreadViewModelDelegate : SendbirdUIKit.SBUBaseChannel func messageThreadViewModelShouldDismissMessageThread(_ viewModel: SendbirdUIKit.SBUMessageThreadViewModel) } @objc open class SBUMessageThreadViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUMessageThreadViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUMessageThreadViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUMessageThreadViewModelDataSource? { get set } @@ -9882,7 +10052,7 @@ public protocol SBUMessageThreadViewModelDelegate : SendbirdUIKit.SBUBaseChannel public var threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = 0, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: (any SendbirdUIKit.SBUMessageThreadViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUMessageThreadViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = 0, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: SendbirdUIKit.SBUMessageThreadViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUMessageThreadViewModelDataSource? = nil) @objc deinit public func loadChannelAndMessages(channelURL: Swift.String?) override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) @@ -9956,7 +10126,7 @@ extension SendbirdUIKit.SBUUserListModule { } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserListModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserListModuleHeaderDelegate? @objc @_Concurrency.MainActor(unsafe) public var channelType: SendbirdChatSDK.ChannelType @_Concurrency.MainActor(unsafe) public var userListType: SendbirdUIKit.ChannelUserListType { get @@ -9966,7 +10136,7 @@ extension SendbirdUIKit.SBUUserListModule { @available(*, unavailable, renamed: "SBUUserListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUUserListModuleHeaderDelegate, userListType: SendbirdUIKit.ChannelUserListType, channelType: SendbirdChatSDK.ChannelType = .group, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUUserListModuleHeaderDelegate, userListType: SendbirdUIKit.ChannelUserListType, channelType: SendbirdChatSDK.ChannelType = .group, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUUserListTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -10096,7 +10266,7 @@ public enum SBUReplyType : Swift.Int, Swift.Codable { public var filterValue: SendbirdChatSDK.ReplyType { get } - public init(from decoder: any Swift.Decoder) throws + public init(from decoder: Swift.Decoder) throws public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { @@ -10107,13 +10277,18 @@ public enum SBUThreadReplySelectType : Swift.Int, Swift.Codable { case none case parent case thread - public init(from decoder: any Swift.Decoder) throws + public init(from decoder: Swift.Decoder) throws public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } +public struct SBUQuickReplyOptions : Swift.Codable { + public let options: [Swift.String] + public func encode(to encoder: Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws +} public protocol SBUGroupChannelViewModelDataSource : SendbirdUIKit.SBUBaseChannelViewModelDataSource { func groupChannelViewModel(_ viewModel: SendbirdUIKit.SBUGroupChannelViewModel, startingPointIndexPathsForChannel channel: SendbirdChatSDK.GroupChannel?) -> [Foundation.IndexPath]? } @@ -10121,15 +10296,15 @@ public protocol SBUGroupChannelViewModelDelegate : SendbirdUIKit.SBUBaseChannelV func groupChannelViewModel(_ viewModel: SendbirdUIKit.SBUGroupChannelViewModel, didReceiveSuggestedMentions members: [SendbirdUIKit.SBUUser]?) } @objc open class SBUGroupChannelViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUGroupChannelViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: (any SendbirdUIKit.SBUGroupChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUGroupChannelViewModelDataSource)? = nil, displaysLocalCachedListFirst: Swift.Bool = false) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: SendbirdUIKit.SBUGroupChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUGroupChannelViewModelDataSource? = nil, displaysLocalCachedListFirst: Swift.Bool = false) @objc deinit override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) override public func refreshChannel() @@ -10235,10 +10410,10 @@ extension SendbirdUIKit.SBUGroupChannelViewModel : SendbirdChatSDK.GroupChannelD } @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUQuoteMessageInputViewParams) public enum Edge : Swift.Int { case vertical @@ -10261,7 +10436,7 @@ public protocol SBUOpenChannelSettingsModuleHeaderDelegate : SendbirdUIKit.SBUBa } extension SendbirdUIKit.SBUOpenChannelSettingsModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelSettingsModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate? { get set } @@ -10270,7 +10445,7 @@ extension SendbirdUIKit.SBUOpenChannelSettingsModule { @available(*, unavailable, renamed: "SBUOpenChannelSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @_Concurrency.MainActor(unsafe) @objc public func didUpdateRightItem() @@ -10327,11 +10502,11 @@ public protocol SBUCreateChannelModuleListDataSource : SendbirdUIKit.SBUBaseSele } extension SendbirdUIKit.SBUCreateChannelModule { @_inheritsConvenienceInitializers @objc(SBUCreateChannelModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUCreateChannelModuleListDataSource? { get set } @@ -10340,7 +10515,7 @@ extension SendbirdUIKit.SBUCreateChannelModule { @available(*, unavailable, renamed: "SBUCreateChannelModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUCreateChannelModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUCreateChannelModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.abi.json b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.abi.json index 20cf9b5a1..537f99dd3 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -2972,15 +2972,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileCommonContentView(im)setupViews", + "usr": "s:13SendbirdUIKit27QuotedFileCommonContentViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit27QuotedFileCommonContentViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -2999,15 +2996,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileCommonContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit27QuotedFileCommonContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit27QuotedFileCommonContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -3026,15 +3020,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileCommonContentView(im)setupStyles", + "usr": "s:13SendbirdUIKit27QuotedFileCommonContentViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit27QuotedFileCommonContentViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -3270,6 +3261,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -3332,13 +3330,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -5813,7 +5804,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -6135,7 +6126,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -6174,15 +6165,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUParentMessageInfoReactionView(im)setupStyles", + "usr": "s:13SendbirdUIKit32SBUParentMessageInfoReactionViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit32SBUParentMessageInfoReactionViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -6435,6 +6423,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -6497,13 +6492,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -12002,15 +11990,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageDateView(im)setupViews", + "usr": "s:13SendbirdUIKit18SBUMessageDateViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit18SBUMessageDateViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -12029,15 +12014,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageDateView(im)setupLayouts", + "usr": "s:13SendbirdUIKit18SBUMessageDateViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit18SBUMessageDateViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -12056,15 +12038,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageDateView(im)setupStyles", + "usr": "s:13SendbirdUIKit18SBUMessageDateViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit18SBUMessageDateViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -12180,6 +12159,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -12242,13 +12228,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -13038,18 +13017,15 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)setupViews", + "usr": "s:13SendbirdUIKit7SBUViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { @@ -13064,18 +13040,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)setupLayouts", + "usr": "s:13SendbirdUIKit7SBUViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { @@ -13090,18 +13062,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)updateLayouts", + "usr": "s:13SendbirdUIKit7SBUViewC13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { @@ -13116,18 +13084,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)setupStyles", + "usr": "s:13SendbirdUIKit7SBUViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { @@ -13142,18 +13106,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)updateStyles", + "usr": "s:13SendbirdUIKit7SBUViewC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC12updateStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { @@ -13168,18 +13128,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUView(im)setupActions", + "usr": "s:13SendbirdUIKit7SBUViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit7SBUViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "AccessControl" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" } ], @@ -13207,7 +13163,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -13457,9 +13413,9 @@ "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC9emojiListSay0A7ChatSDK5EmojiCGvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -13568,9 +13524,9 @@ "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC9reactionsSay0A7ChatSDK0D0CGvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -13671,9 +13627,9 @@ "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC8maxWidth12CoreGraphics7CGFloatVvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -13851,9 +13807,9 @@ "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC010collectionE16HeightConstraintSo08NSLayoutH0CSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "SetterAccess", "AccessControl" ], @@ -13913,9 +13869,9 @@ "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC010collectionE17MinWidthContraintSo18NSLayoutConstraintCSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "SetterAccess", "AccessControl" ], @@ -14072,15 +14028,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageReactionView(im)setupViews", + "usr": "s:13SendbirdUIKit22SBUMessageReactionViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -14099,15 +14052,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageReactionView(im)setupLayouts", + "usr": "s:13SendbirdUIKit22SBUMessageReactionViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -14126,15 +14076,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageReactionView(im)setupStyles", + "usr": "s:13SendbirdUIKit22SBUMessageReactionViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit22SBUMessageReactionViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -14484,6 +14431,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -14546,13 +14500,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -16326,8 +16273,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -16445,8 +16392,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -16564,8 +16511,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -18214,8 +18161,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -18317,8 +18264,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -18436,8 +18383,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -19917,8 +19864,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -20036,8 +19983,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -20155,8 +20102,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -21752,14 +21699,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelSettingsChannelInfoView(im)setupViews", + "usr": "s:13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -21778,14 +21722,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelSettingsChannelInfoView(im)setupLayouts", + "usr": "s:13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -21804,14 +21745,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelSettingsChannelInfoView(im)setupStyles", + "usr": "s:13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit33SBUChannelSettingsChannelInfoViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -21900,6 +21838,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -21962,13 +21907,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -25595,7 +25533,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -26823,15 +26761,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUEmptyView(im)setupViews", + "usr": "s:13SendbirdUIKit12SBUEmptyViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit12SBUEmptyViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -26850,15 +26785,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUEmptyView(im)setupLayouts", + "usr": "s:13SendbirdUIKit12SBUEmptyViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit12SBUEmptyViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -26905,15 +26837,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUEmptyView(im)setupStyles", + "usr": "s:13SendbirdUIKit12SBUEmptyViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit12SBUEmptyViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -27020,6 +26949,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -27082,13 +27018,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -33793,15 +33722,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelInfoHeaderView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUChannelInfoHeaderViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUChannelInfoHeaderViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -33820,15 +33746,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelInfoHeaderView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUChannelInfoHeaderViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUChannelInfoHeaderViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -33847,15 +33770,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUChannelInfoHeaderView(im)setupStyles", + "usr": "s:13SendbirdUIKit24SBUChannelInfoHeaderViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUChannelInfoHeaderViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -34096,6 +34016,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -34158,13 +34085,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -35443,15 +35363,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCommonContentView(im)setupViews", + "usr": "s:13SendbirdUIKit20SBUCommonContentViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit20SBUCommonContentViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -35470,15 +35387,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCommonContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit20SBUCommonContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit20SBUCommonContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -35497,15 +35411,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCommonContentView(im)setupStyles", + "usr": "s:13SendbirdUIKit20SBUCommonContentViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit20SBUCommonContentViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -35680,6 +35591,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -35742,13 +35660,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -35764,29 +35675,312 @@ }, { "kind": "TypeDecl", - "name": "SBUColorSet", - "printedName": "SBUColorSet", + "name": "SBUCardView", + "printedName": "SBUCardView", "children": [ + { + "kind": "TypeDecl", + "name": "Metric", + "printedName": "Metric", + "children": [ + { + "kind": "Var", + "name": "maxWidth", + "printedName": "maxWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvpZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvpZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvgZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvsZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvMZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV8maxWidthSdvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textMinWidth", + "printedName": "textMinWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvpZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvpZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvgZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvsZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvMZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV12textMinWidthSdvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageSize", + "printedName": "imageSize", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvpZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvpZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvgZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvsZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvMZ", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV9imageSizeSdvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit11SBUCardViewC6MetricV", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6MetricV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl" + ] + }, { "kind": "Var", - "name": "primary100", - "printedName": "primary100", + "name": "theme", + "printedName": "theme", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -35800,20 +35994,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -35828,20 +36018,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -35856,42 +36042,43 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5themeAA19SBUMessageCellThemeCvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "primary200", - "printedName": "primary200", + "name": "imageURL", + "printedName": "imageURL", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC8imageURLSSSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC8imageURLSSSgvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "Custom", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -35900,98 +36087,172 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC8imageURLSSSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC8imageURLSSSgvg", "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "title", + "printedName": "title", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC5titleSSSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5titleSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC5titleSSSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5titleSSSgvg", "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "subtitle", + "printedName": "subtitle", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } ], - "accessorKind": "set" - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC8subtitleSSSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC8subtitleSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC8subtitleSSSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC8subtitleSSSgvg", "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "primary300", - "printedName": "primary300", + "name": "text", + "printedName": "text", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC4textSSSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC4textSSSgvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "Custom", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -36000,96 +36261,170 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC4textSSSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC4textSSSgvg", "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "link", + "printedName": "link", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC4linkSSSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC4linkSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC4linkSSSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC4linkSSSgvg", "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "params", + "printedName": "params", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } ], - "accessorKind": "set" - }, + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUCardViewC6paramsAA0cD6ParamsVSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6paramsAA0cD6ParamsVSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC6paramsAA0cD6ParamsVSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC6paramsAA0cD6ParamsVSgvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "primary400", - "printedName": "primary400", + "name": "contentStackView", + "printedName": "contentStackView", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -36100,20 +36435,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36128,20 +36459,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0Cvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36156,40 +36483,36 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0CvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC012contentStackD0AA08SBUStackD0CvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "primary500", - "printedName": "primary500", + "name": "mainInfoStackView", + "printedName": "mainInfoStackView", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -36200,20 +36523,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36228,20 +36547,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0Cvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36256,38 +36571,33 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0CvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC013mainInfoStackD0AA08SBUStackD0CvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondary100", - "printedName": "secondary100", + "name": "titleStackView", + "printedName": "titleStackView", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", "AccessControl", "RawDocComment" @@ -36301,20 +36611,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36329,20 +36635,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "SBUStackView", + "printedName": "SendbirdUIKit.SBUStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUStackView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0Cvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36357,40 +36659,36 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0CvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC010titleStackD0AA08SBUStackD0CvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondary200", - "printedName": "secondary200", + "name": "titleLabel", + "printedName": "titleLabel", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -36401,20 +36699,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36429,20 +36723,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36457,40 +36747,36 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC10titleLabelSo7UILabelCvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondary300", - "printedName": "secondary300", + "name": "subtitleLabel", + "printedName": "subtitleLabel", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -36501,20 +36787,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36529,20 +36811,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36557,42 +36835,36 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC13subtitleLabelSo7UILabelCvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondary400", - "printedName": "secondary400", + "name": "imageView", + "printedName": "imageView", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" + "Custom", + "Lazy", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -36601,20 +36873,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36629,20 +36897,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0Cvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36657,40 +36921,36 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0CvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC05imageD0So07UIImageD0CvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondary500", - "printedName": "secondary500", + "name": "descriptionTextView", + "printedName": "descriptionTextView", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UITextView", + "printedName": "UIKit.UITextView", + "usr": "c:objc(cs)UITextView" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -36701,20 +36961,16 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UITextView", + "printedName": "UIKit.UITextView", + "usr": "c:objc(cs)UITextView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36729,20 +36985,16 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UITextView", + "printedName": "UIKit.UITextView", + "usr": "c:objc(cs)UITextView" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0Cvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36757,41 +37009,43 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0CvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC015descriptionTextD0So06UITextD0CvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "background50", - "printedName": "background50", + "name": "textLeftConstraint", + "printedName": "textLeftConstraint", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -36802,20 +37056,24 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36830,20 +37088,24 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36858,38 +37120,41 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC18textLeftConstraintSo08NSLayoutG0CSgvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "background100", - "printedName": "background100", + "name": "textRightConstraint", + "printedName": "textRightConstraint", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvp", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvp", "moduleName": "SendbirdUIKit", - "static": true, "declAttributes": [ + "Custom", "HasInitialValue", - "Final", "HasStorage", "AccessControl" ], @@ -36902,20 +37167,24 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvg", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvg", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "get" }, { @@ -36930,20 +37199,24 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.NSLayoutConstraint?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSLayoutConstraint", + "printedName": "UIKit.NSLayoutConstraint", + "usr": "c:objc(cs)NSLayoutConstraint" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvs", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvs", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "set" }, { @@ -36958,22 +37231,327 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvM", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC19textRightConstraintSo08NSLayoutG0CSgvM", "moduleName": "SendbirdUIKit", - "static": true, "implicit": true, - "declAttributes": [ - "Final" - ], "accessorKind": "_modify" } ] }, + { + "kind": "Function", + "name": "setupViews", + "printedName": "setupViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit11SBUCardViewC10setupViewsyyF", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC10setupViewsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupLayouts", + "printedName": "setupLayouts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit11SBUCardViewC12setupLayoutsyyF", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC12setupLayoutsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupStyles", + "printedName": "setupStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit11SBUCardViewC11setupStylesyyF", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC11setupStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupActions", + "printedName": "setupActions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit11SBUCardViewC12setupActionsyyF", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC12setupActionsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit11SBUCardViewC9configure4withyAA0cD6ParamsV_tF", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC9configure4withyAA0cD6ParamsV_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "openURL", + "printedName": "openURL()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView(im)openURL", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC7openURLyyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardView", + "printedName": "SendbirdUIKit.SBUCardView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView(im)init", + "mangledName": "$s13SendbirdUIKit11SBUCardViewCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardView", + "printedName": "SendbirdUIKit.SBUCardView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView(im)initWithFrame:", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC5frameACSo6CGRectV_tcfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView", + "mangledName": "$s13SendbirdUIKit11SBUCardViewC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:@M@SendbirdUIKit@objc(cs)SBUView", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "SendbirdUIKit.SBUView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUColorSet", + "printedName": "SBUColorSet", + "children": [ { "kind": "Var", - "name": "background200", - "printedName": "background200", + "name": "primary100", + "printedName": "primary100", "children": [ { "kind": "TypeNominal", @@ -36983,15 +37561,16 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -37008,8 +37587,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37036,8 +37615,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37058,8 +37637,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary100So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37072,8 +37651,8 @@ }, { "kind": "Var", - "name": "background300", - "printedName": "background300", + "name": "primary200", + "printedName": "primary200", "children": [ { "kind": "TypeNominal", @@ -37083,8 +37662,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37108,8 +37687,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37136,8 +37715,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37158,8 +37737,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary200So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37172,8 +37751,8 @@ }, { "kind": "Var", - "name": "background400", - "printedName": "background400", + "name": "primary300", + "printedName": "primary300", "children": [ { "kind": "TypeNominal", @@ -37183,8 +37762,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37208,8 +37787,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37236,8 +37815,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37258,8 +37837,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary300So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37272,8 +37851,8 @@ }, { "kind": "Var", - "name": "background500", - "printedName": "background500", + "name": "primary400", + "printedName": "primary400", "children": [ { "kind": "TypeNominal", @@ -37283,8 +37862,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37308,8 +37887,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37336,8 +37915,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37358,8 +37937,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary400So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37372,8 +37951,8 @@ }, { "kind": "Var", - "name": "background600", - "printedName": "background600", + "name": "primary500", + "printedName": "primary500", "children": [ { "kind": "TypeNominal", @@ -37383,8 +37962,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37408,8 +37987,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37436,8 +38015,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37458,8 +38037,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC10primary500So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37472,8 +38051,8 @@ }, { "kind": "Var", - "name": "background700", - "printedName": "background700", + "name": "secondary100", + "printedName": "secondary100", "children": [ { "kind": "TypeNominal", @@ -37483,15 +38062,16 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -37508,8 +38088,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37536,8 +38116,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37558,8 +38138,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary100So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37572,8 +38152,8 @@ }, { "kind": "Var", - "name": "overlay01", - "printedName": "overlay01", + "name": "secondary200", + "printedName": "secondary200", "children": [ { "kind": "TypeNominal", @@ -37583,16 +38163,15 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -37609,8 +38188,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37637,8 +38216,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37659,8 +38238,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary200So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37673,8 +38252,8 @@ }, { "kind": "Var", - "name": "overlay02", - "printedName": "overlay02", + "name": "secondary300", + "printedName": "secondary300", "children": [ { "kind": "TypeNominal", @@ -37684,8 +38263,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37709,8 +38288,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37737,8 +38316,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37759,8 +38338,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary300So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37773,8 +38352,8 @@ }, { "kind": "Var", - "name": "onlight01", - "printedName": "onlight01", + "name": "secondary400", + "printedName": "secondary400", "children": [ { "kind": "TypeNominal", @@ -37784,16 +38363,15 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -37810,8 +38388,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37838,8 +38416,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37860,8 +38438,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary400So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37874,8 +38452,8 @@ }, { "kind": "Var", - "name": "onlight02", - "printedName": "onlight02", + "name": "secondary500", + "printedName": "secondary500", "children": [ { "kind": "TypeNominal", @@ -37885,8 +38463,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -37910,8 +38488,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37938,8 +38516,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37960,8 +38538,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12secondary500So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -37974,8 +38552,8 @@ }, { "kind": "Var", - "name": "onlight03", - "printedName": "onlight03", + "name": "background50", + "printedName": "background50", "children": [ { "kind": "TypeNominal", @@ -37985,15 +38563,16 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -38010,8 +38589,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38038,8 +38617,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38060,8 +38639,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC12background50So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38074,8 +38653,8 @@ }, { "kind": "Var", - "name": "onlight04", - "printedName": "onlight04", + "name": "background100", + "printedName": "background100", "children": [ { "kind": "TypeNominal", @@ -38085,8 +38664,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38110,109 +38689,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvgZ", - "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvsZ", - "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvMZ", - "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "ondark01", - "printedName": "ondark01", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvpZ", - "moduleName": "SendbirdUIKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38239,8 +38717,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38261,8 +38739,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background100So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38275,8 +38753,8 @@ }, { "kind": "Var", - "name": "ondark02", - "printedName": "ondark02", + "name": "background200", + "printedName": "background200", "children": [ { "kind": "TypeNominal", @@ -38286,8 +38764,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38311,8 +38789,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38339,8 +38817,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38361,8 +38839,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background200So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38375,8 +38853,8 @@ }, { "kind": "Var", - "name": "ondark03", - "printedName": "ondark03", + "name": "background300", + "printedName": "background300", "children": [ { "kind": "TypeNominal", @@ -38386,8 +38864,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38411,8 +38889,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38439,8 +38917,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38461,8 +38939,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background300So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38475,8 +38953,8 @@ }, { "kind": "Var", - "name": "ondark04", - "printedName": "ondark04", + "name": "background400", + "printedName": "background400", "children": [ { "kind": "TypeNominal", @@ -38486,8 +38964,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38511,8 +38989,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38539,8 +39017,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38561,8 +39039,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background400So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38575,8 +39053,8 @@ }, { "kind": "Var", - "name": "error100", - "printedName": "error100", + "name": "background500", + "printedName": "background500", "children": [ { "kind": "TypeNominal", @@ -38586,16 +39064,15 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -38612,8 +39089,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38640,8 +39117,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38662,8 +39139,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background500So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38676,8 +39153,8 @@ }, { "kind": "Var", - "name": "error200", - "printedName": "error200", + "name": "background600", + "printedName": "background600", "children": [ { "kind": "TypeNominal", @@ -38687,8 +39164,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38712,8 +39189,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38740,8 +39217,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38762,8 +39239,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background600So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38776,8 +39253,8 @@ }, { "kind": "Var", - "name": "error300", - "printedName": "error300", + "name": "background700", + "printedName": "background700", "children": [ { "kind": "TypeNominal", @@ -38787,8 +39264,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -38812,8 +39289,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38840,8 +39317,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38862,8 +39339,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC13background700So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38876,8 +39353,8 @@ }, { "kind": "Var", - "name": "error400", - "printedName": "error400", + "name": "overlay01", + "printedName": "overlay01", "children": [ { "kind": "TypeNominal", @@ -38887,15 +39364,16 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -38912,8 +39390,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38940,8 +39418,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38962,8 +39440,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay01So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -38976,8 +39454,8 @@ }, { "kind": "Var", - "name": "error500", - "printedName": "error500", + "name": "overlay02", + "printedName": "overlay02", "children": [ { "kind": "TypeNominal", @@ -38987,8 +39465,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -39012,8 +39490,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39040,8 +39518,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39062,8 +39540,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9overlay02So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39076,8 +39554,8 @@ }, { "kind": "Var", - "name": "information", - "printedName": "information", + "name": "onlight01", + "printedName": "onlight01", "children": [ { "kind": "TypeNominal", @@ -39087,8 +39565,8 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ @@ -39113,8 +39591,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39141,8 +39619,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39163,8 +39641,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight01So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39177,8 +39655,8 @@ }, { "kind": "Var", - "name": "highlight", - "printedName": "highlight", + "name": "onlight02", + "printedName": "onlight02", "children": [ { "kind": "TypeNominal", @@ -39188,16 +39666,15 @@ } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvpZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvpZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvpZ", "moduleName": "SendbirdUIKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -39214,8 +39691,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvgZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvgZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvgZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39242,8 +39719,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvsZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvsZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvsZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39264,8 +39741,8 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvMZ", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvMZ", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight02So7UIColorCvMZ", "moduleName": "SendbirdUIKit", "static": true, "implicit": true, @@ -39275,84 +39752,29 @@ "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "s:13SendbirdUIKit11SBUColorSetC", - "mangledName": "$s13SendbirdUIKit11SBUColorSetC", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SendbirdChatSDK", - "printedName": "SendbirdChatSDK", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "Import", - "name": "PhotosUI", - "printedName": "PhotosUI", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "Import", - "name": "MobileCoreServices", - "printedName": "MobileCoreServices", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "TypeDecl", - "name": "SBUCreateOpenChannelViewController", - "printedName": "SBUCreateOpenChannelViewController", - "children": [ + }, { "kind": "Var", - "name": "headerComponent", - "printedName": "headerComponent", + "name": "onlight03", + "printedName": "onlight03", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", - "children": [ - { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)headerComponent", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvp", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ "HasInitialValue", - "Custom", + "Final", "HasStorage", - "AccessControl", - "RawDocComment", - "ObjC" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -39363,26 +39785,19 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", - "children": [ - { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)headerComponent", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvg", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvgZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" }, @@ -39398,26 +39813,19 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", - "children": [ - { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setHeaderComponent:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvs", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvsZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "set" }, @@ -39433,44 +39841,40 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvM", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvM", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight03So7UIColorCvMZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "profileInputComponent", - "printedName": "profileInputComponent", + "name": "onlight04", + "printedName": "onlight04", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProfileInput", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)profileInputComponent", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvp", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ "HasInitialValue", - "Custom", + "Final", "HasStorage", - "AccessControl", - "ObjC" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -39481,26 +39885,19 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProfileInput", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)profileInputComponent", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvg", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvgZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "get" }, @@ -39516,26 +39913,19 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProfileInput", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setProfileInputComponent:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvs", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvsZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, "declAttributes": [ - "ObjC" + "Final" ], "accessorKind": "set" }, @@ -39551,36 +39941,43 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvM", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvM", + "usr": "s:13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9onlight04So7UIColorCvMZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "theme", - "printedName": "theme", + "name": "ondark01", + "printedName": "ondark01", "children": [ { "kind": "TypeNominal", - "name": "SBUCreateOpenChannelTheme", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", - "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvp", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvp", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ - "Custom", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", - "Custom", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -39589,16 +39986,20 @@ "children": [ { "kind": "TypeNominal", - "name": "SBUCreateOpenChannelTheme", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", - "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvg", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvg", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvgZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -39613,16 +40014,20 @@ }, { "kind": "TypeNominal", - "name": "SBUCreateOpenChannelTheme", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", - "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvs", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvs", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvsZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -39637,44 +40042,40 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvM", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvM", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark01So7UIColorCvMZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "viewModel", - "printedName": "viewModel", + "name": "ondark02", + "printedName": "ondark02", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUCreateOpenChannelViewModel", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", - "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvp", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvp", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ "HasInitialValue", - "Custom", + "Final", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -39685,24 +40086,20 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUCreateOpenChannelViewModel", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", - "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvg", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvg", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvgZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -39717,24 +40114,20 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUCreateOpenChannelViewModel", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", - "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvs", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvs", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvsZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -39749,127 +40142,142 @@ } ], "declKind": "Accessor", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvM", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvM", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark02So7UIColorCvMZ", "moduleName": "SendbirdUIKit", + "static": true, "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUCreateOpenChannelViewController", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewController", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController" - } - ], - "declKind": "Constructor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)init", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerCACycfc", - "moduleName": "SendbirdUIKit", - "overriding": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "viewDidLoad", - "printedName": "viewDidLoad()", + "kind": "Var", + "name": "ondark03", + "printedName": "ondark03", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)viewDidLoad", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC11viewDidLoadyyF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "viewDidLoad", + "static": true, "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "viewWillAppear", - "printedName": "viewWillAppear(_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark03So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)viewWillAppear:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC14viewWillAppearyySbF", - "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "viewWillAppear:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "preferredStatusBarStyle", - "printedName": "preferredStatusBarStyle", + "name": "ondark04", + "printedName": "ondark04", "children": [ { "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)preferredStatusBarStyle", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC23preferredStatusBarStyleSo08UIStatusjK0Vvp", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarStyle", + "static": true, "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -39878,730 +40286,2103 @@ "children": [ { "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)preferredStatusBarStyle", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC23preferredStatusBarStyleSo08UIStatusjK0Vvg", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvgZ", "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarStyle", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "Final" ], "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "createViewModel", - "printedName": "createViewModel()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8ondark04So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createViewModel", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createF5ModelyyF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "setupViews", - "printedName": "setupViews()", + "kind": "Var", + "name": "error100", + "printedName": "error100", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupViews", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC10setupViewsyyF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "setupViews", + "static": true, "declAttributes": [ - "ObjC", - "Custom", - "Override", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setupLayouts", - "printedName": "setupLayouts()", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupLayouts", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12setupLayoutsyyF", - "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "setupLayouts", - "declAttributes": [ - "ObjC", - "Custom", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setupStyles", - "printedName": "setupStyles()", - "children": [ + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupStyles", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC11setupStylesyyF", - "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "setupStyles", - "declAttributes": [ - "ObjC", - "Custom", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateStyles", - "printedName": "updateStyles()", - "children": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error100So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)updateStyles", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12updateStylesyyF", - "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "updateStyles", - "declAttributes": [ - "ObjC", - "Custom", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "createChannel", - "printedName": "createChannel()", + "kind": "Var", + "name": "error200", + "printedName": "error200", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createChannel", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createE0yyF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createChannel", - "printedName": "createChannel(channelName:coverImage:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error200So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createChannelWithChannelName:coverImage:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createE011channelName10coverImageySS_So7UIImageCSgtF", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "selectChannelImage", - "printedName": "selectChannelImage(needRemoveItem:)", + "kind": "Var", + "name": "error300", + "printedName": "error300", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)selectChannelImageWithNeedRemoveItem:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06selectE5Image14needRemoveItemySb_tF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvpZ", "moduleName": "SendbirdUIKit", + "static": true, "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "showChannelImagePicker", - "printedName": "showChannelImagePicker(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "MediaResourceType", - "printedName": "SendbirdUIKit.MediaResourceType", - "usr": "c:@M@SendbirdUIKit@E@MediaResourceType" - } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showChannelImagePickerWith:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC04showE11ImagePicker4withyAA17MediaResourceTypeO_tF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "showCamera", - "printedName": "showCamera()", - "children": [ + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error300So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showCamera", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC10showCamerayyF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "showPhotoLibraryPicker", - "printedName": "showPhotoLibraryPicker()", + "kind": "Var", + "name": "error400", + "printedName": "error400", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showPhotoLibraryPicker", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC22showPhotoLibraryPickeryyF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "isOpen": true, + "static": true, "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "showLimitedPhotoLibraryPicker", - "printedName": "showLimitedPhotoLibraryPicker()", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error400So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showLimitedPhotoLibraryPicker", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC29showLimitedPhotoLibraryPickeryyF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "showPermissionAlert", - "printedName": "showPermissionAlert(forType:)", + "kind": "Var", + "name": "error500", + "printedName": "error500", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "PermissionType", - "printedName": "SendbirdUIKit.SBUPermissionManager.PermissionType", - "hasDefaultArg": true, - "usr": "s:13SendbirdUIKit20SBUPermissionManagerC14PermissionTypeO" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC19showPermissionAlert7forTypeyAA20SBUPermissionManagerC0iL0O_tF", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC19showPermissionAlert7forTypeyAA20SBUPermissionManagerC0iL0O_tF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "isOpen": true, + "static": true, "declAttributes": [ - "Custom", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "touchesBegan", - "printedName": "touchesBegan(_:with:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", + "kind": "Accessor", "name": "Set", - "printedName": "Swift.Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UITouch", - "printedName": "UIKit.UITouch", - "usr": "c:objc(cs)UITouch" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "usr": "s:Sh" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIEvent?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UIEvent", - "printedName": "UIKit.UIEvent", - "usr": "c:objc(cs)UIEvent" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC8error500So7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "information", + "printedName": "information", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)touchesBegan:withEvent:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12touchesBegan_4withyShySo7UITouchCG_So7UIEventCSgtF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "objc_name": "touchesBegan:withEvent:", + "static": true, "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dismissAndMoveToChannel", - "printedName": "dismissAndMoveToChannel(_:messageListParams:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "BaseChannel", - "printedName": "SendbirdChatSDK.BaseChannel", - "usr": "c:@M@SendbirdChatSDK@objc(cs)SBDBaseChannel" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdChatSDK.MessageListParams?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "MessageListParams", - "printedName": "SendbirdChatSDK.MessageListParams", - "usr": "c:@M@SendbirdChatSDK@objc(cs)SBDMessageListParams" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC11informationSo7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "highlight", + "printedName": "highlight", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)dismissAndMoveToChannel:messageListParams:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC016dismissAndMoveToE0_17messageListParamsy0A7ChatSDK04BaseE0C_AF07MessagemN0CSgtF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvpZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvpZ", "moduleName": "SendbirdUIKit", - "isOpen": true, + "static": true, "declAttributes": [ - "Custom", + "HasInitialValue", + "Final", + "HasStorage", "AccessControl", - "RawDocComment", - "ObjC" + "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "errorHandler", - "printedName": "errorHandler(_:_:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvgZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvsZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], - "hasDefaultArg": true, - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvMZ", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC9highlightSo7UIColorCvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12errorHandleryySSSg_SiSgtF", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12errorHandleryySSSg_SiSgtF", - "moduleName": "SendbirdUIKit", - "overriding": true, - "isOpen": true, - "declAttributes": [ - "Custom", - "Override", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, + ] + } + ], + "declKind": "Class", + "usr": "s:13SendbirdUIKit11SBUColorSetC", + "mangledName": "$s13SendbirdUIKit11SBUColorSetC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "Import", + "name": "PhotosUI", + "printedName": "PhotosUI", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "Import", + "name": "MobileCoreServices", + "printedName": "MobileCoreServices", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "TypeDecl", + "name": "SBUCreateOpenChannelViewController", + "printedName": "SBUCreateOpenChannelViewController", + "children": [ { - "kind": "Function", - "name": "createOpenChannelModule", - "printedName": "createOpenChannelModule(_:didUpdateTitleView:)", + "kind": "Var", + "name": "headerComponent", + "printedName": "headerComponent", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIView?", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", "children": [ { "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateTitleView:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_014didUpdateTitleF0yAA0cdeI0C6HeaderC_So6UIViewCSgtF", + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)headerComponent", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvp", "moduleName": "SendbirdUIKit", - "isOpen": true, "declAttributes": [ + "HasInitialValue", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createOpenChannelModule", - "printedName": "createOpenChannelModule(_:didUpdateLeftItem:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", + "children": [ + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)headerComponent", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header?", + "children": [ + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setHeaderComponent:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIBarButtonItem?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvM", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC15headerComponentAA0cdE6ModuleC6HeaderCSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateLeftItem:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_17didUpdateLeftItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CSgtF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "createOpenChannelModule", - "printedName": "createOpenChannelModule(_:didUpdateRightItem:)", + "kind": "Var", + "name": "profileInputComponent", + "printedName": "profileInputComponent", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" - }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIBarButtonItem?", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "ProfileInput", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateRightItem:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_18didUpdateRightItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CSgtF", + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)profileInputComponent", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvp", "moduleName": "SendbirdUIKit", - "isOpen": true, "declAttributes": [ + "HasInitialValue", "Custom", + "HasStorage", "AccessControl", "ObjC" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createOpenChannelModule", - "printedName": "createOpenChannelModule(_:didTapLeftItem:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileInput", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)profileInputComponent", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileInput", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC12ProfileInputC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setProfileInputComponent:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvM", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC21profileInputComponentAA0cdE6ModuleC07ProfileI0CSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "theme", + "printedName": "theme", + "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "SBUCreateOpenChannelTheme", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", + "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didTapLeftItem:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_14didTapLeftItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CtF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvp", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvp", "moduleName": "SendbirdUIKit", - "isOpen": true, "declAttributes": [ "Custom", "AccessControl", - "ObjC" + "Custom", + "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createOpenChannelModule", - "printedName": "createOpenChannelModule(_:didTapRightItem:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelTheme", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", + "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvg", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Header", - "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", - "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelTheme", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelTheme", + "usr": "s:13SendbirdUIKit25SBUCreateOpenChannelThemeC" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvs", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvM", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC5themeAA0cdE5ThemeCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "viewModel", + "printedName": "viewModel", + "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelViewModel", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", + "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" + } + ], + "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didTapRightItem:", - "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_15didTapRightItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CtF", + "declKind": "Var", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvp", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvp", "moduleName": "SendbirdUIKit", - "isOpen": true, "declAttributes": [ + "HasInitialValue", "Custom", + "HasStorage", "AccessControl", - "ObjC" + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelViewModel", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", + "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvg", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelViewModel", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewModel", + "usr": "s:13SendbirdUIKit29SBUCreateOpenChannelViewModelC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvs", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvM", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC9viewModelAA0cdefI0CSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCreateOpenChannelViewController", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelViewController", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)init", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "AccessControl", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "viewDidLoad", + "printedName": "viewDidLoad()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)viewDidLoad", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC11viewDidLoadyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "viewDidLoad", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewWillAppear", + "printedName": "viewWillAppear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)viewWillAppear:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC14viewWillAppearyySbF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "viewWillAppear:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "preferredStatusBarStyle", + "printedName": "preferredStatusBarStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStatusBarStyle", + "printedName": "UIKit.UIStatusBarStyle", + "usr": "c:@E@UIStatusBarStyle" + } + ], + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(py)preferredStatusBarStyle", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC23preferredStatusBarStyleSo08UIStatusjK0Vvp", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "preferredStatusBarStyle", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStatusBarStyle", + "printedName": "UIKit.UIStatusBarStyle", + "usr": "c:@E@UIStatusBarStyle" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)preferredStatusBarStyle", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC23preferredStatusBarStyleSo08UIStatusjK0Vvg", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "preferredStatusBarStyle", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "createViewModel", + "printedName": "createViewModel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createViewModel", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createF5ModelyyF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupViews", + "printedName": "setupViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupViews", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC10setupViewsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "setupViews", + "declAttributes": [ + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupLayouts", + "printedName": "setupLayouts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupLayouts", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12setupLayoutsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "setupLayouts", + "declAttributes": [ + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupStyles", + "printedName": "setupStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)setupStyles", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC11setupStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "setupStyles", + "declAttributes": [ + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateStyles", + "printedName": "updateStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)updateStyles", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12updateStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "updateStyles", + "declAttributes": [ + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChannel", + "printedName": "createChannel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createChannel", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createE0yyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChannel", + "printedName": "createChannel(channelName:coverImage:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createChannelWithChannelName:coverImage:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createE011channelName10coverImageySS_So7UIImageCSgtF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "selectChannelImage", + "printedName": "selectChannelImage(needRemoveItem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)selectChannelImageWithNeedRemoveItem:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06selectE5Image14needRemoveItemySb_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showChannelImagePicker", + "printedName": "showChannelImagePicker(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaResourceType", + "printedName": "SendbirdUIKit.MediaResourceType", + "usr": "c:@M@SendbirdUIKit@E@MediaResourceType" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showChannelImagePickerWith:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC04showE11ImagePicker4withyAA17MediaResourceTypeO_tF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showCamera", + "printedName": "showCamera()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showCamera", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC10showCamerayyF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showPhotoLibraryPicker", + "printedName": "showPhotoLibraryPicker()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showPhotoLibraryPicker", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC22showPhotoLibraryPickeryyF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showLimitedPhotoLibraryPicker", + "printedName": "showLimitedPhotoLibraryPicker()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)showLimitedPhotoLibraryPicker", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC29showLimitedPhotoLibraryPickeryyF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showPermissionAlert", + "printedName": "showPermissionAlert(forType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PermissionType", + "printedName": "SendbirdUIKit.SBUPermissionManager.PermissionType", + "hasDefaultArg": true, + "usr": "s:13SendbirdUIKit20SBUPermissionManagerC14PermissionTypeO" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC19showPermissionAlert7forTypeyAA20SBUPermissionManagerC0iL0O_tF", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC19showPermissionAlert7forTypeyAA20SBUPermissionManagerC0iL0O_tF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "touchesBegan", + "printedName": "touchesBegan(_:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "UITouch", + "printedName": "UIKit.UITouch", + "usr": "c:objc(cs)UITouch" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIEvent", + "printedName": "UIKit.UIEvent", + "usr": "c:objc(cs)UIEvent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)touchesBegan:withEvent:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12touchesBegan_4withyShySo7UITouchCG_So7UIEventCSgtF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "objc_name": "touchesBegan:withEvent:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dismissAndMoveToChannel", + "printedName": "dismissAndMoveToChannel(_:messageListParams:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BaseChannel", + "printedName": "SendbirdChatSDK.BaseChannel", + "usr": "c:@M@SendbirdChatSDK@objc(cs)SBDBaseChannel" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdChatSDK.MessageListParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageListParams", + "printedName": "SendbirdChatSDK.MessageListParams", + "usr": "c:@M@SendbirdChatSDK@objc(cs)SBDMessageListParams" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)dismissAndMoveToChannel:messageListParams:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC016dismissAndMoveToE0_17messageListParamsy0A7ChatSDK04BaseE0C_AF07MessagemN0CSgtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "errorHandler", + "printedName": "errorHandler(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12errorHandleryySSSg_SiSgtF", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC12errorHandleryySSSg_SiSgtF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "isOpen": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createOpenChannelModule", + "printedName": "createOpenChannelModule(_:didUpdateTitleView:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateTitleView:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_014didUpdateTitleF0yAA0cdeI0C6HeaderC_So6UIViewCSgtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createOpenChannelModule", + "printedName": "createOpenChannelModule(_:didUpdateLeftItem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIBarButtonItem?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateLeftItem:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_17didUpdateLeftItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CSgtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createOpenChannelModule", + "printedName": "createOpenChannelModule(_:didUpdateRightItem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIBarButtonItem?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didUpdateRightItem:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_18didUpdateRightItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CSgtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createOpenChannelModule", + "printedName": "createOpenChannelModule(_:didTapLeftItem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + }, + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didTapLeftItem:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_14didTapLeftItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createOpenChannelModule", + "printedName": "createOpenChannelModule(_:didTapRightItem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Header", + "printedName": "SendbirdUIKit.SBUCreateOpenChannelModule.Header", + "usr": "s:13SendbirdUIKit26SBUCreateOpenChannelModuleC6HeaderC" + }, + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateOpenChannelViewController(im)createOpenChannelModule:didTapRightItem:", + "mangledName": "$s13SendbirdUIKit34SBUCreateOpenChannelViewControllerC06createdE6Module_15didTapRightItemyAA0cdeI0C6HeaderC_So011UIBarButtonM0CtF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" ], "funcSelfKind": "NonMutating" }, @@ -57988,7 +59769,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -82389,15 +84170,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileImageContentView(im)setupViews", + "usr": "s:13SendbirdUIKit26QuotedFileImageContentViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit26QuotedFileImageContentViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -82417,15 +84195,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileImageContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit26QuotedFileImageContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit26QuotedFileImageContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -82466,15 +84241,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)QuotedFileImageContentView(im)setupStyles", + "usr": "s:13SendbirdUIKit26QuotedFileImageContentViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit26QuotedFileImageContentViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -82691,6 +84463,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -82753,13 +84532,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -83940,13 +85712,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)setupViews", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -83964,13 +85734,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)setupLayouts", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -83988,13 +85756,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)updateLayouts", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateLayouts", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -84012,13 +85778,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)setupStyles", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -84036,13 +85800,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)updateStyles", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC12updateStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -84060,13 +85822,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageWebView(im)setupActions", + "usr": "s:13SendbirdUIKit17SBUMessageWebViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit17SBUMessageWebViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "ObjC", "Custom", "AccessControl" ], @@ -84125,7 +85885,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -86770,15 +88530,14 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)setupViews", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP10setupViewsyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP10setupViewsyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" @@ -86795,15 +88554,14 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)setupStyles", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP11setupStylesyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP11setupStylesyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" @@ -86820,15 +88578,14 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)updateStyles", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP12updateStylesyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP12updateStylesyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" @@ -86845,15 +88602,14 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)setupLayouts", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" @@ -86870,15 +88626,14 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)updateLayouts", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" @@ -86895,29 +88650,25 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle(im)setupActions", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP12setupActionsyyF", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP12setupActionsyyF", "moduleName": "SendbirdUIKit", "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUViewLifeCycle>", "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ - "RawDocComment", - "ObjC" + "RawDocComment" ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" } ], "declKind": "Protocol", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP", "moduleName": "SendbirdUIKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl", - "ObjC", "RawDocComment" ] }, @@ -87816,7 +89567,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -88895,7 +90646,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -91087,8 +92838,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "ReferenceOwnership", "AccessControl", "RawDocComment" @@ -93394,7 +95145,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -97489,14 +99240,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelMessageWebView(im)setupViews", + "usr": "s:13SendbirdUIKit28SBUOpenChannelMessageWebViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit28SBUOpenChannelMessageWebViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "ObjC", "Custom", "Override", "AccessControl" @@ -97515,14 +99264,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelMessageWebView(im)setupStyles", + "usr": "s:13SendbirdUIKit28SBUOpenChannelMessageWebViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit28SBUOpenChannelMessageWebViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "ObjC", "Custom", "Override", "AccessControl" @@ -97541,14 +99288,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelMessageWebView(im)setupLayouts", + "usr": "s:13SendbirdUIKit28SBUOpenChannelMessageWebViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit28SBUOpenChannelMessageWebViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "ObjC", "Custom", "Override", "AccessControl" @@ -97677,7 +99422,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -97918,13 +99663,12 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC10setupViewsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ "Dynamic", - "ObjC", "Custom", "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -97945,13 +99689,12 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ "Dynamic", - "ObjC", "Custom", "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -97972,12 +99715,11 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateLayouts", "declAttributes": [ "Dynamic", - "ObjC", "Custom", - "AccessControl" + "AccessControl", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -97998,13 +99740,12 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC11setupStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ "Dynamic", - "ObjC", "Custom", "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -98025,12 +99766,11 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC12updateStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ "Dynamic", - "ObjC", "Custom", - "AccessControl" + "AccessControl", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -98051,13 +99791,12 @@ "mangledName": "$s13SendbirdUIKit16SBUTableViewCellC12setupActionsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ "Dynamic", - "ObjC", "Custom", "AccessControl", - "RawDocComment" + "RawDocComment", + "ObjC" ], "isFromExtension": true, "funcSelfKind": "NonMutating" @@ -98089,7 +99828,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -102040,6 +103779,42 @@ ], "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "groupChannelModule", + "printedName": "groupChannelModule(_:didSelectQuickReplyOption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "List", + "printedName": "SendbirdUIKit.SBUGroupChannelModule.List", + "usr": "s:13SendbirdUIKit21SBUGroupChannelModuleC4ListC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUGroupChannelViewController(im)groupChannelModule:didSelectQuickReplyOption:", + "mangledName": "$s13SendbirdUIKit29SBUGroupChannelViewControllerC05groupD6Module_25didSelectQuickReplyOptionyAA0cdH0C4ListC_SStF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, { "kind": "Function", "name": "baseChannelModule", @@ -104145,15 +105920,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelCommonContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit31SBUOpenChannelCommonContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit31SBUOpenChannelCommonContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -104172,15 +105944,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelCommonContentView(im)setupStyles", + "usr": "s:13SendbirdUIKit31SBUOpenChannelCommonContentViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit31SBUOpenChannelCommonContentViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -104319,6 +106088,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -104381,13 +106157,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -110738,127 +112507,127 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUOpenChannelBaseMessageCell", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvg", + "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUOpenChannelBaseMessageCell", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvs", + "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvM", + "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userMessageCell", + "printedName": "userMessageCell", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUOpenChannelBaseMessageCell", + "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC15userMessageCellAA0cd4BasehI0CSgvp", + "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC15userMessageCellAA0cd4BasehI0CSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasInitialValue", "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUOpenChannelBaseMessageCell", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvg", - "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvg", - "moduleName": "SendbirdUIKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUOpenChannelBaseMessageCell", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvs", - "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvs", - "moduleName": "SendbirdUIKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvM", - "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC16adminMessageCellAA0cd4BasehI0CSgvM", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "userMessageCell", - "printedName": "userMessageCell", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUOpenChannelBaseMessageCell", - "printedName": "SendbirdUIKit.SBUOpenChannelBaseMessageCell", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUOpenChannelBaseMessageCell" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:13SendbirdUIKit20SBUOpenChannelModuleC4ListC15userMessageCellAA0cd4BasehI0CSgvp", - "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC4ListC15userMessageCellAA0cd4BasehI0CSgvp", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -110976,8 +112745,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -111095,8 +112864,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -111214,8 +112983,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -113422,9 +115191,9 @@ "mangledName": "$s13SendbirdUIKit20SBUOpenChannelModuleC5MediaC9mediaViewSo6UIViewCvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -117089,9 +118858,9 @@ "mangledName": "$s13SendbirdUIKit22SBUSelectableStackViewC8positionAA15MessagePositionOvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -117232,14 +119001,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView(im)setupViews", + "usr": "s:13SendbirdUIKit22SBUSelectableStackViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit22SBUSelectableStackViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -117259,14 +119025,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView(im)setupLayouts", + "usr": "s:13SendbirdUIKit22SBUSelectableStackViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit22SBUSelectableStackViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -117285,14 +119048,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView(im)setupStyles", + "usr": "s:13SendbirdUIKit22SBUSelectableStackViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit22SBUSelectableStackViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -117432,6 +119192,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -117494,13 +119261,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -121160,15 +122920,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedUserMessageView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUQuotedUserMessageViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedUserMessageViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -121187,15 +122944,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedUserMessageView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUQuotedUserMessageViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedUserMessageViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -121214,15 +122968,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedUserMessageView(im)setupStyles", + "usr": "s:13SendbirdUIKit24SBUQuotedUserMessageViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedUserMessageViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -121347,6 +123098,13 @@ "usr": "s:13SendbirdUIKit28SBUQuotedMessageViewProtocolP", "mangledName": "$s13SendbirdUIKit28SBUQuotedMessageViewProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -121409,13 +123167,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -123445,9 +125196,9 @@ "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC16heightConstraintSo08NSLayoutG0CSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -123611,9 +125362,9 @@ "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC19isLimitGuideEnabledSbvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -123697,9 +125448,9 @@ "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC8delegateAA0cdE8Delegate_pSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "ReferenceOwnership", "AccessControl", "RawDocComment" @@ -123999,15 +125750,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSuggestedMentionList(im)setupViews", + "usr": "s:13SendbirdUIKit23SBUSuggestedMentionListC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -124026,15 +125774,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSuggestedMentionList(im)setupLayouts", + "usr": "s:13SendbirdUIKit23SBUSuggestedMentionListC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -124053,15 +125798,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSuggestedMentionList(im)setupStyles", + "usr": "s:13SendbirdUIKit23SBUSuggestedMentionListC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit23SBUSuggestedMentionListC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -124425,272 +126167,272 @@ "ObjectiveC.NSObject" ], "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, { "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SendbirdChatSDK", - "printedName": "SendbirdChatSDK", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SendbirdChatSDK", - "printedName": "SendbirdChatSDK", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "MessageTemplateParser", - "printedName": "MessageTemplateParser", - "children": [ - { - "kind": "Function", - "name": "getMock", - "printedName": "getMock(widthT:widthV:heightT:heightV:contentMode:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit21MessageTemplateParserC7getMock6widthT0H1V7heightT0I1V11contentModeS2S_SiSSSiSStFZ", - "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC7getMock6widthT0H1V7heightT0I1V11contentModeS2S_SiSSSiSStFZ", - "moduleName": "SendbirdUIKit", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" }, - { - "kind": "Function", - "name": "parserTest", - "printedName": "parserTest()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit21MessageTemplateParserC10parserTestyyF", - "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC10parserTestyyF", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "MessageTemplateParser", - "printedName": "SendbirdUIKit.MessageTemplateParser", - "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser" - } - ], - "declKind": "Constructor", - "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser(im)init", - "mangledName": "$s13SendbirdUIKit21MessageTemplateParserCACycfc", - "moduleName": "SendbirdUIKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser", - "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MessageTemplateParser", + "printedName": "MessageTemplateParser", + "children": [ + { + "kind": "Function", + "name": "getMock", + "printedName": "getMock(widthT:widthV:heightT:heightV:contentMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit21MessageTemplateParserC7getMock6widthT0H1V7heightT0I1V11contentModeS2S_SiSSSiSStFZ", + "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC7getMock6widthT0H1V7heightT0I1V11contentModeS2S_SiSSSiSStFZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parserTest", + "printedName": "parserTest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit21MessageTemplateParserC10parserTestyyF", + "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC10parserTestyyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageTemplateParser", + "printedName": "SendbirdUIKit.MessageTemplateParser", + "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser(im)init", + "mangledName": "$s13SendbirdUIKit21MessageTemplateParserCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)MessageTemplateParser", + "mangledName": "$s13SendbirdUIKit21MessageTemplateParserC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ { "kind": "Conformance", "name": "Equatable", @@ -127083,7 +128825,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -127340,7 +129082,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -133611,6 +135353,885 @@ "declKind": "Import", "moduleName": "SendbirdUIKit" }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SBUQuickReplyViewDelegate", + "children": [ + { + "kind": "Function", + "name": "quickReplyView", + "printedName": "quickReplyView(_:didSelectOption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP05quickdE0_15didSelectOptionyAA0cdE0C_AA0cdjE0CtF", + "mangledName": "$s13SendbirdUIKit25SBUQuickReplyViewDelegateP05quickdE0_15didSelectOptionyAA0cdE0C_AA0cdjE0CtF", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUQuickReplyViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP", + "mangledName": "$s13SendbirdUIKit25SBUQuickReplyViewDelegateP", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyView", + "printedName": "SBUQuickReplyView", + "children": [ + { + "kind": "Var", + "name": "stackView", + "printedName": "stackView", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvs", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0Cvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0CvM", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC05stackE0So07UIStackE0CvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "topSpacer", + "printedName": "topSpacer", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvs", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvM", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9topSpacerSo6UIViewCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC7optionsSaySSGvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC7optionsSaySSGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC7optionsSaySSGvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC7optionsSaySSGvg", + "moduleName": "SendbirdUIKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messageId", + "printedName": "messageId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9messageIds5Int64VSgvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9messageIds5Int64VSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9messageIds5Int64VSgvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9messageIds5Int64VSgvg", + "moduleName": "SendbirdUIKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "params", + "printedName": "params", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewParams", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC6paramsAA0cdE6ParamsVSgvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC6paramsAA0cdE6ParamsVSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewParams", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC6paramsAA0cdE6ParamsVSgvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC6paramsAA0cdE6ParamsVSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate?" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvp", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvg", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvs", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvM", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC8delegateAA0cdE8Delegate_pSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setupViews", + "printedName": "setupViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC10setupViewsyyF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC10setupViewsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupLayouts", + "printedName": "setupLayouts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC12setupLayoutsyyF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC12setupLayoutsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupStyles", + "printedName": "setupStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC11setupStylesyyF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC11setupStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(with:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewParams", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyViewDelegate", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC9configure4with8delegateyAA0cdE6ParamsV_AA0cdE8Delegate_pSgtF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC9configure4with8delegateyAA0cdE6ParamsV_AA0cdE8Delegate_pSgtF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createQuickReplyOptionViews", + "printedName": "createQuickReplyOptionViews(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUQuickReplyOptionView]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC011createQuickD11OptionViews7optionsSayAA0cdhE0CGSaySSG_tF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC011createQuickD11OptionViews7optionsSayAA0cdhE0CGSaySSG_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "quickReplyOptionViewDidSelect", + "printedName": "quickReplyOptionViewDidSelect(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit17SBUQuickReplyViewC05quickd6OptionE9DidSelectyyAA0cdgE0CF", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC05quickd6OptionE9DidSelectyyAA0cdgE0CF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView(im)init", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView(im)initWithFrame:", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC5frameACSo6CGRectV_tcfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView", + "mangledName": "$s13SendbirdUIKit17SBUQuickReplyViewC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "IBDesignable", + "ObjC" + ], + "superclassUsr": "c:@M@SendbirdUIKit@objc(cs)SBUView", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "SendbirdUIKit.SBUView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SBUQuickReplyOptionViewDelegate", + "printedName": "SBUQuickReplyOptionViewDelegate", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP", + "mangledName": "$s13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP" + }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, { "kind": "TypeDecl", "name": "SBUOpenChannelContentBaseMessageCell", @@ -135116,7 +137737,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -139451,7 +142072,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -139583,7 +142204,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -140135,8 +142756,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "SetterAccess", "AccessControl" ], @@ -140431,15 +143052,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUThreadInfoView(im)setupViews", + "usr": "s:13SendbirdUIKit17SBUThreadInfoViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit17SBUThreadInfoViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -140487,15 +143105,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUThreadInfoView(im)setupStyles", + "usr": "s:13SendbirdUIKit17SBUThreadInfoViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit17SBUThreadInfoViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -140514,15 +143129,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUThreadInfoView(im)setupLayouts", + "usr": "s:13SendbirdUIKit17SBUThreadInfoViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit17SBUThreadInfoViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -140541,15 +143153,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUThreadInfoView(im)setupActions", + "usr": "s:13SendbirdUIKit17SBUThreadInfoViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit17SBUThreadInfoViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -140671,6 +143280,13 @@ "usr": "s:13SendbirdUIKit25SBUThreadInfoViewProtocolP", "mangledName": "$s13SendbirdUIKit25SBUThreadInfoViewProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -140733,13 +143349,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -141361,15 +143970,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageThreadTitleView(im)setupViews", + "usr": "s:13SendbirdUIKit25SBUMessageThreadTitleViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit25SBUMessageThreadTitleViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -141388,15 +143994,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageThreadTitleView(im)setupLayouts", + "usr": "s:13SendbirdUIKit25SBUMessageThreadTitleViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit25SBUMessageThreadTitleViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -141415,15 +144018,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageThreadTitleView(im)setupStyles", + "usr": "s:13SendbirdUIKit25SBUMessageThreadTitleViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit25SBUMessageThreadTitleViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -141591,6 +144191,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -141653,13 +144260,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -144234,15 +146834,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateChannelTypeSelector(im)setupViews", + "usr": "s:13SendbirdUIKit28SBUCreateChannelTypeSelectorC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit28SBUCreateChannelTypeSelectorC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -144261,15 +146858,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateChannelTypeSelector(im)setupStyles", + "usr": "s:13SendbirdUIKit28SBUCreateChannelTypeSelectorC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit28SBUCreateChannelTypeSelectorC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -144288,15 +146882,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateChannelTypeSelector(im)updateStyles", + "usr": "s:13SendbirdUIKit28SBUCreateChannelTypeSelectorC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit28SBUCreateChannelTypeSelectorC12updateStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -144315,15 +146906,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCreateChannelTypeSelector(im)setupLayouts", + "usr": "s:13SendbirdUIKit28SBUCreateChannelTypeSelectorC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit28SBUCreateChannelTypeSelectorC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -144579,6 +147167,13 @@ "usr": "s:13SendbirdUIKit36SBUCreateChannelTypeSelectorProtocolP", "mangledName": "$s13SendbirdUIKit36SBUCreateChannelTypeSelectorProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -144641,13 +147236,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -147739,6 +150327,39 @@ "mangledName": "$s13SendbirdUIKit19ChannelCreationTypeO9broadcastyA2CmF", "moduleName": "SendbirdUIKit" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.ChannelCreationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ChannelCreationType", + "printedName": "SendbirdUIKit.ChannelCreationType", + "usr": "s:13SendbirdUIKit19ChannelCreationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit19ChannelCreationTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s13SendbirdUIKit19ChannelCreationTypeO8rawValueACSgSi_tcfc", + "moduleName": "SendbirdUIKit", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -147777,39 +150398,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.ChannelCreationType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ChannelCreationType", - "printedName": "SendbirdUIKit.ChannelCreationType", - "usr": "s:13SendbirdUIKit19ChannelCreationTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:13SendbirdUIKit19ChannelCreationTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s13SendbirdUIKit19ChannelCreationTypeO8rawValueACSgSi_tcfc", - "moduleName": "SendbirdUIKit", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -149070,38 +151658,6 @@ "mangledName": "$s13SendbirdUIKit12UserListTypeO16suggestedMentionyACSbcACmF", "moduleName": "SendbirdUIKit" }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "UserListType", - "printedName": "SendbirdUIKit.UserListType", - "usr": "s:13SendbirdUIKit12UserListTypeO" - }, - { - "kind": "TypeNominal", - "name": "UserListType", - "printedName": "SendbirdUIKit.UserListType", - "usr": "s:13SendbirdUIKit12UserListTypeO" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit12UserListTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s13SendbirdUIKit12UserListTypeO2eeoiySbAC_ACtFZ", - "moduleName": "SendbirdUIKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, { "kind": "Var", "name": "hashValue", @@ -149165,6 +151721,38 @@ "moduleName": "SendbirdUIKit", "implicit": true, "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UserListType", + "printedName": "SendbirdUIKit.UserListType", + "usr": "s:13SendbirdUIKit12UserListTypeO" + }, + { + "kind": "TypeNominal", + "name": "UserListType", + "printedName": "SendbirdUIKit.UserListType", + "usr": "s:13SendbirdUIKit12UserListTypeO" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit12UserListTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s13SendbirdUIKit12UserListTypeO2eeoiySbAC_ACtFZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" } ], "declKind": "Enum", @@ -150770,6 +153358,39 @@ ], "fixedbinaryorder": 4 }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.MediaResourceType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaResourceType", + "printedName": "SendbirdUIKit.MediaResourceType", + "usr": "c:@M@SendbirdUIKit@E@MediaResourceType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit17MediaResourceTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s13SendbirdUIKit17MediaResourceTypeO8rawValueACSgSi_tcfc", + "moduleName": "SendbirdUIKit", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -150808,39 +153429,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.MediaResourceType?", - "children": [ - { - "kind": "TypeNominal", - "name": "MediaResourceType", - "printedName": "SendbirdUIKit.MediaResourceType", - "usr": "c:@M@SendbirdUIKit@E@MediaResourceType" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:13SendbirdUIKit17MediaResourceTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s13SendbirdUIKit17MediaResourceTypeO8rawValueACSgSi_tcfc", - "moduleName": "SendbirdUIKit", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -154335,9 +156923,9 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC015baseFileContentF0AA07SBUBasehiF0Cvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -155130,9 +157718,9 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC21userProfileTapHandleryycSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -155275,9 +157863,9 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC19tapHandlerToContentyycSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -155420,302 +158008,302 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", "Custom", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvg", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvg", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvs", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvs", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvM", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvM", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "emojiTapHandler", - "printedName": "emojiTapHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvp", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvp", - "moduleName": "SendbirdUIKit", - "declAttributes": [ "HasInitialValue", "HasStorage", - "Custom", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvg", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvg", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvs", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvs", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvM", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvM", - "moduleName": "SendbirdUIKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "moreEmojiTapHandler", - "printedName": "moreEmojiTapHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC19moreEmojiTapHandleryycSgvp", - "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC19moreEmojiTapHandleryycSgvp", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvg", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvs", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvM", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC29moreButtonTapHandlerToContentyycSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "emojiTapHandler", + "printedName": "emojiTapHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvp", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvg", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvs", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvM", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC15emojiTapHandlerySScSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "moreEmojiTapHandler", + "printedName": "moreEmojiTapHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit24SBUParentMessageInfoViewC19moreEmojiTapHandleryycSgvp", + "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC19moreEmojiTapHandleryycSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], @@ -155859,9 +158447,9 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC21emojiLongPressHandlerySScSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -156007,9 +158595,9 @@ "mangledName": "$s13SendbirdUIKit24SBUParentMessageInfoViewC17mentionTapHandleryAA7SBUUserCcSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -158276,6 +160864,194 @@ "accessorKind": "_modify" } ] + }, + { + "kind": "Var", + "name": "cardViewParamsCollectionBuilder", + "printedName": "cardViewParamsCollectionBuilder", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams])?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvpZ", + "mangledName": "$s13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvpZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams])?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvgZ", + "mangledName": "$s13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams])?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvsZ", + "mangledName": "$s13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvMZ", + "mangledName": "$s13SendbirdUIKit21SBUGlobalCustomParamsC08cardViewE17CollectionBuilderSayAA07SBUCardgE0VGSSKcSgvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] } ], "declKind": "Class", @@ -158519,6 +161295,816 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyOptionViewDelegate", + "printedName": "SBUQuickReplyOptionViewDelegate", + "children": [ + { + "kind": "Function", + "name": "quickReplyOptionViewDidSelect", + "printedName": "quickReplyOptionViewDidSelect(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP05quickdeF9DidSelectyyAA0cdeF0CF", + "mangledName": "$s13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP05quickdeF9DidSelectyyAA0cdeF0CF", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUQuickReplyOptionViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP", + "mangledName": "$s13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyOptionView", + "printedName": "SBUQuickReplyOptionView", + "children": [ + { + "kind": "Var", + "name": "theme", + "printedName": "theme", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUMessageCellTheme", + "printedName": "SendbirdUIKit.SBUMessageCellTheme", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvs", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvM", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC5themeAA19SBUMessageCellThemeCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "selectableStackView", + "printedName": "selectableStackView", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUSelectableStackView", + "printedName": "SendbirdUIKit.SBUSelectableStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUSelectableStackView", + "printedName": "SendbirdUIKit.SBUSelectableStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUSelectableStackView", + "printedName": "SendbirdUIKit.SBUSelectableStackView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUSelectableStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvs", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0Cvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0CvM", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC015selectableStackF0AA013SBUSelectablehF0CvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textView", + "printedName": "textView", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvs", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvM", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC04textF0So6UIViewCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC4textSSSgvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC4textSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC4textSSSgvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC4textSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate?" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvs", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvM", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC8delegateAA0cdeF8Delegate_pSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "setupViews", + "printedName": "setupViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC10setupViewsyyF", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC10setupViewsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupLayouts", + "printedName": "setupLayouts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC12setupLayoutsyyF", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC12setupLayoutsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupStyles", + "printedName": "setupStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC11setupStylesyyF", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC11setupStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupActions", + "printedName": "setupActions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC12setupActionsyyF", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC12setupActionsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSelectOption", + "printedName": "onSelectOption()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView(im)onSelectOption", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC08onSelectE0yyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(with:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionViewDelegate", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionViewDelegate", + "usr": "s:13SendbirdUIKit31SBUQuickReplyOptionViewDelegateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit23SBUQuickReplyOptionViewC9configure4with8delegateySS_AA0cdeF8Delegate_pSgtF", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC9configure4with8delegateySS_AA0cdeF8Delegate_pSgtF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView(im)init", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView(im)initWithFrame:", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC5frameACSo6CGRectV_tcfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyOptionViewC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:@M@SendbirdUIKit@objc(cs)SBUView", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "SendbirdUIKit.SBUView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -158606,9 +162192,9 @@ "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC5themeAA19SBUMessageCellThemeCvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -158694,9 +162280,9 @@ "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC9messageIds5Int64Vvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -159250,9 +162836,9 @@ "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC6paramsAA0cdeF6ParamsCSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "SetterAccess", "AccessControl", "RawDocComment" @@ -159716,9 +163302,9 @@ "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC013mainContainerF0AA018SBUSelectableStackF0Cvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -159965,15 +163551,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedBaseMessageView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUQuotedBaseMessageViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -159993,15 +163576,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedBaseMessageView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUQuotedBaseMessageViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -160020,15 +163600,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedBaseMessageView(im)setupStyles", + "usr": "s:13SendbirdUIKit24SBUQuotedBaseMessageViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -160047,15 +163624,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedBaseMessageView(im)setupActions", + "usr": "s:13SendbirdUIKit24SBUQuotedBaseMessageViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedBaseMessageViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -160148,6 +163722,13 @@ "usr": "s:13SendbirdUIKit28SBUQuotedMessageViewProtocolP", "mangledName": "$s13SendbirdUIKit28SBUQuotedMessageViewProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -160210,13 +163791,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -160582,7 +164156,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -160732,8 +164306,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "ObjC" ], @@ -162893,7 +166467,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -165574,6 +169148,39 @@ ], "fixedbinaryorder": 8 }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.ChannelMemberListType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ChannelMemberListType", + "printedName": "SendbirdUIKit.ChannelMemberListType", + "usr": "c:@M@SendbirdUIKit@E@ChannelMemberListType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit21ChannelMemberListTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s13SendbirdUIKit21ChannelMemberListTypeO8rawValueACSgSi_tcfc", + "moduleName": "SendbirdUIKit", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -165612,39 +169219,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.ChannelMemberListType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ChannelMemberListType", - "printedName": "SendbirdUIKit.ChannelMemberListType", - "usr": "c:@M@SendbirdUIKit@E@ChannelMemberListType" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:13SendbirdUIKit21ChannelMemberListTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s13SendbirdUIKit21ChannelMemberListTypeO8rawValueACSgSi_tcfc", - "moduleName": "SendbirdUIKit", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -165697,6 +169271,474 @@ } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUCardViewParams", + "printedName": "SBUCardViewParams", + "children": [ + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV8imageURLSSSgvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV8imageURLSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV8imageURLSSSgvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV8imageURLSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "title", + "printedName": "title", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV5titleSSSgvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV5titleSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV5titleSSSgvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV5titleSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "subtitle", + "printedName": "subtitle", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV8subtitleSSSgvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV8subtitleSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV8subtitleSSSgvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV8subtitleSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV11descriptionSSSgvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV11descriptionSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV11descriptionSSSgvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV11descriptionSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "link", + "printedName": "link", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV4linkSSSgvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV4linkSSSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV4linkSSSgvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV4linkSSSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasLink", + "printedName": "hasLink", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV7hasLinkSbvp", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV7hasLinkSbvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV7hasLinkSbvg", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV7hasLinkSbvg", + "moduleName": "SendbirdUIKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(imageURL:title:subtitle:description:link:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV8imageURL5title8subtitle11description4linkACSSSg_A4Itcfc", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV8imageURL5title8subtitle11description4linkACSSSg_A4Itcfc", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV", + "mangledName": "$s13SendbirdUIKit17SBUCardViewParamsV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -166933,15 +170975,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserNameView(im)setupViews", + "usr": "s:13SendbirdUIKit15SBUUserNameViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit15SBUUserNameViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -166960,15 +170999,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserNameView(im)setupLayouts", + "usr": "s:13SendbirdUIKit15SBUUserNameViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit15SBUUserNameViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -166987,15 +171023,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserNameView(im)updateLayouts", + "usr": "s:13SendbirdUIKit15SBUUserNameViewC13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit15SBUUserNameViewC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "updateLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -167014,15 +171047,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserNameView(im)setupStyles", + "usr": "s:13SendbirdUIKit15SBUUserNameViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit15SBUUserNameViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -167041,15 +171071,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserNameView(im)updateStyles", + "usr": "s:13SendbirdUIKit15SBUUserNameViewC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit15SBUUserNameViewC12updateStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -167138,6 +171165,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -167200,13 +171234,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -167431,6 +171458,186 @@ ], "hasMissingDesignatedInitializers": true }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyViewParams", + "printedName": "SBUQuickReplyViewParams", + "children": [ + { + "kind": "Var", + "name": "messageId", + "printedName": "messageId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV9messageIds5Int64Vvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV9messageIds5Int64Vvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV9messageIds5Int64Vvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV9messageIds5Int64Vvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "replyOptions", + "printedName": "replyOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV12replyOptionsSaySSGvp", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV12replyOptionsSaySSGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV12replyOptionsSaySSGvg", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV12replyOptionsSaySSGvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(messageId:replyOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyViewParams", + "printedName": "SendbirdUIKit.SBUQuickReplyViewParams", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV9messageId12replyOptionsACs5Int64V_SaySSGtcfc", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV9messageId12replyOptionsACs5Int64V_SaySSGtcfc", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit23SBUQuickReplyViewParamsV", + "mangledName": "$s13SendbirdUIKit23SBUQuickReplyViewParamsV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -169559,8 +173766,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "ObjC" ], @@ -174443,8 +178650,8 @@ "mangledName": "$s13SendbirdUIKit21SBUMessageProfileViewC9urlStringSSvp", "moduleName": "SendbirdUIKit", "declAttributes": [ - "HasStorage", "Custom", + "HasStorage", "AccessControl" ], "hasStorage": true, @@ -174566,9 +178773,9 @@ "mangledName": "$s13SendbirdUIKit21SBUMessageProfileViewC17imageDownloadTaskSo012NSURLSessionH0CSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -174724,15 +178931,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageProfileView(im)setupViews", + "usr": "s:13SendbirdUIKit21SBUMessageProfileViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit21SBUMessageProfileViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -174751,15 +178955,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageProfileView(im)setupLayouts", + "usr": "s:13SendbirdUIKit21SBUMessageProfileViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit21SBUMessageProfileViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -174778,15 +178979,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageProfileView(im)setupStyles", + "usr": "s:13SendbirdUIKit21SBUMessageProfileViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit21SBUMessageProfileViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -174856,6 +179054,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -174918,13 +179123,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -177876,7 +182074,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -178502,8 +182700,15 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SBUQuickReplyViewDelegate", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP", + "mangledName": "$s13SendbirdUIKit25SBUQuickReplyViewDelegateP" } ] }, @@ -179707,7 +183912,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -181397,10 +185602,59 @@ } ] }, + { + "kind": "Var", + "name": "shouldHideQuickReply", + "printedName": "shouldHideQuickReply", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit24SBUUserMessageCellParamsC20shouldHideQuickReplySbvp", + "mangledName": "$s13SendbirdUIKit24SBUUserMessageCellParamsC20shouldHideQuickReplySbvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit24SBUUserMessageCellParamsC20shouldHideQuickReplySbvg", + "mangledName": "$s13SendbirdUIKit24SBUUserMessageCellParamsC20shouldHideQuickReplySbvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, { "kind": "Constructor", "name": "init", - "printedName": "init(message:hideDateView:useMessagePosition:groupPosition:receiptState:useReaction:withTextView:isThreadMessage:joinedAt:)", + "printedName": "init(message:hideDateView:useMessagePosition:groupPosition:receiptState:useReaction:withTextView:isThreadMessage:joinedAt:shouldHideQuickReply:)", "children": [ { "kind": "TypeNominal", @@ -181466,11 +185720,18 @@ "printedName": "Swift.Int64", "hasDefaultArg": true, "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" } ], "declKind": "Constructor", - "usr": "s:13SendbirdUIKit24SBUUserMessageCellParamsC7message12hideDateView03useD8Position05groupL012receiptState0K8Reaction08withTextJ008isThreadD08joinedAtAC0A7ChatSDK04UserD0C_S2bAA0d5GroupL0OAA017SBUMessageReceiptO0OS3bs5Int64Vtcfc", - "mangledName": "$s13SendbirdUIKit24SBUUserMessageCellParamsC7message12hideDateView03useD8Position05groupL012receiptState0K8Reaction08withTextJ008isThreadD08joinedAtAC0A7ChatSDK04UserD0C_S2bAA0d5GroupL0OAA017SBUMessageReceiptO0OS3bs5Int64Vtcfc", + "usr": "s:13SendbirdUIKit24SBUUserMessageCellParamsC7message12hideDateView03useD8Position05groupL012receiptState0K8Reaction08withTextJ008isThreadD08joinedAt20shouldHideQuickReplyAC0A7ChatSDK04UserD0C_S2bAA0d5GroupL0OAA017SBUMessageReceiptO0OS3bs5Int64VSbtcfc", + "mangledName": "$s13SendbirdUIKit24SBUUserMessageCellParamsC7message12hideDateView03useD8Position05groupL012receiptState0K8Reaction08withTextJ008isThreadD08joinedAt20shouldHideQuickReplyAC0A7ChatSDK04UserD0C_S2bAA0d5GroupL0OAA017SBUMessageReceiptO0OS3bs5Int64VSbtcfc", "moduleName": "SendbirdUIKit", "declAttributes": [ "AccessControl" @@ -182424,7 +186685,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -183443,15 +187704,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceContentView(im)setupViews", + "usr": "s:13SendbirdUIKit19SBUVoiceContentViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit19SBUVoiceContentViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -183470,15 +187728,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit19SBUVoiceContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit19SBUVoiceContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -183497,15 +187752,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceContentView(im)setupStyles", + "usr": "s:13SendbirdUIKit19SBUVoiceContentViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit19SBUVoiceContentViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -183642,6 +187894,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -183704,13 +187963,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -195327,15 +199579,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageInputView(im)setupViews", + "usr": "s:13SendbirdUIKit19SBUMessageInputViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageInputViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -195355,15 +199604,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageInputView(im)setupLayouts", + "usr": "s:13SendbirdUIKit19SBUMessageInputViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageInputViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -195383,15 +199629,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageInputView(im)setupStyles", + "usr": "s:13SendbirdUIKit19SBUMessageInputViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageInputViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -196203,6 +200446,13 @@ "usr": "s:13SendbirdUIKit22SBUActionSheetDelegateP", "mangledName": "$s13SendbirdUIKit22SBUActionSheetDelegateP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -196265,13 +200515,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -198807,7 +203050,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -198829,6 +203072,23 @@ "declKind": "Import", "moduleName": "SendbirdUIKit" }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, { "kind": "Import", "name": "UIKit", @@ -199408,8 +203668,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -199527,8 +203787,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -199646,8 +203906,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -204643,8 +208903,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -205622,6 +209882,781 @@ "declKind": "Import", "moduleName": "SendbirdUIKit" }, + { + "kind": "TypeDecl", + "name": "SBUCardListView", + "printedName": "SBUCardListView", + "children": [ + { + "kind": "TypeDecl", + "name": "Metric", + "printedName": "Metric", + "children": [ + { + "kind": "Var", + "name": "maxWidth", + "printedName": "maxWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvpZ", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvpZ", + "moduleName": "SendbirdUIKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvgZ", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvgZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvsZ", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvsZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvMZ", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6MetricV8maxWidthSdvMZ", + "moduleName": "SendbirdUIKit", + "static": true, + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6MetricV", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6MetricV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Var", + "name": "stackView", + "printedName": "stackView", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIStackView", + "printedName": "UIKit.UIStackView", + "usr": "c:objc(cs)UIStackView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvs", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0Cvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0CvM", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC05stackE0So07UIStackE0CvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "topSpacer", + "printedName": "topSpacer", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvs", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvM", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9topSpacerSo6UIViewCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "items", + "printedName": "items", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC5itemsSayAA0cE6ParamsVGvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC5itemsSayAA0cE6ParamsVGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC5itemsSayAA0cE6ParamsVGvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC5itemsSayAA0cE6ParamsVGvg", + "moduleName": "SendbirdUIKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messageId", + "printedName": "messageId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9messageIds5Int64VSgvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9messageIds5Int64VSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9messageIds5Int64VSgvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9messageIds5Int64VSgvg", + "moduleName": "SendbirdUIKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "params", + "printedName": "params", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardListViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListViewParams", + "printedName": "SendbirdUIKit.SBUCardListViewParams", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6paramsAA0cdE6ParamsVSgvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6paramsAA0cdE6ParamsVSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardListViewParams?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListViewParams", + "printedName": "SendbirdUIKit.SBUCardListViewParams", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListViewC6paramsAA0cdE6ParamsVSgvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC6paramsAA0cdE6ParamsVSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setupViews", + "printedName": "setupViews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListViewC10setupViewsyyF", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC10setupViewsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupLayouts", + "printedName": "setupLayouts()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListViewC12setupLayoutsyyF", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC12setupLayoutsyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setupStyles", + "printedName": "setupStyles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListViewC11setupStylesyyF", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC11setupStylesyyF", + "moduleName": "SendbirdUIKit", + "overriding": true, + "declAttributes": [ + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUCardListViewParams", + "printedName": "SendbirdUIKit.SBUCardListViewParams", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListViewC9configure4withyAA0cdE6ParamsV_tF", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC9configure4withyAA0cdE6ParamsV_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createCardViews", + "printedName": "createCardViews(items:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardView]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardView", + "printedName": "SendbirdUIKit.SBUCardView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardView" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListViewC15createCardViews5itemsSayAA0cE0CGSayAA0cE6ParamsVG_tF", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC15createCardViews5itemsSayAA0cE0CGSayAA0cE6ParamsVG_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListView", + "printedName": "SendbirdUIKit.SBUCardListView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView(im)init", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListView", + "printedName": "SendbirdUIKit.SBUCardListView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView(im)initWithFrame:", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC5frameACSo6CGRectV_tcfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView", + "mangledName": "$s13SendbirdUIKit15SBUCardListViewC", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:@M@SendbirdUIKit@objc(cs)SBUView", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "SendbirdUIKit.SBUView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, { "kind": "TypeDecl", "name": "SBUMessageStateViewParams", @@ -206217,9 +211252,9 @@ "mangledName": "$s13SendbirdUIKit19SBUMessageStateViewC9timeLabelSo7UILabelCvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl", "RawDocComment" ], @@ -206528,15 +211563,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageStateView(im)setupViews", + "usr": "s:13SendbirdUIKit19SBUMessageStateViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageStateViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -206555,15 +211587,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageStateView(im)setupLayouts", + "usr": "s:13SendbirdUIKit19SBUMessageStateViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageStateViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -206582,15 +211611,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUMessageStateView(im)setupStyles", + "usr": "s:13SendbirdUIKit19SBUMessageStateViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit19SBUMessageStateViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -206762,6 +211788,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -206824,13 +211857,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -207499,7 +212525,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -207919,13 +212945,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)setupViews", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC10setupViewsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -207944,13 +212968,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)setupLayouts", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -208012,13 +213034,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)setupStyles", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC11setupStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -208037,13 +213057,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)setupActions", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC12setupActionsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -208062,13 +213080,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)updateLayouts", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateLayouts", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -208087,13 +213103,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUPhotoCollectionViewCell(im)updateStyles", + "usr": "s:13SendbirdUIKit26SBUPhotoCollectionViewCellC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit26SBUPhotoCollectionViewCellC12updateStylesyyF", "moduleName": "SendbirdUIKit", "isOpen": true, - "objc_name": "updateStyles", "declAttributes": [ - "ObjC", "Custom", "AccessControl", "RawDocComment" @@ -208126,7 +213140,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -217980,11 +222994,177 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUCardListData", + "printedName": "SBUCardListData", + "children": [ + { + "kind": "Var", + "name": "recommends", + "printedName": "recommends", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit15SBUCardListDataV10recommendsSayxGvp", + "mangledName": "$s13SendbirdUIKit15SBUCardListDataV10recommendsSayxGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit15SBUCardListDataV10recommendsSayxGvg", + "mangledName": "$s13SendbirdUIKit15SBUCardListDataV10recommendsSayxGvg", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListData", + "printedName": "SendbirdUIKit.SBUCardListData<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:13SendbirdUIKit15SBUCardListDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit15SBUCardListDataV4fromACyxGs7Decoder_p_tKcfc", + "mangledName": "$s13SendbirdUIKit15SBUCardListDataV4fromACyxGs7Decoder_p_tKcfc", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit15SBUCardListDataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s13SendbirdUIKit15SBUCardListDataV6encode2toys7Encoder_p_tKF", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit15SBUCardListDataV", + "mangledName": "$s13SendbirdUIKit15SBUCardListDataV", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Decodable, τ_0_0 : Swift.Encodable>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, { "kind": "Import", "name": "SendbirdChatSDK", @@ -219069,11 +224249,184 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SBUCardListViewParams", + "printedName": "SBUCardListViewParams", + "children": [ + { + "kind": "Var", + "name": "messageId", + "printedName": "messageId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV9messageIds5Int64Vvp", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV9messageIds5Int64Vvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV9messageIds5Int64Vvg", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV9messageIds5Int64Vvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "items", + "printedName": "items", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV5itemsSayAA0ceF0VGvp", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV5itemsSayAA0ceF0VGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV5itemsSayAA0ceF0VGvg", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV5itemsSayAA0ceF0VGvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(messageId:items:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListViewParams", + "printedName": "SendbirdUIKit.SBUCardListViewParams", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV9messageId5itemsACs5Int64V_SayAA0ceF0VGtcfc", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV9messageId5itemsACs5Int64V_SayAA0ceF0VGtcfc", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit21SBUCardListViewParamsV", + "mangledName": "$s13SendbirdUIKit21SBUCardListViewParamsV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -219622,12 +224975,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", - "objc_name": "setupViews", "declAttributes": [ - "ObjC", "AccessControl", "RawDocComment" ], @@ -219645,12 +224996,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", - "objc_name": "setupLayouts", "declAttributes": [ - "ObjC", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -219667,12 +225016,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)updateLayouts", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC13updateLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC13updateLayoutsyyF", "moduleName": "SendbirdUIKit", - "objc_name": "updateLayouts", "declAttributes": [ - "ObjC", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -219689,12 +225036,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)setupStyles", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", - "objc_name": "setupStyles", "declAttributes": [ - "ObjC", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -219711,12 +225056,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)updateStyles", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC12updateStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC12updateStylesyyF", "moduleName": "SendbirdUIKit", - "objc_name": "updateStyles", "declAttributes": [ - "ObjC", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -219733,12 +225076,10 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUVoiceMessageInputView(im)setupActions", + "usr": "s:13SendbirdUIKit24SBUVoiceMessageInputViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit24SBUVoiceMessageInputViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", - "objc_name": "setupActions", "declAttributes": [ - "ObjC", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -220116,7 +225457,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" }, { @@ -225329,6 +230670,42 @@ ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "groupChannelModule", + "printedName": "groupChannelModule(_:didSelectQuickReplyOption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "List", + "printedName": "SendbirdUIKit.SBUGroupChannelModule.List", + "usr": "s:13SendbirdUIKit21SBUGroupChannelModuleC4ListC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit33SBUGroupChannelModuleListDelegateP05groupdE0_25didSelectQuickReplyOptionyAA0cdE0C0F0C_SStF", + "mangledName": "$s13SendbirdUIKit33SBUGroupChannelModuleListDelegateP05groupdE0_25didSelectQuickReplyOptionyAA0cdE0C0F0C_SStF", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 where τ_0_0 : SendbirdUIKit.SBUGroupChannelModuleListDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" } ], "declKind": "Protocol", @@ -229241,307 +234618,307 @@ "ObjectiveC.NSObject" ], "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" - }, - { - "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, { "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SendbirdChatSDK", - "printedName": "SendbirdChatSDK", - "declKind": "Import", - "moduleName": "SendbirdUIKit" - }, - { - "kind": "TypeDecl", - "name": "SBUBaseChannelListViewModelDelegate", - "printedName": "SBUBaseChannelListViewModelDelegate", - "declKind": "Protocol", - "usr": "s:13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP", - "mangledName": "$s13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP", - "moduleName": "SendbirdUIKit", - "genericSig": "<τ_0_0 : SendbirdUIKit.SBUCommonViewModelDelegate>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "SBUCommonViewModelDelegate", - "printedName": "SBUCommonViewModelDelegate", - "usr": "s:13SendbirdUIKit26SBUCommonViewModelDelegateP", - "mangledName": "$s13SendbirdUIKit26SBUCommonViewModelDelegateP" - }, - { - "kind": "Conformance", - "name": "SBUCommonDelegate", - "printedName": "SBUCommonDelegate", - "usr": "s:13SendbirdUIKit17SBUCommonDelegateP", - "mangledName": "$s13SendbirdUIKit17SBUCommonDelegateP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SBUBaseChannelListViewModel", - "printedName": "SBUBaseChannelListViewModel", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(delegate:)", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUBaseChannelListViewModel", - "printedName": "SendbirdUIKit.SBUBaseChannelListViewModel", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "SendbirdUIKit.SBUBaseChannelListViewModelDelegate?", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUBaseChannelListViewModelDelegate", - "printedName": "SendbirdUIKit.SBUBaseChannelListViewModelDelegate", - "usr": "s:13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC8delegateAcA0cdefG8Delegate_pSg_tcfc", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC8delegateAcA0cdefG8Delegate_pSg_tcfc", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "initChannelList", - "printedName": "initChannelList()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC04initdE0yyF", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC04initdE0yyF", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "loadNextChannelList", - "printedName": "loadNextChannelList(reset:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC08loadNextdE05resetySb_tF", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC08loadNextdE05resetySb_tF", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "reset", - "printedName": "reset()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC5resetyyF", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC5resetyyF", - "moduleName": "SendbirdUIKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SBUBaseChannelListViewModel", - "printedName": "SendbirdUIKit.SBUBaseChannelListViewModel", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel" - } - ], - "declKind": "Constructor", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel(im)init", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelCACycfc", - "moduleName": "SendbirdUIKit", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "didSucceedReconnection", - "printedName": "didSucceedReconnection()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel(im)didSucceedReconnection", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC22didSucceedReconnectionyyF", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "objc_name": "didSucceedReconnection", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel", - "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC", - "moduleName": "SendbirdUIKit", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ConnectionDelegate", - "printedName": "ConnectionDelegate", - "usr": "c:@M@SendbirdChatSDK@objc(pl)SBDConnectionDelegate", - "mangledName": "$s15SendbirdChatSDK18ConnectionDelegateP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SendbirdChatSDK", + "printedName": "SendbirdChatSDK", + "declKind": "Import", + "moduleName": "SendbirdUIKit" + }, + { + "kind": "TypeDecl", + "name": "SBUBaseChannelListViewModelDelegate", + "printedName": "SBUBaseChannelListViewModelDelegate", + "declKind": "Protocol", + "usr": "s:13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP", + "mangledName": "$s13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP", + "moduleName": "SendbirdUIKit", + "genericSig": "<τ_0_0 : SendbirdUIKit.SBUCommonViewModelDelegate>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SBUCommonViewModelDelegate", + "printedName": "SBUCommonViewModelDelegate", + "usr": "s:13SendbirdUIKit26SBUCommonViewModelDelegateP", + "mangledName": "$s13SendbirdUIKit26SBUCommonViewModelDelegateP" + }, + { + "kind": "Conformance", + "name": "SBUCommonDelegate", + "printedName": "SBUCommonDelegate", + "usr": "s:13SendbirdUIKit17SBUCommonDelegateP", + "mangledName": "$s13SendbirdUIKit17SBUCommonDelegateP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SBUBaseChannelListViewModel", + "printedName": "SBUBaseChannelListViewModel", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUBaseChannelListViewModel", + "printedName": "SendbirdUIKit.SBUBaseChannelListViewModel", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUBaseChannelListViewModelDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUBaseChannelListViewModelDelegate", + "printedName": "SendbirdUIKit.SBUBaseChannelListViewModelDelegate", + "usr": "s:13SendbirdUIKit35SBUBaseChannelListViewModelDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC8delegateAcA0cdefG8Delegate_pSg_tcfc", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC8delegateAcA0cdefG8Delegate_pSg_tcfc", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "initChannelList", + "printedName": "initChannelList()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC04initdE0yyF", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC04initdE0yyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadNextChannelList", + "printedName": "loadNextChannelList(reset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC08loadNextdE05resetySb_tF", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC08loadNextdE05resetySb_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit27SBUBaseChannelListViewModelC5resetyyF", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC5resetyyF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUBaseChannelListViewModel", + "printedName": "SendbirdUIKit.SBUBaseChannelListViewModel", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel" + } + ], + "declKind": "Constructor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel(im)init", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelCACycfc", + "moduleName": "SendbirdUIKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "didSucceedReconnection", + "printedName": "didSucceedReconnection()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel(im)didSucceedReconnection", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC22didSucceedReconnectionyyF", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "objc_name": "didSucceedReconnection", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUBaseChannelListViewModel", + "mangledName": "$s13SendbirdUIKit27SBUBaseChannelListViewModelC", + "moduleName": "SendbirdUIKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ConnectionDelegate", + "printedName": "ConnectionDelegate", + "usr": "c:@M@SendbirdChatSDK@objc(pl)SBDConnectionDelegate", + "mangledName": "$s15SendbirdChatSDK18ConnectionDelegateP" }, { "kind": "Conformance", @@ -235317,15 +240694,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedFileMessageView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUQuotedFileMessageViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedFileMessageViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -235344,15 +240718,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuotedFileMessageView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUQuotedFileMessageViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuotedFileMessageViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -235477,6 +240848,13 @@ "usr": "s:13SendbirdUIKit28SBUQuotedMessageViewProtocolP", "mangledName": "$s13SendbirdUIKit28SBUQuotedMessageViewProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -235539,13 +240917,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -235901,15 +241272,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNewMessageInfo(im)setupViews", + "usr": "s:13SendbirdUIKit17SBUNewMessageInfoC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit17SBUNewMessageInfoC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -235929,15 +241297,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNewMessageInfo(im)setupLayouts", + "usr": "s:13SendbirdUIKit17SBUNewMessageInfoC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit17SBUNewMessageInfoC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -235957,15 +241322,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNewMessageInfo(im)setupStyles", + "usr": "s:13SendbirdUIKit17SBUNewMessageInfoC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit17SBUNewMessageInfoC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl", @@ -236129,6 +241491,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -236191,13 +241560,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -244142,6 +249504,346 @@ } ] }, + { + "kind": "Var", + "name": "shouldHideQuickReply", + "printedName": "shouldHideQuickReply", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(py)shouldHideQuickReply", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC20shouldHideQuickReplySbvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)shouldHideQuickReply", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC20shouldHideQuickReplySbvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "quickReplyView", + "printedName": "quickReplyView", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyView?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(py)quickReplyView", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC14quickReplyViewAA08SBUQuickgH0CSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyView?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)quickReplyView", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC14quickReplyViewAA08SBUQuickgH0CSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "quickReplySelectHandler", + "printedName": "quickReplySelectHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((SendbirdUIKit.SBUQuickReplyOptionView) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SendbirdUIKit.SBUQuickReplyOptionView) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(py)quickReplySelectHandler", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC23quickReplySelectHandleryAA08SBUQuickG10OptionViewCcSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((SendbirdUIKit.SBUQuickReplyOptionView) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SendbirdUIKit.SBUQuickReplyOptionView) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)quickReplySelectHandler", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC23quickReplySelectHandleryAA08SBUQuickG10OptionViewCcSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((SendbirdUIKit.SBUQuickReplyOptionView) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SendbirdUIKit.SBUQuickReplyOptionView) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)setQuickReplySelectHandler:", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC23quickReplySelectHandleryAA08SBUQuickG10OptionViewCcSgvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit18SBUUserMessageCellC23quickReplySelectHandleryAA08SBUQuickG10OptionViewCcSgvM", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC23quickReplySelectHandleryAA08SBUQuickG10OptionViewCcSgvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cardListView", + "printedName": "cardListView", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardListView?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListView", + "printedName": "SendbirdUIKit.SBUCardListView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(py)cardListView", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC12cardListViewAA07SBUCardgH0CSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUCardListView?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardListView", + "printedName": "SendbirdUIKit.SBUCardListView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUCardListView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)cardListView", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC12cardListViewAA07SBUCardgH0CSgvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, { "kind": "Function", "name": "setupViews", @@ -244514,6 +250216,79 @@ ], "funcSelfKind": "NonMutating" }, + { + "kind": "Function", + "name": "updateQuickReplyView", + "printedName": "updateQuickReplyView(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)updateQuickReplyViewWith:", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC20updateQuickReplyView4withySaySSG_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addCardListView", + "printedName": "addCardListView(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SendbirdUIKit.SBUCardViewParams]", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUCardViewParams", + "printedName": "SendbirdUIKit.SBUCardViewParams", + "usr": "s:13SendbirdUIKit17SBUCardViewParamsV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit18SBUUserMessageCellC15addCardListView4withySayAA07SBUCardI6ParamsVG_tF", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC15addCardListView4withySayAA07SBUCardI6ParamsVG_tF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, { "kind": "Function", "name": "userMessageTextView", @@ -244637,6 +250412,42 @@ "Required" ], "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "quickReplyView", + "printedName": "quickReplyView(_:didSelectOption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyView", + "printedName": "SendbirdUIKit.SBUQuickReplyView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyView" + }, + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptionView", + "printedName": "SendbirdUIKit.SBUQuickReplyOptionView", + "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuickReplyOptionView" + } + ], + "declKind": "Func", + "usr": "c:@CM@SendbirdUIKit@objc(cs)SBUUserMessageCell(im)quickReplyView:didSelectOption:", + "mangledName": "$s13SendbirdUIKit18SBUUserMessageCellC14quickReplyView_15didSelectOptionyAA08SBUQuickgH0C_AA0lgkH0CtF", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "Dynamic", + "Custom", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" } ], "declKind": "Class", @@ -244743,8 +250554,15 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, + { + "kind": "Conformance", + "name": "SBUQuickReplyViewDelegate", + "printedName": "SBUQuickReplyViewDelegate", + "usr": "s:13SendbirdUIKit25SBUQuickReplyViewDelegateP", + "mangledName": "$s13SendbirdUIKit25SBUQuickReplyViewDelegateP" } ] }, @@ -244964,7 +250782,7 @@ "kind": "Conformance", "name": "SBUViewLifeCycle", "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] @@ -260869,8 +266687,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -261049,8 +266867,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "ObjC" ], @@ -261200,8 +267018,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "ObjC" ], @@ -263317,9 +269135,9 @@ "mangledName": "$s13SendbirdUIKit22SBUBaseFileContentViewC7message0A7ChatSDK0D7MessageCSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -263420,9 +269238,9 @@ "mangledName": "$s13SendbirdUIKit22SBUBaseFileContentViewC8positionAA15MessagePositionOvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -263604,6 +269422,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -263666,13 +269491,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -264128,9 +269946,9 @@ "mangledName": "$s13SendbirdUIKit22SBUNavigationTitleViewC4textSSSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -264231,9 +270049,9 @@ "mangledName": "$s13SendbirdUIKit22SBUNavigationTitleViewC13textAlignmentSo06NSTextG0Vvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -264373,14 +270191,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNavigationTitleView(im)setupViews", + "usr": "s:13SendbirdUIKit22SBUNavigationTitleViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit22SBUNavigationTitleViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -264399,14 +270214,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNavigationTitleView(im)setupLayouts", + "usr": "s:13SendbirdUIKit22SBUNavigationTitleViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit22SBUNavigationTitleViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -264425,14 +270237,11 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUNavigationTitleView(im)setupStyles", + "usr": "s:13SendbirdUIKit22SBUNavigationTitleViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit22SBUNavigationTitleViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -264551,6 +270360,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -264613,13 +270429,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -268043,7 +273852,8 @@ "mangledName": "$s13SendbirdUIKit27SBUUserMessageTextViewModelV22addEditedStateIfNeeded4withySo25NSMutableAttributedStringC_tF", "moduleName": "SendbirdUIKit", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "funcSelfKind": "NonMutating" } @@ -281784,7 +287594,7 @@ { "kind": "Constructor", "name": "init", - "printedName": "init(backgroundColor:leftBackgroundColor:leftPressedBackgroundColor:rightBackgroundColor:rightPressedBackgroundColor:openChannelBackgroundColor:openChannelPressedBackgroundColor:dateFont:dateTextColor:dateBackgroundColor:userPlaceholderBackgroundColor:userPlaceholderTintColor:userNameFont:userNameTextColor:currentUserNameTextColor:timeFont:timeTextColor:pendingStateColor:failedStateColor:succeededStateColor:readReceiptStateColor:deliveryReceiptStateColor:userMessageFont:userMessageLeftTextColor:userMessageLeftEditTextColor:userMessageLeftHighlightTextColor:userMessageRightTextColor:userMessageRightEditTextColor:userMessageRightHighlightTextColor:fileIconBackgroundColor:fileImageBackgroundColor:fileImageIconColor:fileIconColor:fileMessageNameFont:fileMessageLeftTextColor:fileMessageRightTextColor:fileMessagePlaceholderColor:adminMessageFont:adminMessageTextColor:unknownMessageDescFont:unknownMessageDescLeftTextColor:unknownMessageDescRightTextColor:ogTitleFont:ogTitleColor:ogDescriptionFont:ogDescriptionColor:ogURLAddressFont:ogURLAddressColor:openChannelOGTitleColor:linkColor:contentBackgroundColor:pressedContentBackgroundColor:quotedMessageLeftBackgroundColor:quotedMessageRightBackgroundColor:quotedFileMessageThumbnailColor:quotedMessageTextColor:quotedMessageTextFont:repliedIconColor:repliedToTextColor:repliedToTextFont:repliedCountTextColor:repliedCountTextFont:repliedUsersMoreIconBackgroundColor:repliedUsersMoreIconTintColor:mentionTextFont:mentionLeftTextColor:mentionRightTextColor:mentionLeftTextBackgroundColor:mentionRightTextBackgroundColor:buttonBackgroundColor:buttonTitleColor:sideButtonIconColor:newMessageBadgeColor:parentInfoBackgroundColor:parentInfoUserNameTextFont:parentInfoUserNameTextColor:parentInfoDateFont:parentInfoDateTextColor:parentInfoMoreButtonTintColor:parentInfoSeparateBarColor:parentInfoReplyCountTextColor:parentInfoReplyCountTextFont:parentInfoProgressBackgroundColor:progressTrackTintColor:progressTimeFont:progressTimeRightTextColor:progressTimeLeftTextColor:statusButtonBackgroundColor:loadingButtonTintColor:playButtonTintColor:pauseButtonTintColor:)", + "printedName": "init(backgroundColor:leftBackgroundColor:leftPressedBackgroundColor:rightBackgroundColor:rightPressedBackgroundColor:openChannelBackgroundColor:openChannelPressedBackgroundColor:dateFont:dateTextColor:dateBackgroundColor:userPlaceholderBackgroundColor:userPlaceholderTintColor:userNameFont:userNameTextColor:currentUserNameTextColor:timeFont:timeTextColor:pendingStateColor:failedStateColor:succeededStateColor:readReceiptStateColor:deliveryReceiptStateColor:userMessageFont:userMessageLeftTextColor:userMessageLeftEditTextColor:userMessageLeftHighlightTextColor:userMessageRightTextColor:userMessageRightEditTextColor:userMessageRightHighlightTextColor:fileIconBackgroundColor:fileImageBackgroundColor:fileImageIconColor:fileIconColor:fileMessageNameFont:fileMessageLeftTextColor:fileMessageRightTextColor:fileMessagePlaceholderColor:adminMessageFont:adminMessageTextColor:unknownMessageDescFont:unknownMessageDescLeftTextColor:unknownMessageDescRightTextColor:ogTitleFont:ogTitleColor:ogDescriptionFont:ogDescriptionColor:ogURLAddressFont:ogURLAddressColor:openChannelOGTitleColor:linkColor:contentBackgroundColor:pressedContentBackgroundColor:quotedMessageLeftBackgroundColor:quotedMessageRightBackgroundColor:quotedFileMessageThumbnailColor:quotedMessageTextColor:quotedMessageTextFont:repliedIconColor:repliedToTextColor:repliedToTextFont:repliedCountTextColor:repliedCountTextFont:repliedUsersMoreIconBackgroundColor:repliedUsersMoreIconTintColor:mentionTextFont:mentionLeftTextColor:mentionRightTextColor:mentionLeftTextBackgroundColor:mentionRightTextBackgroundColor:buttonBackgroundColor:buttonTitleColor:sideButtonIconColor:newMessageBadgeColor:parentInfoBackgroundColor:parentInfoUserNameTextFont:parentInfoUserNameTextColor:parentInfoDateFont:parentInfoDateTextColor:parentInfoMoreButtonTintColor:parentInfoSeparateBarColor:parentInfoReplyCountTextColor:parentInfoReplyCountTextFont:parentInfoProgressBackgroundColor:progressTrackTintColor:progressTimeFont:progressTimeRightTextColor:progressTimeLeftTextColor:statusButtonBackgroundColor:loadingButtonTintColor:playButtonTintColor:pauseButtonTintColor:selectableTitleFont:)", "children": [ { "kind": "TypeNominal", @@ -282428,11 +288238,18 @@ "printedName": "UIKit.UIColor", "hasDefaultArg": true, "usr": "c:objc(cs)UIColor" + }, + { + "kind": "TypeNominal", + "name": "UIFont", + "printedName": "UIKit.UIFont", + "hasDefaultArg": true, + "usr": "c:objc(cs)UIFont" } ], "declKind": "Constructor", - "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC15backgroundColor014leftBackgroundG00h7PressediG005rightiG00kjiG0011openChanneliG00lmjiG08dateFont0n4TextG00niG0015userPlaceholderiG00qr4TintG00q4NameO00qtpG0011currentUsertpG004timeO00wpG0012pendingStateG006failedyG009succeededyG0011readReceiptyG0015deliveryReceiptyG00q7MessageO00q11MessageLeftpG00q15MessageLeftEditpG00q20MessageLeftHighlightpG00q12MessageRightpG00q16MessageRightEditpG00q21MessageRightHighlightpG008fileIconiG009fileImageiG0013fileImageIconG008fileIconG0011fileMessagetO0015fileMessageLeftpG0016fileMessageRightpG0011fileMessagerG0012adminMessageO0012adminMessagepG0018unknownMessageDescO0022unknownMessageDescLeftpG0023unknownMessageDescRightpG007ogTitleO007ogTitleG0013ogDescriptionO0013ogDescriptionG0012ogURLAddressO0012ogURLAddressG00lm7OGTitleG004linkG007contentiG0014pressedContentiG0017quotedMessageLeftiG0018quotedMessageRightiG0026quotedFileMessageThumbnailG0013quotedMessagepG0013quotedMessagepO0011repliedIconG009repliedTopG009repliedTopO0012repliedCountpG0012repliedCountpO0020repliedUsersMoreIconiG0020repliedUsersMoreIconsG007mentionpO0011mentionLeftpG0012mentionRightpG0011mentionLeftpiG0012mentionRightpiG006buttoniG0011buttonTitleG0014sideButtonIconG0015newMessageBadgeG0010parentInfoiG0010parentInfovtpO0010parentInfovtpG0014parentInfoDateO0014parentInfoDatepG0020parentInfoMoreButtonsG0021parentInfoSeparateBarG0020parentInfoReplyCountpG0020parentInfoReplyCountpO0018parentInfoProgressiG0013progressTracksG0012progressTimeO0017progressTimeRightpG0016progressTimeLeftpG0012statusButtoniG0013loadingButtonsG0010playButtonsG0011pauseButtonsG0ACSo7UIColorC_A68_A68_A68_A68_A68_A68_So6UIFontCA68_A68_A68_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A68_A68_A70_A68_A70_A68_A68_A70_A68_A70_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A68_A70_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A70_A68_A68_A68_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_tcfc", - "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC15backgroundColor014leftBackgroundG00h7PressediG005rightiG00kjiG0011openChanneliG00lmjiG08dateFont0n4TextG00niG0015userPlaceholderiG00qr4TintG00q4NameO00qtpG0011currentUsertpG004timeO00wpG0012pendingStateG006failedyG009succeededyG0011readReceiptyG0015deliveryReceiptyG00q7MessageO00q11MessageLeftpG00q15MessageLeftEditpG00q20MessageLeftHighlightpG00q12MessageRightpG00q16MessageRightEditpG00q21MessageRightHighlightpG008fileIconiG009fileImageiG0013fileImageIconG008fileIconG0011fileMessagetO0015fileMessageLeftpG0016fileMessageRightpG0011fileMessagerG0012adminMessageO0012adminMessagepG0018unknownMessageDescO0022unknownMessageDescLeftpG0023unknownMessageDescRightpG007ogTitleO007ogTitleG0013ogDescriptionO0013ogDescriptionG0012ogURLAddressO0012ogURLAddressG00lm7OGTitleG004linkG007contentiG0014pressedContentiG0017quotedMessageLeftiG0018quotedMessageRightiG0026quotedFileMessageThumbnailG0013quotedMessagepG0013quotedMessagepO0011repliedIconG009repliedTopG009repliedTopO0012repliedCountpG0012repliedCountpO0020repliedUsersMoreIconiG0020repliedUsersMoreIconsG007mentionpO0011mentionLeftpG0012mentionRightpG0011mentionLeftpiG0012mentionRightpiG006buttoniG0011buttonTitleG0014sideButtonIconG0015newMessageBadgeG0010parentInfoiG0010parentInfovtpO0010parentInfovtpG0014parentInfoDateO0014parentInfoDatepG0020parentInfoMoreButtonsG0021parentInfoSeparateBarG0020parentInfoReplyCountpG0020parentInfoReplyCountpO0018parentInfoProgressiG0013progressTracksG0012progressTimeO0017progressTimeRightpG0016progressTimeLeftpG0012statusButtoniG0013loadingButtonsG0010playButtonsG0011pauseButtonsG0ACSo7UIColorC_A68_A68_A68_A68_A68_A68_So6UIFontCA68_A68_A68_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A68_A68_A70_A68_A70_A68_A68_A70_A68_A70_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A68_A70_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_A68_A68_A68_A70_A68_A70_A68_A68_A68_A68_A70_A68_A68_A70_A68_A68_A68_A68_A68_A68_tcfc", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC15backgroundColor014leftBackgroundG00h7PressediG005rightiG00kjiG0011openChanneliG00lmjiG08dateFont0n4TextG00niG0015userPlaceholderiG00qr4TintG00q4NameO00qtpG0011currentUsertpG004timeO00wpG0012pendingStateG006failedyG009succeededyG0011readReceiptyG0015deliveryReceiptyG00q7MessageO00q11MessageLeftpG00q15MessageLeftEditpG00q20MessageLeftHighlightpG00q12MessageRightpG00q16MessageRightEditpG00q21MessageRightHighlightpG008fileIconiG009fileImageiG0013fileImageIconG008fileIconG0011fileMessagetO0015fileMessageLeftpG0016fileMessageRightpG0011fileMessagerG0012adminMessageO0012adminMessagepG0018unknownMessageDescO0022unknownMessageDescLeftpG0023unknownMessageDescRightpG007ogTitleO007ogTitleG0013ogDescriptionO0013ogDescriptionG0012ogURLAddressO0012ogURLAddressG00lm7OGTitleG004linkG007contentiG0014pressedContentiG0017quotedMessageLeftiG0018quotedMessageRightiG0026quotedFileMessageThumbnailG0013quotedMessagepG0013quotedMessagepO0011repliedIconG009repliedTopG009repliedTopO0012repliedCountpG0012repliedCountpO0020repliedUsersMoreIconiG0020repliedUsersMoreIconsG007mentionpO0011mentionLeftpG0012mentionRightpG0011mentionLeftpiG0012mentionRightpiG006buttoniG0011buttonTitleG0014sideButtonIconG0015newMessageBadgeG0010parentInfoiG0010parentInfovtpO0010parentInfovtpG0014parentInfoDateO0014parentInfoDatepG0020parentInfoMoreButtonsG0021parentInfoSeparateBarG0020parentInfoReplyCountpG0020parentInfoReplyCountpO0018parentInfoProgressiG0013progressTracksG0012progressTimeO0017progressTimeRightpG0016progressTimeLeftpG0012statusButtoniG0013loadingButtonsG0010playButtonsG0011pauseButtonsG0015selectableTitleO0ACSo7UIColorC_A69_A69_A69_A69_A69_A69_So6UIFontCA69_A69_A69_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A69_A69_A71_A69_A71_A69_A69_A71_A69_A71_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A69_A71_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A71_A69_A69_A69_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A71_tcfc", + "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC15backgroundColor014leftBackgroundG00h7PressediG005rightiG00kjiG0011openChanneliG00lmjiG08dateFont0n4TextG00niG0015userPlaceholderiG00qr4TintG00q4NameO00qtpG0011currentUsertpG004timeO00wpG0012pendingStateG006failedyG009succeededyG0011readReceiptyG0015deliveryReceiptyG00q7MessageO00q11MessageLeftpG00q15MessageLeftEditpG00q20MessageLeftHighlightpG00q12MessageRightpG00q16MessageRightEditpG00q21MessageRightHighlightpG008fileIconiG009fileImageiG0013fileImageIconG008fileIconG0011fileMessagetO0015fileMessageLeftpG0016fileMessageRightpG0011fileMessagerG0012adminMessageO0012adminMessagepG0018unknownMessageDescO0022unknownMessageDescLeftpG0023unknownMessageDescRightpG007ogTitleO007ogTitleG0013ogDescriptionO0013ogDescriptionG0012ogURLAddressO0012ogURLAddressG00lm7OGTitleG004linkG007contentiG0014pressedContentiG0017quotedMessageLeftiG0018quotedMessageRightiG0026quotedFileMessageThumbnailG0013quotedMessagepG0013quotedMessagepO0011repliedIconG009repliedTopG009repliedTopO0012repliedCountpG0012repliedCountpO0020repliedUsersMoreIconiG0020repliedUsersMoreIconsG007mentionpO0011mentionLeftpG0012mentionRightpG0011mentionLeftpiG0012mentionRightpiG006buttoniG0011buttonTitleG0014sideButtonIconG0015newMessageBadgeG0010parentInfoiG0010parentInfovtpO0010parentInfovtpG0014parentInfoDateO0014parentInfoDatepG0020parentInfoMoreButtonsG0021parentInfoSeparateBarG0020parentInfoReplyCountpG0020parentInfoReplyCountpO0018parentInfoProgressiG0013progressTracksG0012progressTimeO0017progressTimeRightpG0016progressTimeLeftpG0012statusButtoniG0013loadingButtonsG0010playButtonsG0011pauseButtonsG0015selectableTitleO0ACSo7UIColorC_A69_A69_A69_A69_A69_A69_So6UIFontCA69_A69_A69_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A69_A69_A71_A69_A71_A69_A69_A71_A69_A71_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A69_A71_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A69_A69_A69_A71_A69_A71_A69_A69_A69_A69_A71_A69_A69_A71_A69_A69_A69_A69_A69_A69_A71_tcfc", "moduleName": "SendbirdUIKit", "declAttributes": [ "AccessControl" @@ -290295,6 +296112,92 @@ } ] }, + { + "kind": "Var", + "name": "selectableTitleFont", + "printedName": "selectableTitleFont", + "children": [ + { + "kind": "TypeNominal", + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvp", + "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvg", + "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvs", + "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvs", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvM", + "mangledName": "$s13SendbirdUIKit19SBUMessageCellThemeC19selectableTitleFontSo6UIFontCvM", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { "kind": "Var", "name": "unknownMessageDescTextColor", @@ -314044,9 +319947,9 @@ "mangledName": "$s13SendbirdUIKit19SBUImageContentViewC05imageE0So07UIImageE0Cvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -314226,9 +320129,9 @@ "mangledName": "$s13SendbirdUIKit19SBUImageContentViewC15widthConstraintSo08NSLayoutG0CSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -314337,9 +320240,9 @@ "mangledName": "$s13SendbirdUIKit19SBUImageContentViewC16heightConstraintSo08NSLayoutG0CSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -314435,15 +320338,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUImageContentView(im)setupViews", + "usr": "s:13SendbirdUIKit19SBUImageContentViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit19SBUImageContentViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -314462,15 +320362,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUImageContentView(im)setupLayouts", + "usr": "s:13SendbirdUIKit19SBUImageContentViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit19SBUImageContentViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -314715,6 +320612,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -314777,13 +320681,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -317181,9 +323078,9 @@ "mangledName": "$s13SendbirdUIKit22SBUUserMessageTextViewC04textF0AA016SBULinkClickableeF0Cvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "AccessControl" ], "hasStorage": true, @@ -317903,9 +323800,9 @@ "mangledName": "$s13SendbirdUIKit22SBUUserMessageTextViewC8delegateAA0cdeF8Delegate_pSgvp", "moduleName": "SendbirdUIKit", "declAttributes": [ + "Custom", "HasInitialValue", "HasStorage", - "Custom", "ReferenceOwnership", "AccessControl" ], @@ -318099,15 +323996,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageTextView(im)setupViews", + "usr": "s:13SendbirdUIKit22SBUUserMessageTextViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit22SBUUserMessageTextViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -318126,15 +324020,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageTextView(im)setupLayouts", + "usr": "s:13SendbirdUIKit22SBUUserMessageTextViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit22SBUUserMessageTextViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -318175,15 +324066,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUUserMessageTextView(im)setupStyles", + "usr": "s:13SendbirdUIKit22SBUUserMessageTextViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit22SBUUserMessageTextViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -318289,6 +324177,13 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -318351,13 +324246,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -331148,8 +337036,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment", "ObjC" @@ -331267,8 +337155,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "ObjC" ], @@ -331471,8 +337359,8 @@ "moduleName": "SendbirdUIKit", "declAttributes": [ "HasInitialValue", - "HasStorage", "Custom", + "HasStorage", "AccessControl", "RawDocComment" ], @@ -333986,6 +339874,159 @@ "RawDocComment" ] }, + { + "kind": "TypeDecl", + "name": "SBUQuickReplyOptions", + "printedName": "SBUQuickReplyOptions", + "children": [ + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV7optionsSaySSGvp", + "mangledName": "$s13SendbirdUIKit20SBUQuickReplyOptionsV7optionsSaySSGvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV7optionsSaySSGvg", + "mangledName": "$s13SendbirdUIKit20SBUQuickReplyOptionsV7optionsSaySSGvg", + "moduleName": "SendbirdUIKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptions", + "printedName": "SendbirdUIKit.SBUQuickReplyOptions", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s13SendbirdUIKit20SBUQuickReplyOptionsV4fromACs7Decoder_p_tKcfc", + "moduleName": "SendbirdUIKit", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV6encode2toys7Encoder_p_tKF", + "mangledName": "$s13SendbirdUIKit20SBUQuickReplyOptionsV6encode2toys7Encoder_p_tKF", + "moduleName": "SendbirdUIKit", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV", + "mangledName": "$s13SendbirdUIKit20SBUQuickReplyOptionsV", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "SendbirdChatSDK", @@ -337547,15 +343588,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuoteMessageInputView(im)setupViews", + "usr": "s:13SendbirdUIKit24SBUQuoteMessageInputViewC10setupViewsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuoteMessageInputViewC10setupViewsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupViews", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -337574,15 +343612,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuoteMessageInputView(im)setupLayouts", + "usr": "s:13SendbirdUIKit24SBUQuoteMessageInputViewC12setupLayoutsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuoteMessageInputViewC12setupLayoutsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupLayouts", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -337601,15 +343636,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuoteMessageInputView(im)setupActions", + "usr": "s:13SendbirdUIKit24SBUQuoteMessageInputViewC12setupActionsyyF", "mangledName": "$s13SendbirdUIKit24SBUQuoteMessageInputViewC12setupActionsyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupActions", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -337628,15 +343660,12 @@ } ], "declKind": "Func", - "usr": "c:@M@SendbirdUIKit@objc(cs)SBUQuoteMessageInputView(im)setupStyles", + "usr": "s:13SendbirdUIKit24SBUQuoteMessageInputViewC11setupStylesyyF", "mangledName": "$s13SendbirdUIKit24SBUQuoteMessageInputViewC11setupStylesyyF", "moduleName": "SendbirdUIKit", "overriding": true, "isOpen": true, - "objc_name": "setupStyles", "declAttributes": [ - "Dynamic", - "ObjC", "Custom", "Override", "AccessControl" @@ -337935,6 +343964,13 @@ "usr": "s:13SendbirdUIKit32SBUQuoteMessageInputViewProtocolP", "mangledName": "$s13SendbirdUIKit32SBUQuoteMessageInputViewProtocolP" }, + { + "kind": "Conformance", + "name": "SBUViewLifeCycle", + "printedName": "SBUViewLifeCycle", + "usr": "s:13SendbirdUIKit16SBUViewLifeCycleP", + "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" + }, { "kind": "Conformance", "name": "Equatable", @@ -337997,13 +344033,6 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "SBUViewLifeCycle", - "printedName": "SBUViewLifeCycle", - "usr": "c:@M@SendbirdUIKit@objc(pl)SBUViewLifeCycle", - "mangledName": "$s13SendbirdUIKit16SBUViewLifeCycleP" } ] }, @@ -345143,6 +351172,275 @@ } ] }, + { + "kind": "TypeDecl", + "name": "UserMessage", + "printedName": "UserMessage", + "children": [ + { + "kind": "Var", + "name": "quickReply", + "printedName": "quickReply", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyOptions?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptions", + "printedName": "SendbirdUIKit.SBUQuickReplyOptions", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15SendbirdChatSDK11UserMessageC0A5UIKitE10quickReplyAD08SBUQuickH7OptionsVSgvp", + "mangledName": "$s15SendbirdChatSDK11UserMessageC0A5UIKitE10quickReplyAD08SBUQuickH7OptionsVSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SendbirdUIKit.SBUQuickReplyOptions?", + "children": [ + { + "kind": "TypeNominal", + "name": "SBUQuickReplyOptions", + "printedName": "SendbirdUIKit.SBUQuickReplyOptions", + "usr": "s:13SendbirdUIKit20SBUQuickReplyOptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15SendbirdChatSDK11UserMessageC0A5UIKitE10quickReplyAD08SBUQuickH7OptionsVSgvg", + "mangledName": "$s15SendbirdChatSDK11UserMessageC0A5UIKitE10quickReplyAD08SBUQuickH7OptionsVSgvg", + "moduleName": "SendbirdUIKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cardListData", + "printedName": "cardListData", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15SendbirdChatSDK11UserMessageC0A5UIKitE12cardListDataSDySSypGSgvp", + "mangledName": "$s15SendbirdChatSDK11UserMessageC0A5UIKitE12cardListDataSDySSypGSgvp", + "moduleName": "SendbirdUIKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15SendbirdChatSDK11UserMessageC0A5UIKitE12cardListDataSDySSypGSgvg", + "mangledName": "$s15SendbirdChatSDK11UserMessageC0A5UIKitE12cardListDataSDySSypGSgvg", + "moduleName": "SendbirdUIKit", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@SendbirdChatSDK@objc(cs)SBDUserMessage", + "mangledName": "$s15SendbirdChatSDK11UserMessageC", + "moduleName": "SendbirdChatSDK", + "isOpen": true, + "objc_name": "SBDUserMessage", + "declAttributes": [ + "ObjC" + ], + "superclassUsr": "c:@M@SendbirdChatSDK@objc(cs)SBDBaseMessage", + "isExternal": true, + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "SendbirdChatSDK.BaseMessage", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Identifiable", + "printedName": "Identifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "ID", + "printedName": "ID", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHashable", + "printedName": "Swift.AnyHashable", + "usr": "s:s11AnyHashableV" + } + ] + } + ], + "usr": "s:s12IdentifiableP", + "mangledName": "$ss12IdentifiableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Serializable", + "printedName": "Serializable", + "usr": "c:@M@SendbirdChatSDK@objc(pl)Serializable", + "mangledName": "$s15SendbirdChatSDK12SerializableP" + }, + { + "kind": "Conformance", + "name": "Mappable", + "printedName": "Mappable", + "usr": "c:@M@SendbirdChatSDK@objc(pl)Mappable", + "mangledName": "$s15SendbirdChatSDK8MappableP" + } + ] + }, { "kind": "TypeDecl", "name": "Array", @@ -345330,13 +351628,6 @@ "usr": "s:s24_DestructorSafeContainerP", "mangledName": "$ss24_DestructorSafeContainerP" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, { "kind": "Conformance", "name": "_ArrayProtocol", @@ -345793,6 +352084,13 @@ "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, { "kind": "Conformance", "name": "Hashable", @@ -347408,48249 +353706,11653 @@ "printedName": "__DefaultCustomPlaygroundQuickLookable", "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 2158, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 3254, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4667, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4677, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4685, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 6704, - "length": 32, - "value": "\"[Failed] Channel object is nil\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "BooleanLiteral", - "offset": 7288, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 7567, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 7600, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 7603, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "BooleanLiteral", - "offset": 9966, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Moderations\/SBUModerationsViewController.swift", - "kind": "StringLiteral", - "offset": 10021, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "StringLiteral", - "offset": 421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 679, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1511, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1592, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1603, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1612, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1623, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1697, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1709, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1797, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1887, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "BooleanLiteral", - "offset": 1918, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1980, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 2098, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "BooleanLiteral", - "offset": 3250, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "BooleanLiteral", - "offset": 3866, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 5522, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 5863, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", - "kind": "Array", - "offset": 5935, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 14687, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 14731, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 14762, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 15162, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 15227, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 15238, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 15280, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 15322, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 15363, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 15586, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 15635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 16406, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "Array", - "offset": 17498, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "Array", - "offset": 17851, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18115, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18155, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19056, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19112, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19197, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19203, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19331, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19337, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 19472, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19526, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 20519, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 20529, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 20537, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 20548, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 22806, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23035, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23084, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24068, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24209, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24344, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24500, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 25857, - "length": 44, - "value": "\"Couldn't find cell for row at \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 25900, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 25982, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 27304, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 28861, - "length": 50, - "value": "\"[Request] Delete message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 28910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 30808, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 32854, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "Array", - "offset": 33363, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 35949, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 36665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 42180, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 42805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 43124, - "length": 32, - "value": "\"Needs to implement this method\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 44539, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 44902, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 45756, - "length": 14, - "value": "\"unknown Type\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46356, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46422, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46557, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46607, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46728, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46782, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 46934, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 47004, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 47557, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 47747, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48653, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48714, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48818, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 48922, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 50304, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 51221, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 51413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 51581, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 51616, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 51757, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 51951, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 52208, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 52641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 52653, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 52688, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 53090, - "length": 46, - "value": "\"New messages inserted : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 53135, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 53249, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 53789, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 53870, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 54386, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 54402, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 54533, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 54938, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 54954, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 55085, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 11, - "value": "\"templates\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 11, - "value": "\"templates\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 1525, - "length": 28, - "value": "\"No have templates in cache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 3545, - "length": 58, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 3577, - "length": 1, - "value": "\".queue.diskcache.template\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "IntegerLiteral", - "offset": 3676, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 3715, - "length": 30, - "value": "\"sbu_template_list_updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 4411, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 4664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "IntegerLiteral", - "offset": 6457, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "Dictionary", - "offset": 6500, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 6640, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 7333, - "length": 49, - "value": "\"Failed to save template to disk cache: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 7381, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 8016, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 8408, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 8988, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9020, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9487, - "length": 33, - "value": "\"Could not remove path: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 9819, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9860, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9951, - "length": 20, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 9969, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 10874, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "BooleanLiteral", - "offset": 11251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "StringLiteral", - "offset": 11325, - "length": 43, - "value": "\"Error writing to file: lastTokenKey value\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", - "kind": "Dictionary", - "offset": 12102, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Common.swift", - "kind": "BooleanLiteral", - "offset": 517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1301, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1867, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2412, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2423, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2484, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3023, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3027, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 3079, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 3298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.Header.swift", - "kind": "StringLiteral", - "offset": 1669, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "BooleanLiteral", - "offset": 581, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "BooleanLiteral", - "offset": 615, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "BooleanLiteral", - "offset": 706, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "BooleanLiteral", - "offset": 873, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 986, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1146, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1315, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1812, - "length": 2, - "value": "53" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1824, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2006, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2105, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUParentMessageInfoReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2470, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 488, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 557, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 648, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 700, - "length": 5, - "value": "380.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 750, - "length": 5, - "value": "276.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 810, - "length": 5, - "value": "294.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 869, - "length": 5, - "value": "274.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 1114, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 1924, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 2681, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 2822, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 2863, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 3039, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 3788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 3987, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 4425, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 4614, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6205, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6229, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6257, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 6472, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 6501, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "FloatLiteral", - "offset": 6531, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6739, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6768, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6955, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 6984, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7057, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7062, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7067, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7378, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7405, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 7988, - "length": 3, - "value": "251" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 8076, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 8088, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 8145, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 8202, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 8333, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 9917, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 10402, - "length": 10, - "value": "\"sub_type\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 10428, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 10467, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 10577, - "length": 10, - "value": "\"sub_data\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 10681, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 11261, - "length": 5, - "value": "\"\\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 11274, - "length": 7, - "value": "\"\\\\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 11349, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 11361, - "length": 5, - "value": "\"\\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 11537, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 11636, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 11685, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "IntegerLiteral", - "offset": 11709, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 11799, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 13399, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 15307, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 15691, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "Array", - "offset": 15793, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "Array", - "offset": 15942, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16020, - "length": 14, - "value": "\"template_key\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16081, - "length": 6, - "value": "\"tags\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "Array", - "offset": 16105, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 16212, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "BooleanLiteral", - "offset": 16337, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16373, - "length": 12, - "value": "\"noti:stats\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16407, - "length": 9, - "value": "\"clicked\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16438, - "length": 14, - "value": "\"notification\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16573, - "length": 8, - "value": "\"action\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16607, - "length": 14, - "value": "\"template_key\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16652, - "length": 13, - "value": "\"channel_url\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16703, - "length": 6, - "value": "\"tags\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16733, - "length": 12, - "value": "\"message_id\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16782, - "length": 8, - "value": "\"source\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16816, - "length": 12, - "value": "\"message_ts\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16901, - "length": 79, - "value": "\"[\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16917, - "length": 9, - "value": "\"Succeed\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16929, - "length": 8, - "value": "\"Failed\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16938, - "length": 1, - "value": "\"] SendbirdStatistics - \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16968, - "length": 1, - "value": "\", \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", - "kind": "StringLiteral", - "offset": 16979, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "FloatLiteral", - "offset": 3208, - "length": 4, - "value": "76.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "Array", - "offset": 3978, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "StringLiteral", - "offset": 4390, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5624, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "FloatLiteral", - "offset": 5857, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6303, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6321, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6332, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 9523, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "StringLiteral", - "offset": 9926, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10381, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11469, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7484, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7492, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 8328, - "length": 105, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 8421, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 8428, - "length": 1, - "value": "\".jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 8465, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 8761, - "length": 24, - "value": "\"Failed to get mimeType\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 8888, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 10857, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "Dictionary", - "offset": 11089, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 11923, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 12016, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 12023, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 12040, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "Dictionary", - "offset": 12808, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 13214, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 13307, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 13314, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 13331, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 15921, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 16099, - "length": 105, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 16192, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 16199, - "length": 1, - "value": "\".jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 16417, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 17335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 18091, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 18178, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 18240, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 20040, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 20099, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 20705, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21065, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 21618, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 21623, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21679, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21741, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21820, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24042, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24271, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 24436, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 24522, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24654, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24845, - "length": 3, - "value": "164" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24898, - "length": 3, - "value": "196" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25032, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 25747, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25867, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25972, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25985, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 26242, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 26311, - "length": 3, - "value": "196" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "Array", - "offset": 26730, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 27243, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 27839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 28017, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 28420, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 28901, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 29697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 30022, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 31215, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "StringLiteral", - "offset": 32387, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 33965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUOpenChannelViewController.Deprecated.swift", - "kind": "StringLiteral", - "offset": 3791, - "length": 26, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUOpenChannelViewController.Deprecated.swift", - "kind": "StringLiteral", - "offset": 3812, - "length": 4, - "value": "\"Cell\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.Deprecated.swift", - "kind": "StringLiteral", - "offset": 1146, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 67, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1412, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1432, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1826, - "length": 67, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1872, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1892, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "FloatLiteral", - "offset": 2469, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 3097, - "length": 26, - "value": "\"[Request] Channel update\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3173, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3325, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3497, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4156, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4336, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 703, - "length": 32, - "value": "\"SendbirdUIKit.SBUGroupChannelSettingsViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUHighlightMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUHighlightMessageInfo.swift", - "kind": "StringLiteral", - "offset": 1040, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUHighlightMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 1137, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 385, - "length": 21, - "value": "\"notificationSetting\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 21, - "value": "\"notificationSetting\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 1977, - "length": 25, - "value": "\"No have themes in cache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 4601, - "length": 55, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 4633, - "length": 1, - "value": "\".queue.diskcache.theme\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "IntegerLiteral", - "offset": 4729, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 4774, - "length": 45, - "value": "\"sbu_global_notification_settings_updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 4847, - "length": 45, - "value": "\"sbu_global_notification_settings_theme_mode\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 5546, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 5799, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "IntegerLiteral", - "offset": 7648, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "Dictionary", - "offset": 7688, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 7825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 8502, - "length": 46, - "value": "\"Failed to save theme to disk cache: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 8547, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 9182, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 9574, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 10154, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 10186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 10653, - "length": 33, - "value": "\"Could not remove path: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 10685, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 10985, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 11026, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 11117, - "length": 20, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 11135, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "IntegerLiteral", - "offset": 12082, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "IntegerLiteral", - "offset": 12367, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 12908, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 12917, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 13008, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 13090, - "length": 49, - "value": "\"Error writing to file: lastUpdatedTimeKey value\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 14011, - "length": 9, - "value": "\"default\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "BooleanLiteral", - "offset": 14576, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "StringLiteral", - "offset": 14658, - "length": 43, - "value": "\"Error writing to file: themeModeKey value\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", - "kind": "Dictionary", - "offset": 15503, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUAdminMessageCellParams.swift", - "kind": "StringLiteral", - "offset": 201, - "length": 25, - "value": "\"SendbirdUIKit.SBUAdminMessageCellParams\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2731, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "StringLiteral", - "offset": 2757, - "length": 38, - "value": "\"[Request] Register users: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2978, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3100, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "StringLiteral", - "offset": 3181, - "length": 42, - "value": "\"[Succeed] Register users request success\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", - "kind": "StringLiteral", - "offset": 614, - "length": 28, - "value": "\"SendbirdUIKit.SBURegisterOperatorViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 2652, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 2729, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 2793, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 3060, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 4313, - "length": 105, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 4406, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 4413, - "length": 1, - "value": "\".jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 4450, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 4691, - "length": 24, - "value": "\"Failed to get mimeType\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 4818, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 6572, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "Dictionary", - "offset": 6804, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 7638, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 7731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 7738, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 7755, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "Dictionary", - "offset": 8454, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 8860, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 8953, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 8960, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 8977, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 11384, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 11562, - "length": 105, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 11655, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 11662, - "length": 1, - "value": "\".jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 11878, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 12688, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 13545, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 13604, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 14186, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 14245, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUDashboardConfig.swift", - "kind": "IntegerLiteral", - "offset": 440, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "StringLiteral", - "offset": 3481, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4037, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "FloatLiteral", - "offset": 4270, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4324, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4697, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4707, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4715, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4726, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "StringLiteral", - "offset": 7897, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8290, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8437, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2593, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "StringLiteral", - "offset": 2619, - "length": 34, - "value": "\"Request invite users: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "StringLiteral", - "offset": 2652, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2855, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "StringLiteral", - "offset": 3058, - "length": 40, - "value": "\"[Succeed] Invite users request success\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", - "kind": "StringLiteral", - "offset": 567, - "length": 22, - "value": "\"SendbirdUIKit.SBUInviteUserViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "IntegerLiteral", - "offset": 494, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "BooleanLiteral", - "offset": 526, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "BooleanLiteral", - "offset": 807, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "BooleanLiteral", - "offset": 822, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "IntegerLiteral", - "offset": 862, - "length": 2, - "value": "91" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "IntegerLiteral", - "offset": 874, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", - "kind": "IntegerLiteral", - "offset": 922, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.List.swift", - "kind": "StringLiteral", - "offset": 2546, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3868, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1817, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2047, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2119, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2713, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2835, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3640, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3762, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4674, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4816, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4933, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5469, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5855, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5999, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUModerationsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "Array", - "offset": 572, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "Array", - "offset": 614, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1161, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1170, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1181, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1191, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1804, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1813, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1824, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1834, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1883, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 1926, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 2258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 2325, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 2390, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 2442, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2702, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2710, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2721, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 2845, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 2903, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 3042, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3101, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 3321, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 3357, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3822, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3856, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3947, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 3976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 4214, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 4374, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 4543, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5134, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5138, - "length": 2, - "value": "54" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5143, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5155, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 5389, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 5481, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5664, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5855, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 5954, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "BooleanLiteral", - "offset": 6903, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", - "kind": "IntegerLiteral", - "offset": 8392, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.Header.swift", - "kind": "BooleanLiteral", - "offset": 5727, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 1011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 1119, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 1712, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 1753, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 2231, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3302, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5240, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5253, - "length": 2, - "value": "-8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5262, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5305, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5684, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5748, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 7090, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 11967, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 13046, - "length": 21, - "value": "\"Channel must exist!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 13388, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 13394, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 13562, - "length": 29, - "value": "\"There are no message cells!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 14324, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 15623, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 16339, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 17789, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "FloatLiteral", - "offset": 790, - "length": 4, - "value": "64.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1500, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1506, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1516, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1528, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 1855, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 1910, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 1978, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 2022, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2074, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 2163, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 2213, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2343, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3045, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3173, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3329, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3407, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3472, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "FloatLiteral", - "offset": 3525, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3793, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3871, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3935, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4169, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4238, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4396, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4474, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4538, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "FloatLiteral", - "offset": 4591, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 4727, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 5509, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 5621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "BooleanLiteral", - "offset": 6560, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", - "kind": "IntegerLiteral", - "offset": 6672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4352, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4827, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "FloatLiteral", - "offset": 5073, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5415, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5425, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 9751, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10067, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10309, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/ChannelSettingItem\/SBUChannelSettingItem.swift", - "kind": "BooleanLiteral", - "offset": 731, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/ChannelSettingItem\/SBUChannelSettingItem.swift", - "kind": "BooleanLiteral", - "offset": 781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 686, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 709, - "length": 2, - "value": "27" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 730, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 753, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "StringLiteral", - "offset": 897, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1311, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2022, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 3250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateChannelModule.Header.swift", - "kind": "StringLiteral", - "offset": 4723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 5714, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 756, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 1439, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 1657, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 2474, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 2538, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 2699, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 2775, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "FloatLiteral", - "offset": 2881, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 2897, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 2960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 3163, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 3176, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 3187, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "FloatLiteral", - "offset": 3249, - "length": 4, - "value": "60.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "FloatLiteral", - "offset": 3263, - "length": 4, - "value": "60.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 3327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 3450, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "BooleanLiteral", - "offset": 3657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "IntegerLiteral", - "offset": 4111, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", - "kind": "StringLiteral", - "offset": 5292, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "BooleanLiteral", - "offset": 1492, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "BooleanLiteral", - "offset": 1774, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "FloatLiteral", - "offset": 1990, - "length": 4, - "value": "34.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "FloatLiteral", - "offset": 2037, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "BooleanLiteral", - "offset": 2798, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "BooleanLiteral", - "offset": 2909, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "BooleanLiteral", - "offset": 3033, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 3632, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 3785, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 3912, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4048, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4133, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4146, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4253, - "length": 3, - "value": "751" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4384, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4397, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4474, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4582, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4650, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4787, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 4800, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "FloatLiteral", - "offset": 4811, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "FloatLiteral", - "offset": 4861, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 6987, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "IntegerLiteral", - "offset": 7099, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", - "kind": "StringLiteral", - "offset": 722, - "length": 24, - "value": "\"SendbirdUIKit.SBUChannelInfoHeaderView\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCollectionViewFlowLayout.swift", - "kind": "BooleanLiteral", - "offset": 382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCollectionViewFlowLayout.swift", - "kind": "Array", - "offset": 654, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCollectionViewFlowLayout.swift", - "kind": "IntegerLiteral", - "offset": 1057, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 466, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 472, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 487, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 571, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 577, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 813, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 884, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1414, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1475, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1946, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1993, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2006, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2011, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2023, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2027, - "length": 3, - "value": "0xF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2034, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2045, - "length": 3, - "value": "0xF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2052, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2069, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2116, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2128, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2139, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2143, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2155, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2174, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2229, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2240, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2245, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2258, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2262, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2274, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2385, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2410, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2434, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIColor+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2459, - "length": 3, - "value": "255" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 397, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 856, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 946, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "BooleanLiteral", - "offset": 977, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1039, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1157, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1428, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1524, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1572, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1618, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1666, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1717, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 1729, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "Dictionary", - "offset": 4207, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 5082, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 5423, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", - "kind": "Array", - "offset": 5495, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 260, - "length": 5, - "value": "219.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 268, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 282, - "length": 5, - "value": "209.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 290, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 303, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 315, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 368, - "length": 5, - "value": "194.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 376, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 390, - "length": 5, - "value": "169.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 398, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 411, - "length": 5, - "value": "250.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 419, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 433, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 486, - "length": 5, - "value": "116.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 494, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 508, - "length": 4, - "value": "45.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 515, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 528, - "length": 5, - "value": "221.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 536, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 550, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 603, - "length": 4, - "value": "98.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 610, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 624, - "length": 4, - "value": "17.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 631, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 644, - "length": 5, - "value": "200.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 652, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 666, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 719, - "length": 4, - "value": "73.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 726, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 740, - "length": 4, - "value": "19.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 747, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 760, - "length": 5, - "value": "137.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 768, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 782, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 867, - "length": 5, - "value": "168.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 875, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 889, - "length": 5, - "value": "226.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 897, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 910, - "length": 5, - "value": "171.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 918, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 932, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 987, - "length": 5, - "value": "105.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 995, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1009, - "length": 5, - "value": "192.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1017, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1030, - "length": 5, - "value": "133.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1038, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1052, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1107, - "length": 4, - "value": "37.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1114, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1128, - "length": 5, - "value": "156.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1136, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1149, - "length": 5, - "value": "114.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1157, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1171, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1226, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1232, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1246, - "length": 5, - "value": "125.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1254, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1267, - "length": 5, - "value": "105.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1275, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1289, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1344, - "length": 3, - "value": "6.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1350, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1364, - "length": 5, - "value": "104.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1372, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1385, - "length": 4, - "value": "88.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1392, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1406, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1494, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1506, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1564, - "length": 5, - "value": "238.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1572, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1586, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1644, - "length": 5, - "value": "224.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1652, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1666, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1724, - "length": 5, - "value": "189.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1732, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1746, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1804, - "length": 4, - "value": "57.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1811, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1825, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1883, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1890, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1904, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1962, - "length": 4, - "value": "22.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1969, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 1983, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2041, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2053, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2135, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2147, - "length": 4, - "value": "0.55" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2202, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2214, - "length": 4, - "value": "0.32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2298, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2310, - "length": 4, - "value": "0.88" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2365, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2377, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2431, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2443, - "length": 4, - "value": "0.38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2498, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2510, - "length": 4, - "value": "0.12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2592, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2604, - "length": 4, - "value": "0.88" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2658, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2670, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2723, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2735, - "length": 4, - "value": "0.38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2789, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2801, - "length": 4, - "value": "0.12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2879, - "length": 5, - "value": "253.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2887, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2901, - "length": 5, - "value": "170.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2909, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2922, - "length": 5, - "value": "170.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2930, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2944, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 2995, - "length": 5, - "value": "246.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3003, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3017, - "length": 4, - "value": "97.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3024, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3037, - "length": 4, - "value": "97.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3044, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3058, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3109, - "length": 5, - "value": "222.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3117, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3131, - "length": 4, - "value": "54.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3138, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3151, - "length": 4, - "value": "11.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3158, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3172, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3223, - "length": 5, - "value": "191.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3231, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3245, - "length": 3, - "value": "7.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3251, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3264, - "length": 4, - "value": "17.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3271, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3285, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3336, - "length": 5, - "value": "157.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3344, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3358, - "length": 3, - "value": "9.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3364, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3377, - "length": 4, - "value": "30.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3384, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3398, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3484, - "length": 5, - "value": "173.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3492, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3506, - "length": 5, - "value": "201.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3514, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3527, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3539, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3617, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3629, - "length": 5, - "value": "242.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3637, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3650, - "length": 5, - "value": "182.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3658, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUColorSet.swift", - "kind": "FloatLiteral", - "offset": 3672, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 1102, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 1702, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 3405, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 3415, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 3423, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 3434, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 4168, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8249, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8907, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 9492, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 9826, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10262, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11039, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11072, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13246, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 13604, - "length": 59, - "value": "\"[Failed] Create channel request: There is no channel url.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 14768, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15530, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", - "kind": "Dictionary", - "offset": 15819, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", - "kind": "BooleanLiteral", - "offset": 484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", - "kind": "BooleanLiteral", - "offset": 1363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", - "kind": "BooleanLiteral", - "offset": 1512, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", - "kind": "BooleanLiteral", - "offset": 2129, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", - "kind": "BooleanLiteral", - "offset": 2283, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 1272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 1625, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 1913, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 2729, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 2755, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 2819, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 3095, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 3675, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 3727, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4393, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4418, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4438, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4461, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4721, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4766, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 4789, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 4897, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 5025, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5226, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5251, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5271, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5294, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5521, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5546, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5566, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 5589, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 5697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 5719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 6115, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 8951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 9160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 10066, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 10709, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 10751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 10788, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 10882, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 13523, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 13691, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 13732, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 13910, - "length": 3, - "value": "250" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14156, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14256, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14267, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14381, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 14483, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 14706, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 14739, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 15494, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 15531, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 15727, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 15821, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 15974, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16097, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16209, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16328, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16410, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 16559, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 16745, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 16921, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 17022, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 17032, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 17145, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 17248, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 17472, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 17505, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 18267, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 18304, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 18498, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 18593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 18748, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 18872, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 18985, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 19106, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 19189, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 19340, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 19949, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 20700, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 21463, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 21798, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 21858, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 22754, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 22987, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 23481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 23614, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 26203, - "length": 3, - "value": "751" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 26443, - "length": 3, - "value": "751" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 27041, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 27173, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 27693, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 27759, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 27839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 29310, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 29385, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 29867, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 29896, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 30060, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 30159, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 30437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 30599, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 30610, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 30852, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 31232, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 31645, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 31920, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 32195, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 32689, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 32814, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 32869, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 32902, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 32948, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 33572, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 34413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 34492, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 34567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 35164, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 35337, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 36298, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 36436, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 37119, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 37194, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 37753, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 37782, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 37946, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 38045, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 38327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 38491, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 38502, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 38744, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 39126, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 39530, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 39807, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 40082, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 40517, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 40907, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 40986, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 41061, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 41662, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 42501, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 42931, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 43991, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 44105, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 44738, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 45337, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 45469, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 45495, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 45657, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 45813, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 46090, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 46972, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 47744, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 48433, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 48460, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 48618, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 48778, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 49173, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 50088, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 50803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 52064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 52940, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 53386, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 54652, - "length": 39, - "value": "\"init(coder:) has not been implemented\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 54026, - "length": 23, - "value": "\"SendbirdUIKit.MessageTemplateBaseView\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 55845, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 55886, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 55971, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 56051, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 56093, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 58180, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 58254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 58768, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 59140, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 59689, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 60302, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 60440, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 61379, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 61449, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 61547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 61630, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 61712, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 61798, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 62188, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 62648, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 62992, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 63584, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 64319, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 64587, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 65356, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 65370, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 65970, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 65984, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 1095, - "length": 23, - "value": "\"SendbirdUIKit.MessageTemplateRenderer\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "Array", - "offset": 67169, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 67554, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 67611, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 67617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "BooleanLiteral", - "offset": 68095, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "FloatLiteral", - "offset": 68154, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 68668, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 68872, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 68971, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 69108, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 69581, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 69749, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "IntegerLiteral", - "offset": 69755, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", - "kind": "StringLiteral", - "offset": 70550, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "BooleanLiteral", - "offset": 953, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "BooleanLiteral", - "offset": 1096, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 2958, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 2971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 2979, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 2990, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "BooleanLiteral", - "offset": 3879, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "StringLiteral", - "offset": 4710, - "length": 22, - "value": "\"didSelectChannelInfo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", - "kind": "StringLiteral", - "offset": 4987, - "length": 30, - "value": "\"didSelectChannelParticipants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUMessageWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 573, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUMessageWebViewModel.swift", - "kind": "BooleanLiteral", - "offset": 602, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "Array", - "offset": 1611, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 1916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 2215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 4065, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 5362, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7147, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7157, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7165, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7176, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8522, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8782, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 9190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 10203, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 10529, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 10562, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 10565, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 14782, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 15799, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "Array", - "offset": 16065, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 16531, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "StringLiteral", - "offset": 16586, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 18313, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/UserList\/SBUUserListViewController.swift", - "kind": "BooleanLiteral", - "offset": 18683, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUStackView.swift", - "kind": "FloatLiteral", - "offset": 512, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/NSObject+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 362, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/NSObject+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 453, - "length": 27, - "value": "\"Class name couldn't find.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/NSObject+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 696, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/NSObject+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 745, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/NSObject+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 853, - "length": 27, - "value": "\"Class name couldn't find.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 1670, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2934, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 3850, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 4089, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 4304, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 5157, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 5541, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 5808, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6008, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 6056, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 6070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6225, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 7215, - "length": 8, - "value": "\"thumb_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 7797, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 8200, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 9795, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 10158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 10237, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 15, - "value": "\"Group Channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 300, - "length": 14, - "value": "\"Open Channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1256, - "length": 7, - "value": "\"image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1296, - "length": 5, - "value": "\"svg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1378, - "length": 7, - "value": "\"video\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1431, - "length": 7, - "value": "\"audio\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1553, - "length": 7, - "value": "\"voice\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1670, - "length": 5, - "value": "\"pdf\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1894, - "length": 3, - "value": "\";\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 1928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 1993, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 2991, - "length": 4, - "value": "\", \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 5998, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 6074, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "BooleanLiteral", - "offset": 6604, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "BooleanLiteral", - "offset": 6644, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "BooleanLiteral", - "offset": 7223, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "BooleanLiteral", - "offset": 7263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 7391, - "length": 10, - "value": "\" \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 7444, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "FloatLiteral", - "offset": 7482, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 8036, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 8040, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "BooleanLiteral", - "offset": 8815, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 9395, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 9402, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 9435, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "IntegerLiteral", - "offset": 9443, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUUtils.swift", - "kind": "StringLiteral", - "offset": 9483, - "length": 11, - "value": "\"%02d:%02d\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 695, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 741, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1048, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1074, - "length": 3, - "value": "-12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1096, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1119, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1176, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1288, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1314, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1336, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "StringLiteral", - "offset": 1724, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2136, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2513, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 266, - "length": 8, - "value": "\"Cancel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 302, - "length": 4, - "value": "\"OK\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 337, - "length": 7, - "value": "\"Retry\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 374, - "length": 6, - "value": "\"Save\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 410, - "length": 6, - "value": "\"Copy\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 448, - "length": 8, - "value": "\"Delete\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 486, - "length": 6, - "value": "\"Edit\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 524, - "length": 8, - "value": "\"Remove\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 8, - "value": "\"Camera\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 615, - "length": 15, - "value": "\"Photo library\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 664, - "length": 7, - "value": "\"Files\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 704, - "length": 12, - "value": "\"Loading...\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 748, - "length": 8, - "value": "\"Invite\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 791, - "length": 12, - "value": "\"Take photo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 840, - "length": 14, - "value": "\"Choose photo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 891, - "length": 14, - "value": "\"Remove photo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 942, - "length": 14, - "value": "\"View library\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 988, - "length": 8, - "value": "\"Search\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1030, - "length": 10, - "value": "\"Settings\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1071, - "length": 7, - "value": "\"Reply\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1142, - "length": 34, - "value": "\"Are you sure you want to delete?\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1227, - "length": 41, - "value": "\"Please allow camera usage from settings\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1325, - "length": 34, - "value": "\"Please Allow PhotoLibrary Access\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1424, - "length": 60, - "value": "\"PhotoLibrary access required to get your photos and videos\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1608, - "length": 45, - "value": "\"Please allow microphone usage from settings\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1721, - "length": 11, - "value": "\"Yesterday\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1828, - "length": 8, - "value": "\"%lld%@\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 1858, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1863, - "length": 7, - "value": "\"years\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1873, - "length": 6, - "value": "\"year\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 1981, - "length": 8, - "value": "\"%lld%@\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 2011, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2016, - "length": 6, - "value": "\"days\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2025, - "length": 5, - "value": "\"day\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2134, - "length": 11, - "value": "\"%lldmonth\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 7, - "value": "\"%lldh\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2377, - "length": 7, - "value": "\"%lldm\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2435, - "length": 5, - "value": "\"ago\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2473, - "length": 4, - "value": "\"on\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2556, - "length": 10, - "value": "\"Channels\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2621, - "length": 18, - "value": "\"uploaded a file.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2709, - "length": 15, - "value": "\"Group Channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2773, - "length": 14, - "value": "\"(No members)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 11, - "value": "\"Last seen\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3143, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3212, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3226, - "length": 8, - "value": "\"Member\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3269, - "length": 17, - "value": "\"%@ is typing...\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3311, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3351, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3381, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3395, - "length": 8, - "value": "\"Member\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3441, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 3471, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3485, - "length": 8, - "value": "\"Member\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3528, - "length": 25, - "value": "\"%@ and %@ are typing...\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3613, - "length": 30, - "value": "\"Several people are typing...\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3714, - "length": 13, - "value": "\"File saved.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3782, - "length": 27, - "value": "\"Couldn’t download file.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3860, - "length": 23, - "value": "\"Couldn’t open file.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 3933, - "length": 17, - "value": "\"uploaded a file\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 4059, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4081, - "length": 15, - "value": "\"1 new message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 4110, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 4114, - "length": 2, - "value": "99" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4137, - "length": 23, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4146, - "length": 3, - "value": "\" new messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 4174, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4201, - "length": 18, - "value": "\"99+ new messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4256, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4327, - "length": 16, - "value": "\"Channel frozen\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4427, - "length": 14, - "value": "\"Open Channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4492, - "length": 14, - "value": "\"Participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 4627, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4649, - "length": 15, - "value": "\"1 participant\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4701, - "length": 23, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4710, - "length": 12, - "value": "\" participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 44, - "value": "\"SENDBIRD_NOTIFICATION_CHANNEL_NOTIFICATION\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5267, - "length": 59, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5315, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5325, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5468, - "length": 15, - "value": "\"Notifications\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5569, - "length": 21, - "value": "\"Channel information\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5643, - "length": 13, - "value": "\"Change name\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5710, - "length": 22, - "value": "\"Change channel image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 12, - "value": "\"Enter name\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5864, - "length": 20, - "value": "\"Enter channel name\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 5939, - "length": 15, - "value": "\"Notifications\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6012, - "length": 4, - "value": "\"On\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6075, - "length": 5, - "value": "\"Off\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6150, - "length": 15, - "value": "\"Mentions only\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6225, - "length": 9, - "value": "\"Members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6294, - "length": 14, - "value": "\"Participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 6422, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6444, - "length": 9, - "value": "\"members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6490, - "length": 18, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6499, - "length": 7, - "value": "\" members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6571, - "length": 15, - "value": "\"Leave channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6634, - "length": 16, - "value": "\"Delete channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6712, - "length": 17, - "value": "\"Delete channel?\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6789, - "length": 47, - "value": "\"Once deleted, this channel can't be restored.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6884, - "length": 19, - "value": "\"Search in channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 6961, - "length": 13, - "value": "\"Moderations\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7025, - "length": 11, - "value": "\"Operators\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7091, - "length": 15, - "value": "\"Muted members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7166, - "length": 20, - "value": "\"Muted participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7249, - "length": 14, - "value": "\"Banned users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7319, - "length": 16, - "value": "\"Freeze channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7385, - "length": 5, - "value": "\"URL\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7488, - "length": 15, - "value": "\"Notifications\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7567, - "length": 15, - "value": "\"Notifications\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7636, - "length": 18, - "value": "\"All new messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7718, - "length": 15, - "value": "\"Mentions only\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7803, - "length": 100, - "value": "\"Turn on push notifications if you wish to be notified when messages are delivered to this channel.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 7988, - "length": 16, - "value": "\"Type a message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8059, - "length": 37, - "value": "\"Chat is unavailable in this channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 15, - "value": "\"You are muted\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8209, - "length": 18, - "value": "\"Reply to message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8336, - "length": 35, - "value": "\"Reply to \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8370, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8435, - "length": 7, - "value": "\"Photo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8498, - "length": 5, - "value": "\"GIF\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8561, - "length": 7, - "value": "\"Video\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8632, - "length": 10, - "value": "\"(edited)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8682, - "length": 16, - "value": "\"System message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8745, - "length": 24, - "value": "\"(Unknown message type)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8822, - "length": 26, - "value": "\"Can't read this message.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8979, - "length": 56, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 8998, - "length": 7, - "value": "\" replied to \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9034, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9078, - "length": 5, - "value": "\"You\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 9270, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9292, - "length": 9, - "value": "\"1 reply\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 9315, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 9319, - "length": 2, - "value": "99" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9342, - "length": 30, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9363, - "length": 7, - "value": "\" replies\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 9386, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9426, - "length": 13, - "value": "\"99+ replies\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9442, - "length": 30, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9463, - "length": 7, - "value": "\" replies\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9509, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9616, - "length": 52, - "value": "\"Couldn't find the original message for this reply.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9741, - "length": 21, - "value": "\"Message unavailable\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9849, - "length": 18, - "value": "\"(Template error)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 9929, - "length": 31, - "value": "\"Can't read this notification.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10025, - "length": 13, - "value": "\"No channels\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10081, - "length": 13, - "value": "\"No messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10142, - "length": 18, - "value": "\"No notifications\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10200, - "length": 10, - "value": "\"No users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10258, - "length": 18, - "value": "\"No muted members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10329, - "length": 23, - "value": "\"No muted participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10399, - "length": 17, - "value": "\"No banned users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10461, - "length": 18, - "value": "\"No results found\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10516, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 10679, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10701, - "length": 8, - "value": "\"Create\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10746, - "length": 17, - "value": "\"Create \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10762, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10831, - "length": 13, - "value": "\"New Channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10905, - "length": 16, - "value": "\"Select members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 10981, - "length": 21, - "value": "\"New channel profile\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11092, - "length": 8, - "value": "\"Create\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11156, - "length": 13, - "value": "\"New channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11237, - "length": 20, - "value": "\"Enter channel name\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11340, - "length": 14, - "value": "\"Invite users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11413, - "length": 14, - "value": "\"Select users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 11537, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11559, - "length": 8, - "value": "\"Invite\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11604, - "length": 17, - "value": "\"Invite \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 11749, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11771, - "length": 10, - "value": "\"Register\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11818, - "length": 19, - "value": "\"Register \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11836, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11916, - "length": 7, - "value": "\"(You)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 11961, - "length": 5, - "value": "\"Ban\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12006, - "length": 7, - "value": "\"Unban\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12052, - "length": 6, - "value": "\"Mute\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12099, - "length": 8, - "value": "\"Unmute\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12161, - "length": 21, - "value": "\"Unregister operator\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12234, - "length": 22, - "value": "\"Register as operator\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12304, - "length": 9, - "value": "\"Members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12363, - "length": 11, - "value": "\"Operators\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12428, - "length": 15, - "value": "\"Muted members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12502, - "length": 20, - "value": "\"Muted Participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12584, - "length": 14, - "value": "\"Banned users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12651, - "length": 14, - "value": "\"Participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12728, - "length": 11, - "value": "\"(No name)\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12778, - "length": 10, - "value": "\"Operator\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12872, - "length": 10, - "value": "\"Operator\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12931, - "length": 8, - "value": "\"Member\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 12983, - "length": 9, - "value": "\"User ID\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13037, - "length": 9, - "value": "\"Message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13092, - "length": 10, - "value": "\"Register\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13150, - "length": 12, - "value": "\"Unregister\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 6, - "value": "\"Mute\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 8, - "value": "\"Unmute\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13303, - "length": 5, - "value": "\"Ban\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13384, - "length": 7, - "value": "\"Group\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13439, - "length": 13, - "value": "\"Super group\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13499, - "length": 11, - "value": "\"Broadcast\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 3, - "value": "\"@\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13722, - "length": 95, - "value": "\"You can mention up to \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "IntegerLiteral", - "offset": 13793, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13796, - "length": 5, - "value": "\" times per message. \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 13993, - "length": 17, - "value": "\"Reply in thread\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14113, - "length": 17, - "value": "\"Reply in thread\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14177, - "length": 17, - "value": "\"Reply to thread\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14283, - "length": 8, - "value": "\"Thread\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14514, - "length": 8, - "value": "\"Cancel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14772, - "length": 20, - "value": "\"Channel is frozen.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 14996, - "length": 31, - "value": "\"You're muted by the operator.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 15242, - "length": 15, - "value": "\"Voice message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 15459, - "length": 15, - "value": "\"Voice message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 15715, - "length": 15, - "value": "\"Voice message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUStringSet.swift", - "kind": "StringLiteral", - "offset": 15846, - "length": 15, - "value": "\"Voice_message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 276, - "length": 4, - "value": "18.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 371, - "length": 4, - "value": "18.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 583, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 618, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 775, - "length": 4, - "value": "-0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 906, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 1049, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 1268, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 1303, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 1595, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 1815, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 1850, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 2141, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 2395, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 2683, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 2899, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 2934, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 3236, - "length": 4, - "value": "18.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 3460, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 3495, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 3657, - "length": 4, - "value": "0.38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 3795, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 4017, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 4052, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 4214, - "length": 4, - "value": "-0.4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 4352, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 4574, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 4609, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 4882, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 5102, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 5137, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 5439, - "length": 4, - "value": "12.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 5661, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 5696, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 5974, - "length": 4, - "value": "12.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 6199, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 6234, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 6509, - "length": 4, - "value": "11.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 6731, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 6766, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 7044, - "length": 4, - "value": "11.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 7269, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 7304, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 7629, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 7855, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 7890, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 8054, - "length": 4, - "value": "-0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 8195, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 8422, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 8457, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 8621, - "length": 4, - "value": "-0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 8762, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 8989, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "IntegerLiteral", - "offset": 9024, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUFontSet.swift", - "kind": "FloatLiteral", - "offset": 9188, - "length": 4, - "value": "-0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "Array", - "offset": 1042, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "Array", - "offset": 1126, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2255, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2922, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 4446, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 4456, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 4464, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 4475, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6164, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6200, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 9671, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateChannelViewController.swift", - "kind": "StringLiteral", - "offset": 10260, - "length": 59, - "value": "\"[Failed] Create channel request: There is no channel url.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.Header.swift", - "kind": "StringLiteral", - "offset": 5560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.Header.swift", - "kind": "BooleanLiteral", - "offset": 6720, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "FloatLiteral", - "offset": 789, - "length": 3, - "value": "0.4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 827, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 1762, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 1772, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 1780, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 1791, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1973, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1988, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 2028, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 2040, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 2643, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 2734, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 2765, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 42, - "value": "\"quoted_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 3868, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 5163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "StringLiteral", - "offset": 5219, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 351, - "length": 3, - "value": "136" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 399, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 446, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 497, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 546, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 660, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 774, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1002, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 1268, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 1531, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 1699, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 2583, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 2755, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 2942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 3029, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 3101, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4423, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4480, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4540, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4596, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4770, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 4832, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 5014, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 5082, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 5245, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/MemberList\/SBUMemberListViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 5205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/MemberList\/SBUMemberListViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 7940, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 228, - "length": 3, - "value": "244" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 284, - "length": 3, - "value": "240" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 297, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 350, - "length": 3, - "value": "240" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 363, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 433, - "length": 3, - "value": "156" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 446, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 515, - "length": 3, - "value": "136" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 528, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 600, - "length": 3, - "value": "311" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 613, - "length": 3, - "value": "207" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 677, - "length": 3, - "value": "311" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 690, - "length": 3, - "value": "207" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 750, - "length": 5, - "value": "144.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 765, - "length": 4, - "value": "38.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 823, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 837, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 897, - "length": 4, - "value": "38.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 911, - "length": 4, - "value": "38.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 977, - "length": 5, - "value": "144.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "FloatLiteral", - "offset": 992, - "length": 4, - "value": "38.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 1052, - "length": 3, - "value": "244" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 1120, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "IntegerLiteral", - "offset": 1132, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1171, - "length": 42, - "value": "\"https:\/\/static.sendbird.com\/sample\/cover\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1254, - "length": 10, - "value": "\"sb_uikit\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1304, - "length": 20, - "value": "\"com.sendbird.uikit\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1378, - "length": 44, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1398, - "length": 1, - "value": "\".delegate.channel.group\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1470, - "length": 43, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1490, - "length": 1, - "value": "\".delegate.channel.open\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1561, - "length": 43, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1581, - "length": 1, - "value": "\".delegate.channel.feed\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1656, - "length": 41, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1676, - "length": 1, - "value": "\".delegate.connection\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1734, - "length": 15, - "value": "\"SBUAppVersion\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1789, - "length": 11, - "value": "\"audio\/m4a\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1849, - "length": 16, - "value": "\"sbu_type=voice\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1907, - "length": 28, - "value": "\"KEY_VOICE_MESSAGE_DURATION\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUConstant.swift", - "kind": "StringLiteral", - "offset": 1976, - "length": 27, - "value": "\"KEY_INTERNAL_MESSAGE_TYPE\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 580, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 771, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 802, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 838, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 1003, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 1142, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "FloatLiteral", - "offset": 1794, - "length": 3, - "value": "0.4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 1845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 2764, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 3562, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 3949, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 3983, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 4121, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 4398, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "FloatLiteral", - "offset": 4444, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 4504, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 4515, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 4674, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 5071, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "IntegerLiteral", - "offset": 5693, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "BooleanLiteral", - "offset": 6355, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "FloatLiteral", - "offset": 8770, - "length": 4, - "value": "0.25" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", - "kind": "FloatLiteral", - "offset": 9161, - "length": 4, - "value": "0.25" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "IntegerLiteral", - "offset": 570, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "Array", - "offset": 735, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 1847, - "length": 46, - "value": "\"Requires a channel object for message search\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1901, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2719, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 3629, - "length": 29, - "value": "\"Keyword shouldn't be empty.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 3765, - "length": 15, - "value": "\"Same keyword.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 3840, - "length": 42, - "value": "\"new search keyword : [\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 3880, - "length": 1, - "value": "\"]\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4079, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 4202, - "length": 56, - "value": "\"query : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 4257, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4481, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "StringLiteral", - "offset": 4546, - "length": 20, - "value": "\"loading next page.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4879, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5417, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/UserList\/SBUBaseSelectUserViewController.Deprecated.swift", - "kind": "Array", - "offset": 2306, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/UserList\/SBUBaseSelectUserViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 7646, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUInviteUserViewController.swift", - "kind": "StringLiteral", - "offset": 1910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUInviteUserViewController.swift", - "kind": "StringLiteral", - "offset": 2455, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUInviteUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 2966, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUInviteUserViewController.swift", - "kind": "StringLiteral", - "offset": 3016, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUInviteUserViewController.swift", - "kind": "StringLiteral", - "offset": 3412, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "BooleanLiteral", - "offset": 484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 800, - "length": 5, - "value": "10001" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "BooleanLiteral", - "offset": 1967, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "BooleanLiteral", - "offset": 2301, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "BooleanLiteral", - "offset": 2920, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 3676, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "BooleanLiteral", - "offset": 3734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 4402, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 4412, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 4424, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", - "kind": "IntegerLiteral", - "offset": 4435, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 1089, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 1338, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 1567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "StringLiteral", - "offset": 2111, - "length": 24, - "value": "\"UIRemoteKeyboardWindow\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 2687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 2765, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 2771, - "length": 2, - "value": "50" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 2943, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 4079, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "FloatLiteral", - "offset": 4603, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 4669, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "FloatLiteral", - "offset": 4749, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 5245, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 5282, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 5515, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 5919, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 6919, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "BooleanLiteral", - "offset": 6968, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.Keyboard.swift", - "kind": "IntegerLiteral", - "offset": 7265, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "Array", - "offset": 1281, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1436, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1931, - "length": 3, - "value": "-12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1991, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2129, - "length": 3, - "value": "311" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2208, - "length": 3, - "value": "750" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2338, - "length": 3, - "value": "311" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3800, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4082, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4416, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4608, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4647, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4759, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4864, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4930, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4966, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5099, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5154, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5219, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5256, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 6284, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "StringLiteral", - "offset": 465, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 516, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 545, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 587, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 759, - "length": 5, - "value": "100.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 796, - "length": 4, - "value": "64.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2088, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2094, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2186, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2656, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 3081, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 3122, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULoading.swift", - "kind": "FloatLiteral", - "offset": 3175, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 434, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 953, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 957, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 2566, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 2640, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 2646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 2838, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 3471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 4750, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 5291, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 5775, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 6102, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 6289, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 6438, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 6444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 6724, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 6768, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 6872, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7291, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7296, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7363, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 7880, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 8493, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "StringLiteral", - "offset": 9124, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 9267, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "BooleanLiteral", - "offset": 9340, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 9682, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 9923, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "IntegerLiteral", - "offset": 10248, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "StringLiteral", - "offset": 11056, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "StringLiteral", - "offset": 11094, - "length": 40, - "value": "\"https:\/\/sendbird.com\/main\/img\/profiles\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", - "kind": "StringLiteral", - "offset": 11157, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 432, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 546, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 667, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 787, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 902, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 1235, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 1602, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 1857, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 2062, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 2273, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Array", - "offset": 2355, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 2462, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "Dictionary", - "offset": 2630, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 2831, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", - "kind": "BooleanLiteral", - "offset": 2970, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.List.swift", - "kind": "StringLiteral", - "offset": 2878, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.List.swift", - "kind": "Array", - "offset": 4475, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4966, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5711, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 6358, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "BooleanLiteral", - "offset": 387, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "BooleanLiteral", - "offset": 332, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 11, - "value": "\"SendbirdUIKit.SBUMenuItem\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "Array", - "offset": 1440, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1572, - "length": 5, - "value": "180.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1608, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1643, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1677, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1712, - "length": 4, - "value": "18.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1752, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1801, - "length": 4, - "value": "15.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 1848, - "length": 4, - "value": "36.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 3657, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 3692, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 4606, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 4631, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 4775, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 4812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 4864, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 5050, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 5518, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 5559, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 5612, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "Array", - "offset": 6002, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 6988, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 7118, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 8195, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 8216, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 8281, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "Array", - "offset": 8472, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 9008, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 9020, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 9452, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 9522, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 9533, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "FloatLiteral", - "offset": 9580, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "IntegerLiteral", - "offset": 9627, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", - "kind": "BooleanLiteral", - "offset": 9673, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.Header.swift", - "kind": "StringLiteral", - "offset": 5967, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 1788, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 4073, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 4078, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 4103, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 4108, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 5974, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 5987, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 5995, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 6006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 7470, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 1296, - "length": 32, - "value": "\"SendbirdUIKit.SBUSelectablePhotoViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 8233, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 8726, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 8730, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 8771, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "IntegerLiteral", - "offset": 9177, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 9690, - "length": 5, - "value": "\"jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 9727, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 9820, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 9827, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 9844, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 10520, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 11286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 11947, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "StringLiteral", - "offset": 12086, - "length": 15, - "value": "\"not supported\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", - "kind": "BooleanLiteral", - "offset": 12142, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1182, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1227, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1247, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1636, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1681, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 1701, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "FloatLiteral", - "offset": 2276, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 2899, - "length": 26, - "value": "\"[Request] Channel update\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3298, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4137, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 537, - "length": 31, - "value": "\"SendbirdUIKit.SBUOpenChannelSettingsViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 21, - "value": "\"com.sendbird.atomic\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "BooleanLiteral", - "offset": 934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "BooleanLiteral", - "offset": 1098, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "BooleanLiteral", - "offset": 1397, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2212, - "length": 9, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2235, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2212, - "length": 9, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2235, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2212, - "length": 9, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", - "kind": "IntegerLiteral", - "offset": 2235, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2900, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 3617, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 3741, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4200, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4925, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5019, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5060, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5245, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5286, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5467, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5511, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5531, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5690, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5869, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5913, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5933, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7558, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 7594, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8411, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8475, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 8519, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10450, - "length": 29, - "value": "\"[Request] Send user message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 11143, - "length": 40, - "value": "\"A filtered user message has been sent.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11248, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11654, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12865, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 12913, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 12927, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13569, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14829, - "length": 79, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14861, - "length": 1, - "value": "\";\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15353, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16030, - "length": 29, - "value": "\"[Request] Send file message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16222, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 16352, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16397, - "length": 56, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16435, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16452, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16516, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16554, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17100, - "length": 72, - "value": "\"File message transfer progress: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17145, - "length": 1, - "value": "\" - \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17171, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18147, - "length": 56, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18185, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18202, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18239, - "length": 30, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18251, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18268, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19281, - "length": 40, - "value": "\"A filtered file message has been sent.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19386, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19684, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20245, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 20289, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21909, - "length": 31, - "value": "\"[Request] Update user message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22731, - "length": 38, - "value": "\"[Request] Resend failed user message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23556, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23978, - "length": 38, - "value": "\"[Request] Resend failed file message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24980, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25018, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25286, - "length": 50, - "value": "\"[Request] Delete message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25335, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26640, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26908, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27482, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27567, - "length": 94, - "value": "\"First : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27614, - "length": 1, - "value": "\", Last : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27660, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27701, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 28906, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 29118, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 30125, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 31189, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 31237, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 34595, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 34756, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 35430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "Array", - "offset": 35916, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 36203, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 36348, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 36487, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 36954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 37362, - "length": 24, - "value": "\"[Request] Add Reaction\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 37594, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 37664, - "length": 49, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 37700, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 37703, - "length": 8, - "value": "\" reaction\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 38092, - "length": 27, - "value": "\"[Request] Delete Reaction\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 38330, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 38384, - "length": 49, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 38420, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 38423, - "length": 8, - "value": "\" reaction\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 39001, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 39198, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 39653, - "length": 41, - "value": "\"flushing cache with : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 39693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40064, - "length": 26, - "value": "\"Did succeed reconnection\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40210, - "length": 58, - "value": "\"[Failed] Update user info: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40267, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40695, - "length": 38, - "value": "\"Did receive user message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40732, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40788, - "length": 38, - "value": "\"Did receive file message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40825, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40882, - "length": 39, - "value": "\"Did receive admin message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 40920, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "Array", - "offset": 241, - "length": 14, - "value": "[\"\", \"K\", \"M\"]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 305, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 339, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 379, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 413, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 444, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 53, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 512, - "length": 6, - "value": "\"%.1f\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 546, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 586, - "length": 4, - "value": "\".0\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Formatter+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 598, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 402, - "length": 3, - "value": "164" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 458, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 514, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 625, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 681, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 733, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1231, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1275, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "BooleanLiteral", - "offset": 1923, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 2481, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", - "kind": "IntegerLiteral", - "offset": 2527, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuCell.swift", - "kind": "BooleanLiteral", - "offset": 363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 812, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 1086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 2641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 2715, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 2727, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 2751, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3009, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3031, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3075, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3097, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3199, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 3531, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 3598, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 3650, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3974, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3984, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 4003, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 4270, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 4491, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 4526, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5029, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5128, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5374, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 6260, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 6514, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 6719, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 6812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7240, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "IntegerLiteral", - "offset": 7277, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7304, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7353, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7409, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7634, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7686, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", - "kind": "StringLiteral", - "offset": 221, - "length": 26, - "value": "\"SendbirdUIKit.SBUEmojiListViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 1426, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 2025, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2341, - "length": 27, - "value": "\"Cannot use `init(coder:)`\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 2656, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 3618, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4573, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4877, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5087, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5454, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 5504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6563, - "length": 45, - "value": "\"Unread message count: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6607, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8604, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 8700, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10489, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10515, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10539, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10690, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11764, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11797, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11800, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12525, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12606, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 12735, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 12747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 12826, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 12838, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12908, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12928, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12992, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13037, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13489, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13535, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 14632, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15267, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15338, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 16637, - "length": 63, - "value": "\"Fetched : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 16670, - "length": 1, - "value": "\", keepScroll : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 16699, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 16843, - "length": 30, - "value": "\"Fetched empty notifications.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17130, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "Array", - "offset": 18100, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 18342, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21075, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21179, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21540, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21593, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21830, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21889, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22281, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22418, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22489, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22501, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "Array", - "offset": 23468, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23693, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23911, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 24428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 305, - "length": 40, - "value": "\"SendbirdUIKit.SBUChatNotificationChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 1806, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 5649, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5922, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 6207, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 6463, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 6514, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6610, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 7836, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 8039, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 8248, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 8347, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 8523, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8650, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 8817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 9097, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 9253, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 9411, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10111, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10228, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10364, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10404, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10819, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 11525, - "length": 30, - "value": "\"listComponent is not set up.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12884, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13079, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13159, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13164, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13941, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 14326, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 14570, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 15196, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15340, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15395, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15821, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "Array", - "offset": 18463, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19490, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20271, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21408, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21440, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21445, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 21747, - "length": 79, - "value": "\"There is no cached linked message. Reloads messages based on linked messages.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21989, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22137, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22237, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 22380, - "length": 62, - "value": "\"The cell for row at \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 22413, - "length": 2, - "value": "\" is not `SBUBaseMessageCell`\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 24226, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 24280, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 24721, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 24769, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 25055, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 27723, - "length": 30, - "value": "\"Record permission was denied\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "Array", - "offset": 28758, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 29181, - "length": 79, - "value": "\"There is no cached linked message. Reloads messages based on linked messages.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 29398, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 29574, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 29665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 275, - "length": 29, - "value": "\"SendbirdUIKit.SBUGroupChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", - "kind": "StringLiteral", - "offset": 275, - "length": 29, - "value": "\"SendbirdUIKit.SBUGroupChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 1027, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1405, - "length": 2, - "value": "-5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1418, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1431, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1442, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1536, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1576, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 1616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1691, - "length": 2, - "value": "-3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1704, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1717, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1728, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1771, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 1810, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1919, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1962, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 2001, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2149, - "length": 2, - "value": "-5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2162, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2175, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2186, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2259, - "length": 2, - "value": "-3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2272, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2285, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2296, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2367, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2392, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2403, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 3774, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 3896, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4746, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4800, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4893, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4938, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 4983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 5070, - "length": 2, - "value": "99" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "StringLiteral", - "offset": 5075, - "length": 4, - "value": "\"99\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 5157, - "length": 2, - "value": "99" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "StringLiteral", - "offset": 5162, - "length": 5, - "value": "\"99+\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 5837, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 5841, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 353, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 449, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 497, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 543, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 591, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 642, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUOpenChannelCommonContentView.swift", - "kind": "IntegerLiteral", - "offset": 654, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Unavailable.swift", - "kind": "BooleanLiteral", - "offset": 757, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Unavailable.swift", - "kind": "BooleanLiteral", - "offset": 5938, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 3190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5293, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "FloatLiteral", - "offset": 5345, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 5468, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5691, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5839, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5881, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6033, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7000, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "FloatLiteral", - "offset": 7052, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 7232, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 7590, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7738, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7780, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8760, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 9568, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 9617, - "length": 28, - "value": "\"The index is out of range.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 9653, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 9733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10719, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10811, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 11178, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11235, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.List.swift", - "kind": "Array", - "offset": 11734, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUBaseChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 955, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUBaseChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 1659, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUBaseChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 1669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUBaseChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 1677, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUBaseChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 1688, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 683, - "length": 6, - "value": "\"file\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4429, - "length": 25, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4441, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4453, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4499, - "length": 35, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4511, - "length": 1, - "value": "\"\/File.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", - "kind": "StringLiteral", - "offset": 4533, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 372, - "length": 7, - "value": "\"image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "FloatLiteral", - "offset": 729, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "BooleanLiteral", - "offset": 2189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "BooleanLiteral", - "offset": 2633, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 2651, - "length": 20, - "value": "\"quoted_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 2670, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "BooleanLiteral", - "offset": 3343, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "IntegerLiteral", - "offset": 3399, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "IntegerLiteral", - "offset": 3413, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 4779, - "length": 9, - "value": "\"quoted_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 4866, - "length": 9, - "value": "\"quoted_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 4883, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 4975, - "length": 8, - "value": "\"thumb_\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 4991, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "BooleanLiteral", - "offset": 5741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6068, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6336, - "length": 30, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6348, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6365, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6411, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 6423, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "BooleanLiteral", - "offset": 7094, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7267, - "length": 53, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7278, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7299, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7308, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", - "kind": "StringLiteral", - "offset": 7319, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1288, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1450, - "length": 5, - "value": "270.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1492, - "length": 3, - "value": "3.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1535, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1575, - "length": 4, - "value": "32.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1615, - "length": 4, - "value": "32.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1657, - "length": 4, - "value": "18.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1694, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1729, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1769, - "length": 4, - "value": "40.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1804, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1838, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1873, - "length": 4, - "value": "18.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1913, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 1954, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "BooleanLiteral", - "offset": 2819, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "StringLiteral", - "offset": 2877, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 2934, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "BooleanLiteral", - "offset": 3967, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "StringLiteral", - "offset": 4019, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 4070, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "BooleanLiteral", - "offset": 4470, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 6000, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 6057, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 6355, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 7652, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 8236, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 9064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 9070, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 9080, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 9091, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "StringLiteral", - "offset": 9436, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 9816, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 9830, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 9887, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 10081, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 10120, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 10868, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 11234, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 12078, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 12704, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 12716, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 13195, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 13206, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 13805, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 13846, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 13905, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "BooleanLiteral", - "offset": 14180, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 15532, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 15720, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "FloatLiteral", - "offset": 15846, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", - "kind": "IntegerLiteral", - "offset": 16585, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUDebouncer.swift", - "kind": "FloatLiteral", - "offset": 332, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUDebouncer.swift", - "kind": "BooleanLiteral", - "offset": 1233, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUDebouncer.swift", - "kind": "BooleanLiteral", - "offset": 1460, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUDebouncer.swift", - "kind": "StringLiteral", - "offset": 205, - "length": 12, - "value": "\"SendbirdUIKit.SBUDebouncer\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1140, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "Array", - "offset": 1411, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "Array", - "offset": 1487, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "Array", - "offset": 1798, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2266, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2312, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 3566, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 3571, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3876, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4110, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4186, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4553, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4637, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4798, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 5681, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6227, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "Array", - "offset": 6408, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 6493, - "length": 21, - "value": "\"[Request] User List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 6557, - "length": 26, - "value": "\"[Request] Next user List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 6687, - "length": 50, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 6702, - "length": 10, - "value": "\" customized users have been added.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6781, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8112, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8153, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8215, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 8246, - "length": 29, - "value": "\"All users have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8712, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 8855, - "length": 33, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 8881, - "length": 5, - "value": "\" users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9137, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9613, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9907, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10044, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 10165, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 10170, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10302, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 11524, - "length": 36, - "value": "\"Cannot create the memberListQuery.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 11568, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11651, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11948, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 11979, - "length": 31, - "value": "\"All members have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12259, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12325, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12463, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 12619, - "length": 37, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 12647, - "length": 7, - "value": "\" members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 13820, - "length": 41, - "value": "\"Cannot create the participantListQuery.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 13869, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13952, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14192, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14254, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 14285, - "length": 36, - "value": "\"All participants have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14598, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14664, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14802, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 14954, - "length": 40, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 14980, - "length": 12, - "value": "\" participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15297, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15633, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15754, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15921, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16076, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 16219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "IntegerLiteral", - "offset": 16365, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16753, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 17217, - "length": 24, - "value": "\"Selected user: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 17240, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", - "kind": "StringLiteral", - "offset": 1047, - "length": 26, - "value": "\"SendbirdUIKit.SBUBaseSelectUserViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7609, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7622, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7630, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 13526, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 15291, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 15555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/ChatSDK\/BaseMessage+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 371, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/ChatSDK\/BaseMessage+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 389, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/ChatSDK\/BaseMessage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 722, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", - "kind": "BooleanLiteral", - "offset": 590, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", - "kind": "IntegerLiteral", - "offset": 1492, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", - "kind": "IntegerLiteral", - "offset": 1502, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", - "kind": "IntegerLiteral", - "offset": 1510, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", - "kind": "IntegerLiteral", - "offset": 1521, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 1360, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "Array", - "offset": 1746, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 1954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 3546, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 4280, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5536, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5589, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 5616, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 7907, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8586, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8692, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 10402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 10681, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 10714, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 10717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 12524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 12850, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 15159, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 15214, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 15834, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "IntegerLiteral", - "offset": 459, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "BooleanLiteral", - "offset": 869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "IntegerLiteral", - "offset": 1174, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "IntegerLiteral", - "offset": 1188, - "length": 3, - "value": "-12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "IntegerLiteral", - "offset": 1198, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "IntegerLiteral", - "offset": 1209, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", - "kind": "BooleanLiteral", - "offset": 1766, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 1369, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 1684, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 2206, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 2906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4211, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 4240, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 5709, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 7751, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/SBUGroupChannelPushSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 7806, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.OpenChannel.swift", - "kind": "BooleanLiteral", - "offset": 1349, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "Array", - "offset": 721, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "BooleanLiteral", - "offset": 767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "BooleanLiteral", - "offset": 947, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "BooleanLiteral", - "offset": 1633, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "BooleanLiteral", - "offset": 1685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "FloatLiteral", - "offset": 1847, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2348, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "FloatLiteral", - "offset": 2390, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2598, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2608, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2616, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 2627, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "IntegerLiteral", - "offset": 3758, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "Array", - "offset": 5696, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", - "kind": "StringLiteral", - "offset": 340, - "length": 23, - "value": "\"SendbirdUIKit.SBUSuggestedMentionList\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "StringLiteral", - "offset": 429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "BooleanLiteral", - "offset": 1102, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "IntegerLiteral", - "offset": 1230, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "IntegerLiteral", - "offset": 1320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "IntegerLiteral", - "offset": 1412, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", - "kind": "IntegerLiteral", - "offset": 1506, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 257, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "Array", - "offset": 370, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 466, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 925, - "length": 13, - "value": "\"loadInitial\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "BooleanLiteral", - "offset": 1081, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 1117, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 1522, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 1587, - "length": 41, - "value": "\"loadNext from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 1627, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 1667, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 1703, - "length": 46, - "value": "\"lastest updatedAt is 0. loadInitial instead.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 1970, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2317, - "length": 62, - "value": "\"loaded next messages : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2352, - "length": 1, - "value": "\", size : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2378, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "IntegerLiteral", - "offset": 2585, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2756, - "length": 82, - "value": "\"update latestUpdatedAt to : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2806, - "length": 4, - "value": "\" from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 2837, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3045, - "length": 32, - "value": "\"fetched to the newest. \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3076, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3485, - "length": 25, - "value": "\"add : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3509, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3878, - "length": 108, - "value": "\"applyChangeLog. updated : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3935, - "length": 1, - "value": "\", deleted : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3977, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 3985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 4846, - "length": 41, - "value": "\"flushing cache with : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 4886, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 5288, - "length": 44, - "value": "\"flush merged message : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUMessageCache.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "BooleanLiteral", - "offset": 597, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "BooleanLiteral", - "offset": 1049, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "BooleanLiteral", - "offset": 1064, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1114, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1125, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1291, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1300, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1311, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1321, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUNotificationTimelineView.swift", - "kind": "IntegerLiteral", - "offset": 1375, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 1721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 1928, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 2403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 2573, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 2705, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 4961, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 5183, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", - "kind": "BooleanLiteral", - "offset": 6214, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 244, - "length": 5541, - "value": "\"{\n \"version\": \"1\",\n \"body\": {\n \"items\": [\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"items\": [\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"items\": [\n {\n \"type\": \"image\",\n \"imageUrl\": \"https:\/\/dxstmhyqfqr1o.cloudfront.net\/notifications\/preset-notification-channel-cover.png\",\n \"imageStyle\": {\n \"contentMode\": \"aspectFill\"\n },\n \"viewStyle\": {},\n \"metaData\": {\n \"pixelWidth\": \"168\",\n \"pixelHeight\": \"168\"\n }\n },\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"viewStyle\": {\n \"radius\": \"8\",\n \"padding\": {\n \"top\": \"12\",\n \"bottom\": \"12\",\n \"left\": \"12\",\n \"right\": \"12\"\n }\n },\n \"items\": [\n {\n \"type\": \"text\",\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n },\n \"viewStyle\": {},\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"text\": \"Hello tez\",\n \"textStyle\": {\n \"color\": \"#ffbdb8bd\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"1\"\n },\n {\n \"type\": \"text\",\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n },\n \"viewStyle\": {},\n \"width\": {\n \"type\": \"fixed\",\n \"value\": \"1\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"text\": \"Your order #123123 has been shipped.\",\n \"textStyle\": {\n \"color\": \"#ffbdb8bd\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"1\"\n },\n {\n \"type\": \"textButton\",\n \"viewStyle\": {\n \"backgroundColor\": \"#E0E0E0\",\n \"padding\": {\n \"top\": \"10\",\n \"bottom\": \"10\",\n \"left\": \"20\",\n \"right\": \"20\"\n }\n },\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"text\": \"Check status\",\n \"textStyle\": {\n \"color\": \"#742DDD\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"5\",\n \"action\": {\n \"type\": \"web\",\n \"data\": \"https:\/\/naver.com\"\n }\n }\n ],\n \"height\": {\n \"type\": \"fixed\",\n \"value\": \"300\"\n },\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n }\n }\n ],\n \"viewStyle\": {}\n }\n ],\n \"viewStyle\": {}\n }\n ]\n }\n }\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 5934, - "length": 1803, - "value": "\"{\"version\": 1,\"body\": {\"items\": [{\"type\": \"box\",\"layout\": \"column\",\"items\": [{\"type\": \"image\",\"metaData\": {\"pixelWidth\": 4000,\"pixelHeight\": 3000},\"width\": {\"type\": \"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 6117, - "length": 3, - "value": "\"\",\"value\": \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 6137, - "length": 1, - "value": "\"},\"height\": {\"type\": \"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 3, - "value": "\"\",\"value\": \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 6190, - "length": 1, - "value": "\"},\"imageStyle\": {\"contentMode\": \"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 6237, - "length": 4, - "value": "\"\"},\"imageUrl\": \"https:\/\/images.unsplash.com\/photo-1579393329936-4bc9bc673651?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format\"},{\"type\": \"box\",\"viewStyle\": {\"padding\": {\"top\": 12,\"right\": 12,\"bottom\": 12,\"left\": 12}},\"layout\": \"column\",\"items\": [{\"type\": \"box\",\"layout\": \"row\",\"items\": [{\"type\": \"box\",\"layout\": \"column\",\"items\": [{\"type\": \"text\",\"text\": \"Notification channel creation guide\",\"maxTextLines\": 3,\"viewStyle\": {\"padding\": {\"top\": 0,\"bottom\": 6,\"left\": 0,\"right\": 0}},\"textStyle\": {\"size\": 16,\"weight\": \"bold\"}},{\"type\": \"text\",\"text\": \"Notification Center is basically a group channel to which a single user, the receiver of a notification, belongs. A notification channel, which is a single group channel dedicated to the Notification Center, must be created for each user.\",\"maxTextLines\": 10,\"textStyle\": {\"size\": 14}}]}]},{\"type\": \"box\",\"layout\": \"column\",\"items\": [{\"type\": \"box\",\"viewStyle\": {\"margin\": {\"top\": 16,\"bottom\": 0,\"left\": 0,\"right\": 0}},\"align\": {\"horizontal\": \"left\",\"vertical\": \"center\"},\"layout\": \"row\",\"action\": {\"type\": \"web\",\"data\": \"www.sendbird.com\"},\"items\": [{\"type\": \"box\",\"viewStyle\": {\"margin\": {\"top\": 0,\"bottom\": 0,\"left\": 12,\"right\": 0}},\"layout\": \"column\",\"items\": [{\"type\": \"text\",\"text\": \"Title\",\"maxTextLines\": 1,\"textStyle\": {\"size\": 16,\"weight\": \"bold\"}},{\"type\": \"text\",\"viewStyle\": {\"margin\": {\"top\": 4,\"bottom\": 0,\"left\": 0,\"right\": 0}},\"text\": \"Hi\",\"maxTextLines\": 1,\"textStyle\": {\"size\": 14}}]}]}]}]}]}]}}\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 8441, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 9740, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 9951, - "length": 19, - "value": "\"TEMPLATE_DOWNLOAD\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 12150, - "length": 3, - "value": "\"SendbirdUIKit.Box\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 14219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 14238, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 13570, - "length": 4, - "value": "\"SendbirdUIKit.Text\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 15328, - "length": 5, - "value": "\"SendbirdUIKit.Image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 17396, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 17415, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 17622, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 17673, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 17687, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 17699, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 17712, - "length": 4, - "value": "20.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 16776, - "length": 10, - "value": "\"SendbirdUIKit.TextButton\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 11, - "value": "\"SendbirdUIKit.ImageButton\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 25359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29516, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29545, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29516, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29545, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29516, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 29545, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 31325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 31471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 31661, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 32262, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "FloatLiteral", - "offset": 32419, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 32619, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33368, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33432, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33695, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33715, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 33934, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34006, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34307, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34316, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34948, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34960, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34970, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 34981, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36262, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36273, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36282, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36292, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36380, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", - "kind": "IntegerLiteral", - "offset": 36444, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "Dictionary", - "offset": 4336, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5599, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6406, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6412, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6480, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7443, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7456, - "length": 2, - "value": "-8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7465, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7508, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 14134, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 14406, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "StringLiteral", - "offset": 22203, - "length": 21, - "value": "\"Channel must exist!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 22391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23791, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24359, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24602, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 25297, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 25543, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 26301, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 27026, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 27183, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "StringLiteral", - "offset": 28763, - "length": 28, - "value": "\"The index is out of range.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "StringLiteral", - "offset": 29236, - "length": 29, - "value": "\"There are no message cells!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 31575, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 31645, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 31846, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32009, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32181, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32297, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32412, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32424, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 32512, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32649, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32872, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32884, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 32968, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 33409, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 33421, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 33456, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "StringLiteral", - "offset": 33857, - "length": 46, - "value": "\"New messages inserted : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "StringLiteral", - "offset": 33902, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 34016, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 34352, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 34730, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 34861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 34994, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35158, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35355, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35545, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35672, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37101, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37238, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37285, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37294, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 37597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 37867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 37984, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 38144, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 38206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 38458, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 39443, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 39544, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 40528, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 40669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 40716, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 40725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 40776, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 41028, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 41298, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 41415, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 41575, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 41637, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 41889, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 42868, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 42969, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 43443, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 43492, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 44266, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 44315, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "IntegerLiteral", - "offset": 45035, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 45084, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", - "kind": "BooleanLiteral", - "offset": 45948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 418, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 732, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 1381, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 1567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 1614, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 1758, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 2357, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 2391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 2545, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 2857, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 3278, - "length": 3, - "value": "6.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 3362, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4146, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4176, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4202, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4229, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4618, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4914, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4922, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 4993, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 5069, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 5174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 5275, - "length": 4, - "value": "-0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 5305, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "FloatLiteral", - "offset": 5359, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 5709, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 6056, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 6217, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 8070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 8122, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "StringLiteral", - "offset": 8390, - "length": 30, - "value": "\" \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "StringLiteral", - "offset": 8419, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "StringLiteral", - "offset": 8423, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 8504, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "StringLiteral", - "offset": 8563, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 8979, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9310, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9355, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9395, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9436, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9553, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 9743, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "StringLiteral", - "offset": 9891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 10310, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 10391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "BooleanLiteral", - "offset": 10525, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", - "kind": "IntegerLiteral", - "offset": 10713, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUnknownMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 519, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUnknownMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 681, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUnknownMessageCell.swift", - "kind": "StringLiteral", - "offset": 972, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUnknownMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1291, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationEmptyView.swift", - "kind": "FloatLiteral", - "offset": 417, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNotificationEmptyView.swift", - "kind": "FloatLiteral", - "offset": 572, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/InviteUser\/SBUInviteUserModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 3146, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/InviteUser\/SBUInviteUserModule.Header.swift", - "kind": "StringLiteral", - "offset": 4280, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/InviteUser\/SBUInviteUserModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 5259, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 558, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 879, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1103, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1497, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1596, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1631, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1792, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2249, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2439, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2481, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3565, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3589, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3705, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3719, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3728, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3739, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3838, - "length": 3, - "value": "751" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4916, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 5993, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 6286, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 6738, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 6860, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 7706, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 8080, - "length": 34, - "value": "\"Failed state image configuration\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 8604, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 8663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 8700, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "FloatLiteral", - "offset": 8750, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 9769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 9816, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 9867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 10382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 10429, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 10480, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1715, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "Array", - "offset": 2111, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2721, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4388, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4522, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4694, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4885, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5081, - "length": 67, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5127, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5147, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5304, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5349, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5369, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5630, - "length": 67, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5676, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5696, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5833, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 5853, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6024, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6254, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6326, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6698, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7236, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 8409, - "length": 26, - "value": "\"[Request] Next user List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 8529, - "length": 50, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 8544, - "length": 10, - "value": "\" customized users have been added.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8658, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8716, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8988, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9046, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9150, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10513, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10554, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10612, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 10643, - "length": 31, - "value": "\"All members have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10923, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10985, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 11248, - "length": 37, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 11276, - "length": 7, - "value": "\" members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11422, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12087, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12128, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12186, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 12217, - "length": 33, - "value": "\"All operators have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12503, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12565, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 12832, - "length": 41, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 12862, - "length": 9, - "value": "\" operators\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13012, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13746, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13787, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 13876, - "length": 37, - "value": "\"All muted members have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14167, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14229, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 14492, - "length": 37, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 14520, - "length": 7, - "value": "\" members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14666, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15424, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15465, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15523, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 15554, - "length": 42, - "value": "\"All muted participants have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15892, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15954, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 16217, - "length": 37, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 16245, - "length": 7, - "value": "\" members\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17090, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17131, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 36, - "value": "\"All banned users have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17532, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17594, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 17853, - "length": 33, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 17879, - "length": 5, - "value": "\" users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18021, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18752, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18793, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18851, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 18882, - "length": 36, - "value": "\"All participants have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19214, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19276, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 19549, - "length": 47, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 19582, - "length": 12, - "value": "\" participants\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 20115, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 20206, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20243, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20455, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20737, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21018, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21137, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21225, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21362, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21489, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21590, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21684, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "Array", - "offset": 22069, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22408, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 22434, - "length": 36, - "value": "\"[Request] Register user: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 22469, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22873, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 22899, - "length": 42, - "value": "\"[Request] Unregister operator: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 22940, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 23349, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23539, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 23608, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23980, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24211, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24600, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 24702, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24937, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 25038, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25411, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25687, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", - "kind": "StringLiteral", - "offset": 1628, - "length": 20, - "value": "\"SendbirdUIKit.SBUUserListViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 1237, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 1333, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 1522, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 1733, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 1942, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2152, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 2553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2613, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2631, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 2759, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3517, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3591, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4039, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4053, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4063, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4075, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4322, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4361, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4785, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 5020, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "FloatLiteral", - "offset": 5031, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 5102, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "FloatLiteral", - "offset": 5141, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6233, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "StringLiteral", - "offset": 6279, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 7353, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUToastManager.swift", - "kind": "StringLiteral", - "offset": 384, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUToastManager.swift", - "kind": "BooleanLiteral", - "offset": 1141, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUToastManager.swift", - "kind": "FloatLiteral", - "offset": 1214, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUToastManager.swift", - "kind": "BooleanLiteral", - "offset": 1265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 930, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1129, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 1371, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2418, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2460, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "FloatLiteral", - "offset": 3504, - "length": 4, - "value": "12.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3605, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3616, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 3628, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "BooleanLiteral", - "offset": 4236, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "BooleanLiteral", - "offset": 4455, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "BooleanLiteral", - "offset": 5020, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "BooleanLiteral", - "offset": 5078, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 5144, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "StringLiteral", - "offset": 5326, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 5848, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 6145, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 6157, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", - "kind": "IntegerLiteral", - "offset": 6279, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Sequence+SBUIKit.swift", - "kind": "Dictionary", - "offset": 318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Sequence+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 368, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SBUViewModelDelegate.swift", - "kind": "BooleanLiteral", - "offset": 687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "StringLiteral", - "offset": 1080, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "BooleanLiteral", - "offset": 2145, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2749, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2762, - "length": 2, - "value": "-0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2771, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2898, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2977, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", - "kind": "StringLiteral", - "offset": 484, - "length": 25, - "value": "\"SendbirdUIKit.SBUMessageThreadTitleView\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 1417, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 2017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2333, - "length": 27, - "value": "\"Cannot use `init(coder:)`\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 2647, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 3238, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 3793, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4727, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5031, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5250, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 5617, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 5667, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6726, - "length": 45, - "value": "\"Unread message count: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 6770, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 7056, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8863, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 8959, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10774, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10800, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10975, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 12057, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 12090, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 12093, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12822, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12903, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13032, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13123, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13135, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13225, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13289, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13334, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13840, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 14940, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15703, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15774, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15832, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 17078, - "length": 63, - "value": "\"Fetched : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 17111, - "length": 1, - "value": "\", keepScroll : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 17140, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 17284, - "length": 30, - "value": "\"Fetched empty notifications.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17571, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "Array", - "offset": 18539, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 18780, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21811, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22104, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22208, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22622, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23155, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23310, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23447, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23518, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23530, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23679, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "Array", - "offset": 24496, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 24721, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 24939, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 25459, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 40, - "value": "\"SendbirdUIKit.SBUFeedNotificationChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "Array", - "offset": 8215, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8429, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 8485, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10054, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10159, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10215, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 10424, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10935, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11217, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11243, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11267, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11411, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11567, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11683, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 15768, - "length": 21, - "value": "\"Channel must exist!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 15956, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 16262, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18246, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18445, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19202, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19343, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19634, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 20062, - "length": 28, - "value": "\"The index is out of range.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 20563, - "length": 34, - "value": "\"There are no notification cells!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 22164, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 22981, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23173, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23310, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23449, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24544, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24556, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24591, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24713, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 25295, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 25376, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "Array", - "offset": 665, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "Array", - "offset": 854, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "Array", - "offset": 1042, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "Array", - "offset": 1237, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "Array", - "offset": 1303, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1642, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 622, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 1067, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 1752, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5146, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5194, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5331, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5455, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5480, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5500, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5632, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5657, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5677, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5700, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5788, - "length": 2, - "value": "80" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5905, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 5987, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 6071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 6145, - "length": 2, - "value": "80" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 6215, - "length": 2, - "value": "80" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 6284, - "length": 2, - "value": "80" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "BooleanLiteral", - "offset": 6522, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "BooleanLiteral", - "offset": 6658, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "BooleanLiteral", - "offset": 6706, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "BooleanLiteral", - "offset": 6773, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 7389, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 9108, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "IntegerLiteral", - "offset": 9469, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", - "kind": "StringLiteral", - "offset": 1160, - "length": 28, - "value": "\"SendbirdUIKit.SBUCreateChannelTypeSelector\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 439, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 452, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 3077, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 3146, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 7312, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 7381, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 12103, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 12172, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 15654, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 15723, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 17093, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 17162, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 18598, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 18667, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 22053, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 22122, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 26368, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 26437, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 31239, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 31308, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 34792, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 34861, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 36202, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 36271, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 37678, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 37747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 39431, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 39500, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 41117, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 41186, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 41824, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 41870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 42013, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "Array", - "offset": 42082, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 42705, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "Array", - "offset": 1246, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "Array", - "offset": 1334, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "StringLiteral", - "offset": 1810, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 2699, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 2709, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 2717, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 2728, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 3584, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 3634, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 3872, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 3979, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 4222, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 4272, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 4402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "StringLiteral", - "offset": 4681, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "StringLiteral", - "offset": 4714, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "StringLiteral", - "offset": 4717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "BooleanLiteral", - "offset": 5742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBUBaseSelectUserViewController.swift", - "kind": "IntegerLiteral", - "offset": 6835, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 306, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 341, - "length": 9, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 306, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 341, - "length": 9, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 306, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 321, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 341, - "length": 9, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 577, - "length": 13, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 600, - "length": 7, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 6, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 633, - "length": 5, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1108, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1144, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1182, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1214, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1381, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 577, - "length": 13, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 600, - "length": 7, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 6, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 633, - "length": 5, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 577, - "length": 13, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 600, - "length": 7, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 6, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 633, - "length": 5, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1677, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1677, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 1677, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2079, - "length": 12, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2101, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2122, - "length": 13, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2145, - "length": 17, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2241, - "length": 13, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "BooleanLiteral", - "offset": 2706, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2079, - "length": 12, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2101, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2122, - "length": 13, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2145, - "length": 17, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2079, - "length": 12, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2101, - "length": 11, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2122, - "length": 13, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2145, - "length": 17, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 2241, - "length": 13, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4024, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4060, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4075, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4178, - "length": 14, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4260, - "length": 12, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4341, - "length": 13, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4024, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4060, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4075, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4024, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4060, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4075, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4091, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4178, - "length": 14, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4260, - "length": 12, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4341, - "length": 13, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4530, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4545, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4530, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4545, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4530, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4545, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4770, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4770, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4770, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4901, - "length": 10, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4921, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4941, - "length": 15, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4966, - "length": 9, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4985, - "length": 14, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5009, - "length": 19, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5038, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5061, - "length": 15, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5086, - "length": 5, - "value": "9" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5172, - "length": 15, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "BooleanLiteral", - "offset": 5265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "BooleanLiteral", - "offset": 5294, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4901, - "length": 10, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4921, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4941, - "length": 15, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4966, - "length": 9, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4985, - "length": 14, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5009, - "length": 19, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5038, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5061, - "length": 15, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5086, - "length": 5, - "value": "9" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4901, - "length": 10, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4921, - "length": 10, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4941, - "length": 15, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4966, - "length": 9, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 4985, - "length": 14, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5009, - "length": 19, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5038, - "length": 13, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5061, - "length": 15, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5086, - "length": 5, - "value": "9" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5172, - "length": 15, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5452, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 8, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5504, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5452, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 8, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5504, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5646, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5646, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5783, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5798, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5783, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5798, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5959, - "length": 3, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5972, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5988, - "length": 6, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5959, - "length": 3, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5972, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 5988, - "length": 6, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6234, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6249, - "length": 5, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6264, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6279, - "length": 3, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6292, - "length": 3, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6234, - "length": 5, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6249, - "length": 5, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6264, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6279, - "length": 3, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6292, - "length": 3, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6485, - "length": 9, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6532, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6576, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6655, - "length": 11, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6743, - "length": 15, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6485, - "length": 9, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6532, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 6576, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7038, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7052, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7038, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7052, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7547, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7547, - "length": 6, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7611, - "length": 10, - "value": "0b00000000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7641, - "length": 10, - "value": "0b00000001" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7671, - "length": 10, - "value": "0b00000010" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7701, - "length": 10, - "value": "0b00000100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7731, - "length": 10, - "value": "0b00000111" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7611, - "length": 10, - "value": "0b00000000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7641, - "length": 10, - "value": "0b00000001" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7671, - "length": 10, - "value": "0b00000010" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7701, - "length": 10, - "value": "0b00000100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7731, - "length": 10, - "value": "0b00000111" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7866, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7880, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7866, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7880, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7866, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "IntegerLiteral", - "offset": 7880, - "length": 4, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUEnums.swift", - "kind": "StringLiteral", - "offset": 8955, - "length": 49, - "value": "\"Data could not be decoded as `String` or `Int`.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 1452, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2129, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2369, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 2618, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 4079, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 4341, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 4418, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7373, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7415, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7452, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7494, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 7572, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7665, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7679, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7689, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7741, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7753, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7804, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 7816, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8025, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8104, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8218, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8320, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8333, - "length": 2, - "value": "-8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8426, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8546, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8585, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8677, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8691, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8801, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8814, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8825, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8910, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 8950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 9062, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 9329, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 9885, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 10055, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 10109, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 10191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 10403, - "length": 3, - "value": "160" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 10532, - "length": 3, - "value": "240" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 10833, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 11002, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 11229, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 11341, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 11489, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 11494, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 11567, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 11745, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 11819, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 11888, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 12073, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 12078, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 12145, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 12222, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 12411, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 12416, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 12491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 13631, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 14266, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "StringLiteral", - "offset": 14389, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 14460, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "StringLiteral", - "offset": 14496, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 14941, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 14953, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 15807, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 16000, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 16642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 17102, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 17763, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 18267, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "IntegerLiteral", - "offset": 18768, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 18898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", - "kind": "BooleanLiteral", - "offset": 18992, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 657, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "FloatLiteral", - "offset": 1226, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 1774, - "length": 31, - "value": "\"[Request] Create open channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2022, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2146, - "length": 143, - "value": "\"[Failed] Create open channel request:\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2265, - "length": 421, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2407, - "length": 62, - "value": "\"[Succeed] Create open channel: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2468, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", - "kind": "IntegerLiteral", - "offset": 517, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", - "kind": "IntegerLiteral", - "offset": 528, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", - "kind": "IntegerLiteral", - "offset": 538, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 872, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "StringLiteral", - "offset": 1616, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "StringLiteral", - "offset": 1738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "StringLiteral", - "offset": 2098, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "BooleanLiteral", - "offset": 2294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "BooleanLiteral", - "offset": 2327, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 3001, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 3323, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "BooleanLiteral", - "offset": 3364, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 3959, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 4359, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 4869, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 5150, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 5249, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "BooleanLiteral", - "offset": 5284, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7246, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7259, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7267, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7353, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "IntegerLiteral", - "offset": 7365, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", - "kind": "BooleanLiteral", - "offset": 8699, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 672, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 816, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 873, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 881, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 2130, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2286, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 2341, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 2349, - "length": 4, - "value": "-1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2457, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2463, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 3659, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 3732, - "length": 15, - "value": "\"No image data\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 3925, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 3931, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 3941, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 3952, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 4424, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 5956, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 5960, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6165, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 6212, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 6218, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6548, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7079, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7319, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7325, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7333, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7492, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7529, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 7847, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 8361, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 8688, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9169, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9580, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9870, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9878, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 9894, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9924, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9949, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 9983, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 10203, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 10514, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 10789, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 10877, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "Array", - "offset": 10981, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 10993, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 11103, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 11107, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", - "kind": "FloatLiteral", - "offset": 11373, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 436, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 473, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 637, - "length": 2, - "value": "50" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1310, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1929, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2584, - "length": 2, - "value": "-6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3238, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3920, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4159, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4258, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4293, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5237, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5278, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5326, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5372, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7054, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7138, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7256, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7267, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7279, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7433, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7437, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 7442, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 9736, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 10744, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 10899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "StringLiteral", - "offset": 11627, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 12222, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 12526, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 12993, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 13133, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 13201, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 13359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 14064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 14081, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16318, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16791, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16831, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 16985, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 17088, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 17133, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 19400, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 514, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "BooleanLiteral", - "offset": 548, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 693, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 1288, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 1417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 1460, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 1469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "IntegerLiteral", - "offset": 1516, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", - "kind": "StringLiteral", - "offset": 331, - "length": 16, - "value": "\"SendbirdUIKit.SBUVoiceFileInfo\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3302, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3358, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "FloatLiteral", - "offset": 3532, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3586, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "StringLiteral", - "offset": 3830, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3976, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3986, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4005, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7050, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1607, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2318, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2408, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2463, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3019, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3064, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3084, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3805, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3889, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3934, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3954, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4891, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5018, - "length": 47, - "value": "\"[Request] Load channel: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5064, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5364, - "length": 62, - "value": "\"[Failed] Load channel request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5425, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5497, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5909, - "length": 63, - "value": "\"[Failed] Enter channel request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5971, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6231, - "length": 69, - "value": "\"[Succeed] Load channel request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6299, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "Array", - "offset": 6566, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6714, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7128, - "length": 62, - "value": "\"[Failed] Load channel request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7482, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7573, - "length": 35, - "value": "\"[Succeed] Refresh channel request\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8255, - "length": 187, - "value": "\"loadInitialMessages,\nstartingPoint : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8356, - "length": 1, - "value": "\",\ninitialMessages : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8426, - "length": 9163, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9455, - "length": 30, - "value": "\"Prev message already loading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9545, - "length": 69, - "value": "\"[Request] Prev message list from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9613, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 9753, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 9804, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10481, - "length": 40, - "value": "\"Prev message list request is not valid\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10597, - "length": 52, - "value": "\"[Prev message response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10639, - "length": 8, - "value": "\" messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10948, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 11323, - "length": 30, - "value": "\"Next message already loading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 11413, - "length": 65, - "value": "\"[Request] Next message list from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 11477, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 11632, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 11670, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11773, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 12080, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12267, - "length": 40, - "value": "\"Next message list request is not valid\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12802, - "length": 52, - "value": "\"[Next message Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12844, - "length": 8, - "value": "\" messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13075, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13178, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13575, - "length": 69, - "value": "\"[Request] Both message list from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13643, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13905, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14186, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14258, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14324, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14373, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14449, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14519, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14717, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14761, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14814, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 14904, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 15025, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15123, - "length": 111, - "value": "\"Fetch from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15157, - "length": 5, - "value": "\" limit: prev = \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 1, - "value": "\", next = \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15233, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15625, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16590, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16749, - "length": 43, - "value": "\"Initial message list request is not valid\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16846, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 52, - "value": "\"[Both message response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16953, - "length": 8, - "value": "\" messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 17296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17599, - "length": 276, - "value": "\"[Initial message response] Prev count : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17718, - "length": 1, - "value": "\",\nprevLimit : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17796, - "length": 1, - "value": "\",\nhasPrev : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17859, - "length": 28, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17897, - "length": 268, - "value": "\"[Initial message response] Next count : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18016, - "length": 1, - "value": "\",\nnextLimit : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 1, - "value": "\",\nhasNext : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18149, - "length": 6413, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18196, - "length": 119, - "value": "\"[Initial message response] First : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18269, - "length": 1, - "value": "\", Last : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18314, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18840, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18924, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18969, - "length": 76, - "value": "\"[Failed] Resend failed user message request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19044, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19370, - "length": 62, - "value": "\"[Succeed] Resend failed file message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19431, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19674, - "length": 139, - "value": "\"hasNext : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19720, - "length": 1, - "value": "\". first : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19767, - "length": 1, - "value": "\", last : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 19812, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 19907, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20289, - "length": 115, - "value": "\"newTimestamp : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20320, - "length": 1, - "value": "\", lastUpdatedTimestamp : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20373, - "length": 1, - "value": "\", currentTime : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20403, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20631, - "length": 21, - "value": "\"set to \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20897, - "length": 139, - "value": "\"reset timestamp to : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20947, - "length": 1, - "value": "\", startingPoint : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21006, - "length": 11, - "value": "\" currentTime : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21035, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21365, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22275, - "length": 42, - "value": "\"[Request] Message change logs with token\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22540, - "length": 59, - "value": "\"[Request] Message change logs with last updated timestamp\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23094, - "length": 76, - "value": "\"[Request] Changelog added message list from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23169, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 23327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23733, - "length": 51, - "value": "\"Changelog added message list request is not valid\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 55, - "value": "\"[Changelog added response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23944, - "length": 8, - "value": "\" messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24572, - "length": 123, - "value": "\"[Failed] Message change logs request:\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24675, - "length": 181, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24806, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24870, - "length": 209, - "value": "\"[Response]\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24926, - "length": 21, - "value": "\"%d updated messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 24975, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24978, - "length": 1, - "value": "\",\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25009, - "length": 21, - "value": "\"%d deleted messages\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 25060, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25063, - "length": 5063, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25398, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25996, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26708, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27009, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27556, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27826, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27926, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27961, - "length": 95, - "value": "\"Loaded added messages : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28008, - "length": 1, - "value": "\", hasNext : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28055, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 28675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28785, - "length": 67, - "value": "\"[Failed] Send user message request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 29182, - "length": 57, - "value": "\"[Succeed] Send user message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 29238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 29316, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 30021, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30136, - "length": 133, - "value": "\"[Failed] Send file message request:\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30245, - "length": 8763, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30616, - "length": 57, - "value": "\"[Succeed] Send file message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30672, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 30763, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 31180, - "length": 41, - "value": "\"[Failed] Message list request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 31220, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31256, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31348, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 31437, - "length": 29, - "value": "\"Message list request is nil\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31501, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31526, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31566, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31926, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 23, - "value": "\"SendbirdUIKit.SBUOpenChannelViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 32797, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 32831, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 32861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 33238, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 33557, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 33793, - "length": 32, - "value": "\"Did update message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 33824, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 33894, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 34124, - "length": 35, - "value": "\"Message was deleted: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 34158, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 34232, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 34523, - "length": 55, - "value": "\"Channel was changed, ChannelURL:\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 34577, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 35016, - "length": 54, - "value": "\"Channel was frozen, ChannelURL:\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 35069, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 35517, - "length": 56, - "value": "\"Channel was unfrozen, ChannelURL:\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 35572, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 36050, - "length": 16, - "value": "\"You are muted.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 36538, - "length": 18, - "value": "\"You are unmuted.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 37401, - "length": 17, - "value": "\"You are banned.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Unavailable.swift", - "kind": "Dictionary", - "offset": 1883, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Unavailable.swift", - "kind": "Dictionary", - "offset": 2017, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Unavailable.swift", - "kind": "Dictionary", - "offset": 2156, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Unavailable.swift", - "kind": "Dictionary", - "offset": 2316, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Unavailable.swift", - "kind": "Dictionary", - "offset": 2466, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 292, - "length": 13, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 14, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 339, - "length": 10, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 359, - "length": 8, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 292, - "length": 13, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 315, - "length": 14, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 339, - "length": 10, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 359, - "length": 8, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 525, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 544, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 559, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 575, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 662, - "length": 14, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 744, - "length": 12, - "value": "7" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 825, - "length": 13, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 7, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 525, - "length": 9, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 544, - "length": 5, - "value": "3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 559, - "length": 6, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 575, - "length": 12, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "Array", - "offset": 4207, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "StringLiteral", - "offset": 4670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 6139, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 6195, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "FloatLiteral", - "offset": 6428, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6482, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6794, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6804, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6823, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10491, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "StringLiteral", - "offset": 10754, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "StringLiteral", - "offset": 12871, - "length": 32, - "value": "\"[Request] Retry load user list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 13313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/InviteUser\/SBUInviteUserModule.List.swift", - "kind": "StringLiteral", - "offset": 2418, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "IntegerLiteral", - "offset": 602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 629, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "IntegerLiteral", - "offset": 1503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "IntegerLiteral", - "offset": 1511, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "IntegerLiteral", - "offset": 1522, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "IntegerLiteral", - "offset": 1560, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 1775, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 1916, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 2124, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", - "kind": "BooleanLiteral", - "offset": 2852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Moderations\/SBUModerationsViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 3183, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 285, - "length": 31, - "value": "\"LOCAL_CACHING_EMOJI_CONTAINER\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 851, - "length": 39, - "value": "\"[Failed] Emoji Categories: load emoji\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 911, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 1005, - "length": 53, - "value": "\"[Failed] Emoji Categories: enableReactions is false\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 1079, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 1197, - "length": 46, - "value": "\"[Failed] Emoji Categories: Category is empty\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 1506, - "length": 33, - "value": "\"[Failed] Emoji List: load emoji\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 1560, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 1654, - "length": 47, - "value": "\"[Failed] Emoji List: enableReactions is false\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 1722, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 1785, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 1862, - "length": 42, - "value": "\"[Failed] Emoji List: emoji list is empty\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 2207, - "length": 46, - "value": "\"[Failed] Emojis with category id: load emoji\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 2274, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 2368, - "length": 60, - "value": "\"[Failed] Emojis with category id: enableReactions is false\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 2449, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 2568, - "length": 54, - "value": "\"[Warning] Emojis with category id: Category is empty\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 2643, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 2775, - "length": 58, - "value": "\"[Warning] Emojis with category id: Can not find category\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "Array", - "offset": 2854, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "BooleanLiteral", - "offset": 3081, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 3684, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 3814, - "length": 27, - "value": "\"[Request] Load all emojis\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 4341, - "length": 38, - "value": "\"[Succeed] Load all emojis from cache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 4499, - "length": 57, - "value": "\"[Failed] Load all emojis: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 4555, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 4819, - "length": 38, - "value": "\"[Succeed] Load all emojis from cache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 4977, - "length": 53, - "value": "\"[Failed] Load all emojis: EmojiContainer is not set\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", - "kind": "StringLiteral", - "offset": 5172, - "length": 27, - "value": "\"[Succeed] Load all emojis\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 2279, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "Array", - "offset": 2356, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 2580, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 2636, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "FloatLiteral", - "offset": 2876, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 2930, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3356, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3364, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3437, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3518, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3528, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3536, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 3547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5140, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6113, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6410, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 608, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 1074, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 1824, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 2191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 2565, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 2627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUModerationCell.swift", - "kind": "BooleanLiteral", - "offset": 2644, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 1357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "Array", - "offset": 1759, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "Array", - "offset": 1892, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "Array", - "offset": 2122, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "Array", - "offset": 2297, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 2361, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 2404, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 2846, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 2962, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 3407, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "FloatLiteral", - "offset": 3632, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "FloatLiteral", - "offset": 3859, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4093, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4350, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 6837, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 7013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 7285, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 7380, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 9900, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 10876, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 11800, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 11905, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12106, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 12344, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12784, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 12952, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 13388, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 13598, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 14254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 14458, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 14842, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 14953, - "length": 2, - "value": "50" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15559, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15772, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 15913, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16107, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16380, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16574, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16767, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16977, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 16987, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17074, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 17253, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 17483, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17789, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17906, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 18897, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 19821, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19964, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20054, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20286, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20363, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20603, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21043, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21211, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 21647, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21857, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 21933, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22456, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22591, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22790, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23372, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23514, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23650, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23863, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 25929, - "length": 30, - "value": "\"listComponent is not set up.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 27372, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 27483, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 28509, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 28513, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 28566, - "length": 37, - "value": "\"The ratio must be in range of 0...1\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 28740, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 28745, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 29995, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 30245, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 30302, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 30655, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 31288, - "length": 62, - "value": "\"[Failed] Exit channel request: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 31349, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 31570, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 31639, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 31705, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 32070, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 32492, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 34671, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 35789, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 28, - "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 28, - "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 28, - "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1622, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "Array", - "offset": 1934, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "Array", - "offset": 2009, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2218, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2264, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2767, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2772, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2909, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3442, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "Array", - "offset": 3541, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3581, - "length": 21, - "value": "\"[Request] User List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3645, - "length": 26, - "value": "\"[Request] Next user List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3785, - "length": 50, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3800, - "length": 10, - "value": "\" customized users have been added.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3937, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4095, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4276, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4334, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4492, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4897, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5000, - "length": 29, - "value": "\"All users have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5274, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5408, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5723, - "length": 33, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5749, - "length": 5, - "value": "\" users\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5990, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 6334, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6425, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 6548, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6822, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7047, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7335, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7364, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8351, - "length": 119, - "value": "\"[Request] Create channel with users,\nUsers: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8454, - "length": 351, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8520, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8679, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8815, - "length": 138, - "value": "\"[Failed] Create channel request:\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8929, - "length": 877, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9083, - "length": 57, - "value": "\"[Succeed] Create channel: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9136, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9139, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9644, - "length": 24, - "value": "\"Selected user: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9667, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 258, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "BooleanLiteral", - "offset": 487, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "StringLiteral", - "offset": 600, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 707, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 729, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "StringLiteral", - "offset": 1066, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "StringLiteral", - "offset": 1220, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1614, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1624, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1632, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 2048, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 2148, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", - "kind": "IntegerLiteral", - "offset": 2209, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UITextField+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 412, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1506, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1597, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2316, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2506, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2632, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3008, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUBaseChannelSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1338, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 1588, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "FloatLiteral", - "offset": 2111, - "length": 3, - "value": "4.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 3129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 3327, - "length": 2, - "value": "80" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 3364, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 3408, - "length": 2, - "value": "64" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 3420, - "length": 2, - "value": "68" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 4063, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 4907, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 5391, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 5426, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6656, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6664, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6675, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6791, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6903, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6922, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 6998, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 7011, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 7022, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 7124, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 7137, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 7373, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 7450, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 7530, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 7605, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 7682, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 7830, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8214, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8325, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8405, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8515, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8589, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8778, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 8912, - "length": 3, - "value": "-24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9045, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9179, - "length": 3, - "value": "-24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9312, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9446, - "length": 3, - "value": "-24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9582, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9719, - "length": 3, - "value": "-24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9850, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 9982, - "length": 3, - "value": "-24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 10322, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 10467, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 10518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "FloatLiteral", - "offset": 10619, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 10659, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 10918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "IntegerLiteral", - "offset": 11067, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 11128, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 11180, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 11716, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 12093, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 12144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 12187, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 12222, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "FloatLiteral", - "offset": 12322, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 12684, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 12736, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 12778, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "StringLiteral", - "offset": 12813, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "FloatLiteral", - "offset": 12854, - "length": 3, - "value": "0.3" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 13054, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", - "kind": "BooleanLiteral", - "offset": 13110, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/ViewParams\/SBUQuoteMessageInputViewParams.swift", - "kind": "StringLiteral", - "offset": 1246, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 390, - "length": 21, - "value": "\"[Failed] Save image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 1028, - "length": 51, - "value": "\"[Failed] Save image: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 1078, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 1345, - "length": 24, - "value": "\"[Succeed] Image saved.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 1834, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 3279, - "length": 20, - "value": "\"[Failed] Save file\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 3813, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 4112, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 4210, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "StringLiteral", - "offset": 4317, - "length": 26, - "value": "\"[Succeed] File is saved.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 4707, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 4812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUDownloadManager.swift", - "kind": "BooleanLiteral", - "offset": 4935, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "FloatLiteral", - "offset": 1310, - "length": 4, - "value": "0.65" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1883, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2090, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3524, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 3603, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4260, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4022, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "BooleanLiteral", - "offset": 4078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "FloatLiteral", - "offset": 4252, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4306, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4710, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4720, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4728, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4739, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5409, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5836, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6264, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7960, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/NotificationSettings\/SBUGroupChannelPushSettingsModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8388, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUnknownMessageCell.swift", - "kind": "StringLiteral", - "offset": 852, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUnknownMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1271, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 748, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 1129, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1289, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 1661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2094, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2105, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2763, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2767, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 2827, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 3046, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 3514, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 363, - "length": 25, - "value": "\"com.sendbird.cache.file\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 488, - "length": 10, - "value": "\"template\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 532, - "length": 14, - "value": "\"user-profile\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 577, - "length": 10, - "value": "\"reaction\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 613, - "length": 5, - "value": "\"web\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 29, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 757, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 922, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 1203, - "length": 49, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 1235, - "length": 1, - "value": "\".queue.diskcache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 1937, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 3334, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 3726, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 4545, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 4577, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 4959, - "length": 39, - "value": "\"Could not remove cache path: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 4997, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 5297, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 5338, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 5429, - "length": 20, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 5447, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 12, - "value": "\"voice_temp\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "BooleanLiteral", - "offset": 6265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 6403, - "length": 59, - "value": "\"[Failed] Create directory : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 6461, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 7046, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 7078, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 7253, - "length": 51, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 7285, - "length": 1, - "value": "\".queue.memorycache\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "IntegerLiteral", - "offset": 7517, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "IntegerLiteral", - "offset": 7522, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "IntegerLiteral", - "offset": 7529, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "IntegerLiteral", - "offset": 7637, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", - "kind": "StringLiteral", - "offset": 8901, - "length": 7, - "value": "\"image\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1559, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1614, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "Array", - "offset": 1740, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3604, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3762, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 4875, - "length": 32, - "value": "\"All channels have been loaded.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4963, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4969, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5145, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5152, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5337, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 5435, - "length": 45, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 5468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 5470, - "length": 8, - "value": "\" channels\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 5658, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 6179, - "length": 60, - "value": "\"[Request] Leave channel, ChannelURL: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 6238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6274, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6280, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6426, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6433, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6606, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 6759, - "length": 68, - "value": "\"[Succeed] Leave channel request, ChannelURL: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 6826, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7280, - "length": 154, - "value": "\"[Request]\nChannel push status: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7358, - "length": 4, - "value": "\"on\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7365, - "length": 5, - "value": "\"off\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7371, - "length": 1, - "value": "\",\nChannelURL: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7418, - "length": 1577, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7460, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7466, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7637, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7644, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7829, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 7994, - "length": 66, - "value": "\"[Succeed] Channel push status, ChannelURL: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 8059, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1434, - "length": 28, - "value": "\"SendbirdUIKit.SBUGroupChannelListViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9005, - "length": 166, - "value": "\"source: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9055, - "length": 1, - "value": "\",\nfromEvent: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9100, - "length": 1, - "value": "\",\ndelete size : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9155, - "length": 411, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9329, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9576, - "length": 157, - "value": "\"source: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9626, - "length": 1, - "value": "\",\nfromEvent: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9671, - "length": 1, - "value": "\",\nchannel size : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9717, - "length": 404, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 10131, - "length": 157, - "value": "\"source: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 10181, - "length": 1, - "value": "\",\nfromEvent: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 10226, - "length": 1, - "value": "\",\nchannel size : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 10272, - "length": 788, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "Array", - "offset": 6782, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "Array", - "offset": 7012, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 8703, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 9036, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 9688, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 14312, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 14767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 14934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 15606, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 606, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 657, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 682, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", - "kind": "StringLiteral", - "offset": 200, - "length": 24, - "value": "\"SendbirdUIKit.SBUUserMessageCellParams\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 479, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 691, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 907, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 1185, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 1227, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 1447, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 1831, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 1888, - "length": 2, - "value": "26" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 2595, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 2750, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 3612, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 3954, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 4141, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 4289, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 4390, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 4495, - "length": 2, - "value": "-2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 4589, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 4829, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 4941, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 5061, - "length": 3, - "value": "-10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 5159, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 5493, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 5735, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 5848, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 5946, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 6111, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 6215, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 6330, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 6421, - "length": 2, - "value": "30" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 6516, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 6667, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "FloatLiteral", - "offset": 6940, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 7032, - "length": 3, - "value": "249" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "IntegerLiteral", - "offset": 7311, - "length": 3, - "value": "751" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "StringLiteral", - "offset": 8167, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 8567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 9063, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 9106, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 9232, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 9282, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "StringLiteral", - "offset": 9739, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 10189, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "BooleanLiteral", - "offset": 10723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", - "kind": "StringLiteral", - "offset": 11384, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", - "kind": "StringLiteral", - "offset": 712, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", - "kind": "IntegerLiteral", - "offset": 826, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", - "kind": "IntegerLiteral", - "offset": 961, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 1290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1014, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1376, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1416, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1634, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1670, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "IntegerLiteral", - "offset": 1801, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "BooleanLiteral", - "offset": 1824, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "IntegerLiteral", - "offset": 2006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "StringLiteral", - "offset": 2251, - "length": 23, - "value": "\"Failed to decode JSON\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "StringLiteral", - "offset": 2607, - "length": 33, - "value": "\"Failed to decode JSON: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfigManager.swift", - "kind": "StringLiteral", - "offset": 2639, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Data+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 312, - "length": 28, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Data+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 335, - "length": 1, - "value": "\".mov\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.Header.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4750, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/SBUBaseSelectUserModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4755, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1049, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 1138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "StringLiteral", - "offset": 1237, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1288, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1317, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "FloatLiteral", - "offset": 1359, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1684, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1775, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 1806, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1877, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 1944, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 2070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2341, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2380, - "length": 3, - "value": "136" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2532, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2552, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2575, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2705, - "length": 3, - "value": "-12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2731, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2843, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2856, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2894, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 2906, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 3331, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 3334, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 3747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 3799, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 4238, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 4277, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 4286, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 4361, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 5340, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 5452, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 5701, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "FloatLiteral", - "offset": 5854, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "IntegerLiteral", - "offset": 6008, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "FloatLiteral", - "offset": 6161, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 6476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", - "kind": "BooleanLiteral", - "offset": 6990, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/MessageSearch\/SBUMessageSearchViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 2815, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 1259, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 1936, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 2331, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 2577, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 2706, - "length": 27, - "value": "\"Cannot use `init(coder:)`\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 4001, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 7949, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 8807, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 10335, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 11337, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15522, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 15549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 16278, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 17500, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 18316, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 18598, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 19005, - "length": 6, - "value": "\"file\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19239, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19407, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19903, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 19984, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20113, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20125, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20204, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 20216, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 20668, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 21150, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 21183, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 21186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 22138, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22209, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22267, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 22875, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 23009, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 23619, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 24280, - "length": 58, - "value": "\"Fetched : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 24308, - "length": 1, - "value": "\", keepScroll : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 24337, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 24484, - "length": 25, - "value": "\"Fetched empty messages.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 24717, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 27281, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 27587, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 28131, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 28867, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 29347, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 29826, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 30968, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 31023, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 31141, - "length": 24, - "value": "\"This channel is frozen\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 31355, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 32482, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 33533, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 34369, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 34861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 34975, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 35098, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 35169, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 35181, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 35399, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "IntegerLiteral", - "offset": 35411, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 35675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 35749, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 36495, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 36721, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 36927, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 39910, - "length": 18, - "value": "[\"public.content\"]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 40129, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 40436, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 41229, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 41675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 41845, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 42418, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "Array", - "offset": 42678, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 43638, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 45805, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 46429, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 46755, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 47028, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 47733, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 48645, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 49150, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 52018, - "length": 50, - "value": "\"[Request] Delete message: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "StringLiteral", - "offset": 52067, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 52473, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 52538, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 57171, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", - "kind": "BooleanLiteral", - "offset": 57437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 6345, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 6527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 7319, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7348, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7565, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7575, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7586, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7597, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7632, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7666, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7841, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8187, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 8472, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8502, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8716, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9018, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9786, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 10478, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 10575, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 10668, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 10756, - "length": 2, - "value": "87" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 10866, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11370, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11622, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11844, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11882, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 12657, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 13083, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 13460, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 13811, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 14265, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 16072, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 16105, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 16135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 16306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 16404, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 17184, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 17265, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 18750, - "length": 60, - "value": "\"Message input view changed mode to \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 19801, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 19839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 20228, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 20265, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 20407, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 20454, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 20491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 23933, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 23962, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 23986, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 24013, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 24181, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 24497, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 24785, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 24863, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25218, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25301, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25515, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25527, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25877, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25889, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25970, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 25982, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26140, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26148, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26159, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26307, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26316, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26486, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26561, - "length": 2, - "value": "75" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26634, - "length": 2, - "value": "75" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26735, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26748, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26756, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 26767, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 30992, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31029, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 31137, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 31253, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31289, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31397, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31402, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31413, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 31627, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 31655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 31699, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 31741, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 31779, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 32000, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 32035, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 33346, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 33402, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 33444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 33612, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 33656, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 34369, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 36169, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "Array", - "offset": 36698, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 37700, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 37816, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 38115, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 38696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "StringLiteral", - "offset": 38955, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 39253, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 39347, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 39394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 39850, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 39970, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 39975, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 40200, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 40553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2347, - "length": 2, - "value": "56" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2445, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 2541, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3003, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3194, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3405, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3614, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 3812, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 4215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4293, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 4423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 4464, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 4512, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 4559, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 4606, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 5624, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 5780, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6205, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6219, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6229, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6241, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6488, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6527, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 6602, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 7233, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 7376, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 7427, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 7802, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "FloatLiteral", - "offset": 7813, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 7884, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "FloatLiteral", - "offset": 7923, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 9999, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "FloatLiteral", - "offset": 10052, - "length": 3, - "value": "6.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "FloatLiteral", - "offset": 10107, - "length": 3, - "value": "6.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 10175, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "StringLiteral", - "offset": 10221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 11013, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 11025, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 11385, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 11700, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 11853, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "StringLiteral", - "offset": 12208, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "StringLiteral", - "offset": 13022, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 13125, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 13168, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 13186, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 13190, - "length": 2, - "value": "99" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 13322, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 13341, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "StringLiteral", - "offset": 13387, - "length": 5, - "value": "\"99+\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "BooleanLiteral", - "offset": 13448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 13641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 14713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", - "kind": "IntegerLiteral", - "offset": 17547, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "Array", - "offset": 8258, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8472, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 8528, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10083, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10188, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 10244, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10329, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10335, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10463, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10469, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "FloatLiteral", - "offset": 10604, - "length": 4, - "value": "44.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 10658, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 11166, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11413, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11437, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11581, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11737, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 11862, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 15922, - "length": 21, - "value": "\"Channel must exist!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 16110, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18705, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 18881, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19084, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 19934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 20069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 20172, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 20600, - "length": 28, - "value": "\"The index is out of range.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 21010, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 21016, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 21178, - "length": 34, - "value": "\"There are no notification cells!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 22771, - "length": 35, - "value": "\"[Request] Retry load channel list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23520, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23536, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23691, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24594, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 24786, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24888, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 24923, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 25062, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 25254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 25511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26157, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26169, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26204, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26908, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "IntegerLiteral", - "offset": 2663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "BooleanLiteral", - "offset": 2728, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "BooleanLiteral", - "offset": 2786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "StringLiteral", - "offset": 3174, - "length": 37, - "value": "\"Did receive error: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "StringLiteral", - "offset": 3207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "StringLiteral", - "offset": 3210, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "IntegerLiteral", - "offset": 3592, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "BooleanLiteral", - "offset": 3674, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SBUBaseViewController.swift", - "kind": "BooleanLiteral", - "offset": 3774, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPermissionManager.swift", - "kind": "Dictionary", - "offset": 2371, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPermissionManager.swift", - "kind": "BooleanLiteral", - "offset": 8341, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUPermissionManager.swift", - "kind": "BooleanLiteral", - "offset": 8392, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 1222, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 2006, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 2782, - "length": 2, - "value": "55" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 2910, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 3100, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 3511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 3901, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "FloatLiteral", - "offset": 4621, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 4724, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 4746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 4766, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 4789, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 5136, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 7136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 7447, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "BooleanLiteral", - "offset": 7759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "StringLiteral", - "offset": 8365, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 8424, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 8461, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "FloatLiteral", - "offset": 8511, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "StringLiteral", - "offset": 10400, - "length": 20, - "value": "\"transform.rotation\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 10451, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "IntegerLiteral", - "offset": 10480, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "FloatLiteral", - "offset": 10522, - "length": 3, - "value": "1.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "StringLiteral", - "offset": 1463, - "length": 19, - "value": "\"SendbirdUIKit.SBUMessageStateView\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", - "kind": "StringLiteral", - "offset": 1463, - "length": 19, - "value": "\"SendbirdUIKit.SBUMessageStateView\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUFileMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 2518, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUFileMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3214, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUFileMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4045, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUFileMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5949, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Array+SBUIKit.swift", - "kind": "Array", - "offset": 2057, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Array+SBUIKit.swift", - "kind": "Array", - "offset": 2404, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Array+SBUIKit.swift", - "kind": "Array", - "offset": 2745, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 562, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "BooleanLiteral", - "offset": 851, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1984, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 1997, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2005, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2016, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2111, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2149, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2161, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", - "kind": "IntegerLiteral", - "offset": 2796, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/CreateChannel\/SBUCreateChannelViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 4143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 263, - "length": 11, - "value": "\"reactions\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 306, - "length": 15, - "value": "\"enable_og_tag\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 371, - "length": 33, - "value": "\"use_last_messege_on_super_group\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 439, - "length": 18, - "value": "\"use_last_seen_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 500, - "length": 26, - "value": "\"enable_message_threading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 580, - "length": 37, - "value": "\"allow_group_channel_create_from_sdk\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 671, - "length": 37, - "value": "\"allow_group_channel_invite_from_sdk\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 760, - "length": 35, - "value": "\"allow_operators_to_edit_operators\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 846, - "length": 34, - "value": "\"allow_operators_to_ban_operators\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 924, - "length": 27, - "value": "\"allow_super_group_channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1004, - "length": 36, - "value": "\"allow_group_channel_leave_from_sdk\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1094, - "length": 37, - "value": "\"allow_group_channel_update_from_sdk\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1197, - "length": 49, - "value": "\"allow_only_operator_sdk_to_update_group_channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1288, - "length": 25, - "value": "\"allow_broadcast_channel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1346, - "length": 19, - "value": "\"message_search_v3\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "StringLiteral", - "offset": 1438, - "length": 28, - "value": "\"allow_user_update_from_sdk\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUAvailable.swift", - "kind": "BooleanLiteral", - "offset": 4169, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 3263, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.Header.swift", - "kind": "StringLiteral", - "offset": 4433, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/RegisterOperator\/SBURegisterOperatorModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 5450, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "FloatLiteral", - "offset": 414, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 598, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 947, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 1189, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 1236, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "FloatLiteral", - "offset": 1972, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2538, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2580, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2618, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2658, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2698, - "length": 2, - "value": "31" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2922, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 2973, - "length": 2, - "value": "51" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3024, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3155, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3197, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "FloatLiteral", - "offset": 3238, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", - "kind": "FloatLiteral", - "offset": 3279, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 603, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", - "kind": "StringLiteral", - "offset": 203, - "length": 27, - "value": "\"SendbirdUIKit.SBUUnknownMessageCellParams\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 1094, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 1350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 1530, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 1587, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 1928, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 2227, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 2380, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 2790, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "FloatLiteral", - "offset": 5807, - "length": 4, - "value": "14.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "FloatLiteral", - "offset": 6240, - "length": 4, - "value": "12.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 7979, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 8087, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 8236, - "length": 3, - "value": "100" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 8544, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 8872, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 9020, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 9090, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 9325, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 9412, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 10059, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 10377, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 10491, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 10658, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 10873, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 10926, - "length": 6, - "value": "\"name\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 12, - "value": "\"created_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 11049, - "length": 12, - "value": "\"updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 11117, - "length": 13, - "value": "\"ui_template\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 11153, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 11202, - "length": 17, - "value": "\"color_variables\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 11242, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 11356, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 11548, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 11808, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 11869, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 12386, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 12569, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 12654, - "length": 14, - "value": "\"template_key\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 12737, - "length": 20, - "value": "\"template_variables\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 12780, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 12884, - "length": 36, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 12916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 12919, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 13497, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 13670, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 13818, - "length": 33, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 13847, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 13850, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 14109, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Dictionary", - "offset": 14167, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 14277, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 14318, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 14459, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 14510, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 14515, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 14519, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 14582, - "length": 7, - "value": "\"light\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 14627, - "length": 6, - "value": "\"dark\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 14671, - "length": 9, - "value": "\"default\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 14991, - "length": 5, - "value": "\"\\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 15004, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 15283, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "BooleanLiteral", - "offset": 15498, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 15808, - "length": 23, - "value": "\"\\{([^{}\\\"\\n]+)\\}\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 15854, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 16100, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 16141, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 16271, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 16486, - "length": 10, - "value": "\"{\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 16494, - "length": 1, - "value": "\"}\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 16560, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 17044, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 17115, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 17162, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 17167, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 17171, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 17222, - "length": 7, - "value": "\"light\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 17404, - "length": 6, - "value": "\"dark\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 17583, - "length": 9, - "value": "\"default\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 18033, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "IntegerLiteral", - "offset": 18086, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20355, - "length": 12, - "value": "\"created_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20381, - "length": 12, - "value": "\"updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20355, - "length": 12, - "value": "\"created_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20381, - "length": 12, - "value": "\"updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20625, - "length": 12, - "value": "\"updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20691, - "length": 12, - "value": "\"theme_mode\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20625, - "length": 12, - "value": "\"updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 20691, - "length": 12, - "value": "\"theme_mode\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 20858, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "Array", - "offset": 21003, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", - "kind": "StringLiteral", - "offset": 21069, - "length": 11, - "value": "\"templates\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Moderations\/SBUModerationsViewModel.Deprecated.swift", - "kind": "StringLiteral", - "offset": 683, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 466, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 949, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 961, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 1098, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 1112, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 1122, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "IntegerLiteral", - "offset": 1134, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", - "kind": "BooleanLiteral", - "offset": 1754, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 2260, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 2464, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 2506, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 2590, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "FloatLiteral", - "offset": 3479, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 3548, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4626, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4651, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4671, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4694, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4837, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4848, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 4887, - "length": 3, - "value": "134" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5025, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5035, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5075, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5185, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5255, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5337, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5470, - "length": 2, - "value": "-6" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5552, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5672, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5684, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5786, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5799, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5837, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5849, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5951, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5964, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6003, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6015, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6359, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6535, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6538, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6780, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 6783, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7266, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7269, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7399, - "length": 2, - "value": "34" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 7402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 7966, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8148, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8260, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8576, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "FloatLiteral", - "offset": 8584, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8744, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8752, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8757, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 8978, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "FloatLiteral", - "offset": 9131, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9285, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "FloatLiteral", - "offset": 9438, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 10006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 11407, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 11475, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 11522, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 12712, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 12752, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 12822, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 13042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 13266, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 13389, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 13491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 13528, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "BooleanLiteral", - "offset": 14518, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 14728, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 1185, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "Array", - "offset": 1294, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2493, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2538, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2558, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2735, - "length": 66, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2780, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2800, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3376, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3959, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3999, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4233, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4240, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4425, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 4523, - "length": 45, - "value": "\"[Response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4556, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 4558, - "length": 8, - "value": "\" channels\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4637, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "Array", - "offset": 6774, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "Array", - "offset": 8061, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1061, - "length": 27, - "value": "\"SendbirdUIKit.SBUOpenChannelListViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 8905, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9330, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9533, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9667, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9806, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 9976, - "length": 21, - "value": "\"Channel was deleted\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10066, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelList\/SBUChannelListViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 4243, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelList\/SBUChannelListViewController.Deprecated.swift", - "kind": "IntegerLiteral", - "offset": 4414, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelList\/SBUChannelListViewController.Deprecated.swift", - "kind": "StringLiteral", - "offset": 4579, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelList\/SBUChannelListViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 5103, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelList\/SBUChannelListViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 9057, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "Array", - "offset": 2278, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 2460, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 2588, - "length": 4, - "value": "56.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 2625, - "length": 4, - "value": "48.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 2660, - "length": 3, - "value": "8.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 2696, - "length": 4, - "value": "16.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 3744, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 4485, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "BooleanLiteral", - "offset": 4716, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 5778, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 5881, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 6203, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 6228, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 6372, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 6409, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 6461, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 6753, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 7108, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 7600, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 7650, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 7709, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 7772, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "BooleanLiteral", - "offset": 7954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "BooleanLiteral", - "offset": 8032, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 8999, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 9822, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 9908, - "length": 4, - "value": "24.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 10366, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 10893, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 10914, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "FloatLiteral", - "offset": 10979, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "Array", - "offset": 11324, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 11668, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 11680, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 12011, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 13346, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", - "kind": "IntegerLiteral", - "offset": 13358, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 249, - "length": 11, - "value": "\"SBUConfig\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 2361, - "length": 56, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 2393, - "length": 1, - "value": "\".queue.diskcache.config\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "IntegerLiteral", - "offset": 2490, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 2533, - "length": 23, - "value": "\"sbu_config_updated_at\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 2581, - "length": 19, - "value": "\"sbu_config_config\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 3266, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 3630, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 4927, - "length": 47, - "value": "\"Failed to save config to disk cache: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 4973, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 5590, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 5982, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 6577, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 6609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 7089, - "length": 33, - "value": "\"Could not remove file: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 7121, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 7588, - "length": 33, - "value": "\"Could not remove path: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 7620, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 7920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 7961, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 8052, - "length": 20, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 8070, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 8916, - "length": 69, - "value": "\"No last update time value file cached in the file path: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 8984, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "IntegerLiteral", - "offset": 9014, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "IntegerLiteral", - "offset": 9261, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 9422, - "length": 34, - "value": "\"No last update time value cached\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "IntegerLiteral", - "offset": 9485, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 10022, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 10031, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "BooleanLiteral", - "offset": 10101, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", - "kind": "StringLiteral", - "offset": 10183, - "length": 47, - "value": "\"Error writing to file: lastUpdatedAtKey value\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/NotificationSettings\/SBUGroupChannelPushSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1928, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/NotificationSettings\/SBUGroupChannelPushSettingsViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2122, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/NotificationSettings\/SBUGroupChannelPushSettingsViewModel.swift", - "kind": "StringLiteral", - "offset": 744, - "length": 36, - "value": "\"SendbirdUIKit.SBUGroupChannelPushSettingsViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 539, - "length": 1, - "value": "1" - }, + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 571, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", + "kind": "StringLiteral", + "offset": 421, "length": 2, - "value": "10" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileCommonContentView.swift", "kind": "IntegerLiteral", - "offset": 650, + "offset": 679, "length": 1, - "value": "1" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 726, + "offset": 14687, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 1029, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", - "kind": "IntegerLiteral", - "offset": 1060, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUUnderLineTextField.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "IntegerLiteral", - "offset": 1092, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "StringLiteral", - "offset": 648, - "length": 6, - "value": "\"spin\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "StringLiteral", - "offset": 709, - "length": 64, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "StringLiteral", - "offset": 741, - "length": 1, - "value": "\".animation.key.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "StringLiteral", - "offset": 772, + "offset": 14731, "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "StringLiteral", - "offset": 648, - "length": 6, - "value": "\"spin\"" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "IntegerLiteral", - "offset": 1781, - "length": 1, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", + "kind": "BooleanLiteral", + "offset": 14762, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "Array", - "offset": 1811, - "length": 20, - "value": "[0.5, 0.1, 0.2, 0.1]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", + "kind": "FloatLiteral", + "offset": 15162, + "length": 3, + "value": "0.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "IntegerLiteral", - "offset": 1957, + "offset": 15227, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "FloatLiteral", - "offset": 1963, - "length": 5, - "value": "-10.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "IntegerLiteral", - "offset": 2050, + "offset": 15238, "length": 1, - "value": "0" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "FloatLiteral", - "offset": 2186, + "offset": 15280, "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "IntegerLiteral", - "offset": 2260, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", - "kind": "IntegerLiteral", - "offset": 2265, - "length": 1, - "value": "0" + "value": "0.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "IntegerLiteral", - "offset": 2414, + "offset": 15322, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 4375, + "offset": 15363, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "Dictionary", - "offset": 5437, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 7148, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 7326, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7672, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7685, - "length": 2, - "value": "-8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7694, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7737, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7870, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 7882, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 8180, - "length": 3, - "value": "-16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "IntegerLiteral", - "offset": 8193, + "offset": 15586, "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 9515, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 12393, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 17873, - "length": 21, - "value": "\"Channel must exist!\"" + "offset": 15635, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 18061, + "offset": 16406, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 19678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 20359, + "offset": 18115, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 20606, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 20672, - "length": 1, - "value": "0" + "offset": 18155, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/SBUBaseChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 21702, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 21971, - "length": 1, - "value": "0" + "offset": 51413, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23056, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", + "kind": "StringLiteral", + "offset": 341, + "length": 11, + "value": "\"templates\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 23836, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", + "kind": "StringLiteral", + "offset": 440, + "length": 11, + "value": "\"templates\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 23990, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", + "kind": "StringLiteral", + "offset": 3545, + "length": 58, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", "kind": "StringLiteral", - "offset": 25884, - "length": 28, - "value": "\"The index is out of range.\"" + "offset": 3577, + "length": 1, + "value": "\".queue.diskcache.template\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", "kind": "IntegerLiteral", - "offset": 26241, + "offset": 3676, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 26247, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", "kind": "StringLiteral", - "offset": 26404, - "length": 29, - "value": "\"There are no message cells!\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 28770, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 28823, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 29005, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 29728, - "length": 5, - "value": "false" + "offset": 3715, + "length": 30, + "value": "\"sbu_template_list_updated_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Template.swift", "kind": "BooleanLiteral", - "offset": 29921, + "offset": 4664, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 29966, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 30111, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Common.swift", "kind": "BooleanLiteral", - "offset": 30238, + "offset": 517, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 31379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 31508, - "length": 1, - "value": "0" + "offset": 1301, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "IntegerLiteral", - "offset": 31551, + "offset": 488, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "IntegerLiteral", - "offset": 31560, + "offset": 557, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "IntegerLiteral", - "offset": 31607, + "offset": 648, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32363, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", + "kind": "FloatLiteral", + "offset": 700, + "length": 5, + "value": "380.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 32633, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", + "kind": "FloatLiteral", + "offset": 750, "length": 5, - "value": "false" + "value": "276.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 32750, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", + "kind": "FloatLiteral", + "offset": 810, + "length": 5, + "value": "294.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 32910, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", + "kind": "FloatLiteral", + "offset": 869, + "length": 5, + "value": "274.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "BooleanLiteral", - "offset": 32972, + "offset": 1114, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 33224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 34209, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "IntegerLiteral", - "offset": 34310, + "offset": 2681, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "IntegerLiteral", - "offset": 34784, + "offset": 2822, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", "kind": "BooleanLiteral", - "offset": 34833, + "offset": 2863, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 35363, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35412, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "IntegerLiteral", - "offset": 35888, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 35937, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/NotificationChannel\/SBUNotificationCell.swift", + "kind": "FloatLiteral", + "offset": 3039, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", - "kind": "BooleanLiteral", - "offset": 36557, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.List.swift", + "kind": "FloatLiteral", + "offset": 3208, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7836, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7849, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7857, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 7868, - "length": 1, - "value": "0" + "value": "76.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUGroupChannelSettingsViewModel.swift", "kind": "StringLiteral", - "offset": 8703, - "length": 105, - "value": "\"\"" + "offset": 703, + "length": 32, + "value": "\"SendbirdUIKit.SBUGroupChannelSettingsViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUHighlightMessageInfo.swift", "kind": "BooleanLiteral", - "offset": 8796, + "offset": 732, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 8803, - "length": 1, - "value": "\".jpg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 8840, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 9143, - "length": 24, - "value": "\"Failed to get mimeType\"" + "offset": 385, + "length": 21, + "value": "\"notificationSetting\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 9270, - "length": 11, - "value": "\"image\/gif\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 11320, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "Dictionary", - "offset": 11552, - "length": 3, - "value": "[]" + "offset": 494, + "length": 21, + "value": "\"notificationSetting\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 12386, - "length": 118, + "offset": 4601, + "length": 55, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 12479, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 12486, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 12503, + "offset": 4633, "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "Dictionary", - "offset": 13277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 13683, - "length": 118, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 13776, - "length": 5, - "value": "false" + "value": "\".queue.diskcache.theme\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 13783, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", + "kind": "IntegerLiteral", + "offset": 4729, "length": 1, - "value": "\".\"" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 13800, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 16475, - "length": 5, - "value": "false" + "offset": 4774, + "length": 45, + "value": "\"sbu_global_notification_settings_updated_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "StringLiteral", - "offset": 16653, - "length": 105, - "value": "\"\"" + "offset": 4847, + "length": 45, + "value": "\"sbu_global_notification_settings_theme_mode\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.NotificationSetting.swift", "kind": "BooleanLiteral", - "offset": 16746, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 16753, - "length": 1, - "value": "\".jpg\"" + "offset": 5799, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUAdminMessageCellParams.swift", "kind": "StringLiteral", - "offset": 16970, - "length": 12, - "value": "\"image\/jpeg\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 17968, - "length": 5, - "value": "false" + "offset": 201, + "length": 25, + "value": "\"SendbirdUIKit.SBUAdminMessageCellParams\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBURegisterOperatorViewModel.swift", "kind": "StringLiteral", - "offset": 18636, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 20459, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 20518, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21124, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 21484, - "length": 5, - "value": "false" + "offset": 614, + "length": 28, + "value": "\"SendbirdUIKit.SBURegisterOperatorViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Input.swift", "kind": "BooleanLiteral", - "offset": 22062, + "offset": 3060, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUDashboardConfig.swift", "kind": "IntegerLiteral", - "offset": 24204, + "offset": 440, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUInviteUserViewModel.swift", + "kind": "StringLiteral", + "offset": 567, + "length": 22, + "value": "\"SendbirdUIKit.SBUInviteUserViewModel\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", "kind": "IntegerLiteral", - "offset": 24433, + "offset": 494, "length": 2, "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 24598, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageDateView.swift", "kind": "BooleanLiteral", - "offset": 24684, + "offset": 526, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 24816, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", + "kind": "Array", + "offset": 572, "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25007, - "length": 3, - "value": "164" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25060, - "length": 3, - "value": "196" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 25194, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", + "kind": "Array", + "offset": 614, "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 25909, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 26029, - "length": 1, - "value": "0" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", "kind": "IntegerLiteral", - "offset": 26134, + "offset": 1161, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", "kind": "IntegerLiteral", - "offset": 26147, + "offset": 1170, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", "kind": "IntegerLiteral", - "offset": 26404, + "offset": 1181, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "IntegerLiteral", - "offset": 26473, - "length": 3, - "value": "196" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "Array", - "offset": 26892, - "length": 2, - "value": "[]" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", "kind": "IntegerLiteral", - "offset": 27405, + "offset": 1191, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUMessageReactionView.swift", "kind": "BooleanLiteral", - "offset": 27866, + "offset": 1374, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 28044, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.Header.swift", "kind": "BooleanLiteral", - "offset": 28315, + "offset": 5727, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 28752, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 29504, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "BooleanLiteral", - "offset": 30571, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", - "kind": "StringLiteral", - "offset": 31540, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.Input.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 33191, + "offset": 1011, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 243, - "length": 4, - "value": "5381" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 270, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 743, - "length": 46, - "value": "\"invalid regex: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "Array", - "offset": 810, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 892, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1076, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "Array", - "offset": 1215, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 1393, - "length": 54, - "value": "\"failed removing regex: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 1446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "Array", - "offset": 1625, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "Array", - "offset": 1744, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1773, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 2037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2220, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", "kind": "IntegerLiteral", - "offset": 2302, + "offset": 1119, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2319, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 2048, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 2545, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 4237, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 4664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 7729, + "offset": 1712, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUBaseMessageCellParams.swift", "kind": "IntegerLiteral", - "offset": 8533, + "offset": 1753, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 8583, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 8825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUGroupChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 8932, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBURegisterOperatorViewController.swift", - "kind": "StringLiteral", - "offset": 2001, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBURegisterOperatorViewController.swift", - "kind": "StringLiteral", - "offset": 2546, - "length": 2, - "value": "\"\"" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBURegisterOperatorViewController.swift", - "kind": "BooleanLiteral", - "offset": 3480, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/View\/SBUChannelSettingsChannelInfoView.swift", + "kind": "FloatLiteral", + "offset": 790, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBURegisterOperatorViewController.swift", - "kind": "StringLiteral", - "offset": 3530, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/SelectUser\/SBURegisterOperatorViewController.swift", - "kind": "StringLiteral", - "offset": 3926, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" + "value": "64.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/ChannelList\/SBUBaseChannelListModule.List.swift", "kind": "BooleanLiteral", - "offset": 458, + "offset": 4352, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 974, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1018, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1038, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1169, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1213, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1233, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 1426, - "length": 29, - "value": "\"[Request] Next channel List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/ChannelSettings\/ChannelSettingItem\/SBUChannelSettingItem.swift", "kind": "BooleanLiteral", - "offset": 1623, + "offset": 731, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/ChannelSettings\/ChannelSettingItem\/SBUChannelSettingItem.swift", "kind": "BooleanLiteral", - "offset": 1736, + "offset": 781, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", "kind": "BooleanLiteral", - "offset": 1800, + "offset": 756, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2056, - "length": 29, - "value": "\"[Request] Next channel List\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 295, - "length": 27, - "value": "\"SendbirdUIKit.SBUBaseChannelListViewModel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 2855, - "length": 26, - "value": "\"Did succeed reconnection\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 3001, - "length": 58, - "value": "\"[Failed] Update user info: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", - "kind": "StringLiteral", - "offset": 3058, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", "kind": "BooleanLiteral", - "offset": 3146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 1659, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 1719, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 1780, - "length": 2, - "value": "18" + "offset": 1439, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUEmptyView.swift", "kind": "IntegerLiteral", - "offset": 1835, + "offset": 1657, "length": 2, "value": "24" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 1895, - "length": 2, - "value": "32" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 1959, - "length": 2, - "value": "48" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2020, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2131, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2185, - "length": 2, - "value": "38" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2238, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2289, - "length": 2, - "value": "28" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2345, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2411, - "length": 2, - "value": "36" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2466, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2527, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2582, - "length": 2, - "value": "22" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "IntegerLiteral", - "offset": 2642, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "BooleanLiteral", - "offset": 3936, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", - "kind": "Array", - "offset": 10599, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/GroupChannel\/SBUGroupChannelListModule.Header.swift", - "kind": "StringLiteral", - "offset": 1681, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "BooleanLiteral", - "offset": 1893, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", "kind": "BooleanLiteral", - "offset": 1926, + "offset": 1492, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "IntegerLiteral", - "offset": 2330, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "IntegerLiteral", - "offset": 3263, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "IntegerLiteral", - "offset": 4898, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "IntegerLiteral", - "offset": 4915, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 5130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", "kind": "BooleanLiteral", - "offset": 5410, + "offset": 1774, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 5490, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 5501, - "length": 12, - "value": "\"deprecated\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 5844, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "BooleanLiteral", - "offset": 6115, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", + "kind": "FloatLiteral", + "offset": 1990, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 6195, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 6206, - "length": 12, - "value": "\"deprecated\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", - "kind": "StringLiteral", - "offset": 6571, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 489, - "length": 6, - "value": "\"%lld\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 564, - "length": 2, - "value": "10" + "value": "34.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", "kind": "FloatLiteral", - "offset": 660, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 1189, + "offset": 2037, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2058, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2091, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2309, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2488, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2520, - "length": 1, - "value": "0" + "value": "24.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2700, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelInfoHeaderView.swift", + "kind": "StringLiteral", + "offset": 722, + "length": 24, + "value": "\"SendbirdUIKit.SBUChannelInfoHeaderView\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUCommonContentView.swift", "kind": "IntegerLiteral", - "offset": 2733, + "offset": 397, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2920, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "FloatLiteral", + "offset": 264, + "length": 5, + "value": "258.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 2955, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "FloatLiteral", + "offset": 311, + "length": 4, + "value": "10.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 6551, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "FloatLiteral", + "offset": 354, + "length": 4, + "value": "40.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 6651, + "offset": 1836, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 6683, - "length": 1, - "value": "0" + "offset": 2116, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 6717, + "offset": 2399, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "BooleanLiteral", - "offset": 7034, - "length": 5, - "value": "false" + "offset": 2843, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "BooleanLiteral", - "offset": 7150, + "offset": 3179, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "BooleanLiteral", - "offset": 7256, + "offset": 3235, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 7743, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "BooleanLiteral", + "offset": 3276, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 7961, - "length": 3, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "BooleanLiteral", + "offset": 3312, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 8006, - "length": 3, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", + "kind": "BooleanLiteral", + "offset": 3350, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 8252, + "offset": 3409, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 8284, - "length": 1, - "value": "0" + "offset": 3460, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 8474, - "length": 1, - "value": "0" + "offset": 3470, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 8507, - "length": 1, - "value": "0" + "offset": 3482, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardView.swift", "kind": "IntegerLiteral", - "offset": 8704, - "length": 1, - "value": "0" + "offset": 3493, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 8739, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 260, + "length": 5, + "value": "219.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 8928, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 268, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 282, + "length": 5, + "value": "209.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 290, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 303, "length": 3, - "value": "\" \"" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "StringLiteral", - "offset": 8963, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 315, "length": 3, - "value": "\" \"" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 9608, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 368, + "length": 5, + "value": "194.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 9649, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 376, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 11242, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 390, + "length": 5, + "value": "169.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 11773, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 398, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", - "kind": "BooleanLiteral", - "offset": 718, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 411, + "length": 5, + "value": "250.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", - "kind": "BooleanLiteral", - "offset": 928, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 419, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 433, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", - "kind": "IntegerLiteral", - "offset": 2803, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 486, + "length": 5, + "value": "116.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", - "kind": "IntegerLiteral", - "offset": 3213, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 494, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 460, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 508, "length": 4, - "value": "true" + "value": "45.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 754, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 515, "length": 5, - "value": "10001" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 2008, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 528, "length": 5, - "value": "false" + "value": "221.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 2263, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 536, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 550, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 603, "length": 4, - "value": "true" + "value": "98.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 2605, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 610, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", "kind": "FloatLiteral", - "offset": 3232, - "length": 3, - "value": "0.5" + "offset": 624, + "length": 4, + "value": "17.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 3293, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 631, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 3304, - "length": 1, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 644, + "length": 5, + "value": "200.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 652, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", "kind": "FloatLiteral", - "offset": 3342, + "offset": 666, "length": 3, - "value": "0.5" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 3380, - "length": 1, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 719, + "length": 4, + "value": "73.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 3417, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 726, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 5107, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 740, + "length": 4, + "value": "19.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "BooleanLiteral", - "offset": 5157, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 747, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 5795, - "length": 2, - "value": "10" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 760, + "length": 5, + "value": "137.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 5805, - "length": 2, - "value": "12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 768, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 5817, - "length": 2, - "value": "10" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 782, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "IntegerLiteral", - "offset": 5828, - "length": 2, - "value": "12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 867, + "length": 5, + "value": "168.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", - "kind": "StringLiteral", - "offset": 252, - "length": 17, - "value": "\"SendbirdUIKit.SBUNewMessageInfo\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 875, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/URL+SBUKit.swift", - "kind": "BooleanLiteral", - "offset": 326, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 889, + "length": 5, + "value": "226.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/URL+SBUKit.swift", - "kind": "Dictionary", - "offset": 470, - "length": 3, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 897, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/URL+SBUKit.swift", - "kind": "BooleanLiteral", - "offset": 636, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 910, "length": 5, - "value": "false" + "value": "171.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/URL+SBUKit.swift", - "kind": "StringLiteral", - "offset": 717, - "length": 7, - "value": "\"https\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 918, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 3305, - "length": 1, - "value": "8" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 932, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4097, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 987, "length": 5, - "value": "false" + "value": "105.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "IntegerLiteral", - "offset": 4707, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 995, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4746, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1009, "length": 5, - "value": "false" + "value": "192.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 4998, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1017, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5509, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1030, + "length": 5, + "value": "133.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5631, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1038, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 5664, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1052, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1107, "length": 4, - "value": "true" + "value": "37.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "StringLiteral", - "offset": 6152, - "length": 42, - "value": "\"The message is not a type of UserMessage\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1114, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", - "kind": "BooleanLiteral", - "offset": 6386, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1128, + "length": 5, + "value": "156.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIViewController+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 665, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1136, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/ChannelSettings\/SBUBaseChannelSettingsViewController.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 3161, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1149, + "length": 5, + "value": "114.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "IntegerLiteral", - "offset": 433, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1157, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 474, - "length": 11, - "value": "\"📕Error\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1171, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "IntegerLiteral", - "offset": 735, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1226, + "length": 3, + "value": "2.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 776, - "length": 13, - "value": "\"📙Warning\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1232, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "IntegerLiteral", - "offset": 1033, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1246, + "length": 5, + "value": "125.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1074, - "length": 10, - "value": "\"📘Info\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1254, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1321, - "length": 6, - "value": "\"Main\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1267, + "length": 5, + "value": "105.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1352, - "length": 3, - "value": "\"-\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1275, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1413, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1289, "length": 3, - "value": "\"\/\"" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1426, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1344, + "length": 3, + "value": "6.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1454, - "length": 3, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1350, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1468, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1364, + "length": 5, + "value": "104.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1543, - "length": 25, - "value": "\"yyyy-MM-dd HH:mm:ss.SSS\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1372, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1691, - "length": 51, - "value": "\"🎨SBULog \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1385, + "length": 4, + "value": "88.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1710, - "length": 1, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1392, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1720, - "length": 1, - "value": "\" [%@ %@:%@:%d] \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1406, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 35, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1494, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1827, - "length": 44, - "value": "\"🎨SBULog \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1506, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1846, - "length": 1, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1564, + "length": 5, + "value": "238.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBULogger.swift", - "kind": "StringLiteral", - "offset": 1856, - "length": 1, - "value": "\" [%@ %@:%@:%d]\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1572, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.Header.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1586, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "IntegerLiteral", - "offset": 1404, - "length": 2, - "value": "-1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1644, + "length": 5, + "value": "224.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 2398, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1652, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 2637, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1666, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1724, "length": 5, - "value": "false" + "value": "189.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 2864, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1732, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 3718, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1746, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 4075, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1804, "length": 4, - "value": "true" + "value": "57.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", - "kind": "BooleanLiteral", - "offset": 4154, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1811, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "IntegerLiteral", - "offset": 318, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1825, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1883, "length": 4, - "value": "1" + "value": "44.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "IntegerLiteral", - "offset": 364, - "length": 10, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1890, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "IntegerLiteral", - "offset": 318, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1904, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1962, "length": 4, - "value": "1" + "value": "22.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "IntegerLiteral", - "offset": 364, - "length": 10, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1969, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "StringLiteral", - "offset": 786, - "length": 6, - "value": "\"none\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 1983, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "StringLiteral", - "offset": 824, - "length": 6, - "value": "\"edit\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2041, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", - "kind": "StringLiteral", - "offset": 868, - "length": 13, - "value": "\"quote reply\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2053, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 1820, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2135, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2147, "length": 4, - "value": "true" + "value": "0.55" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 2278, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2202, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 3845, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2214, "length": 4, - "value": "true" + "value": "0.32" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", "kind": "FloatLiteral", - "offset": 4179, + "offset": 2298, "length": 3, - "value": "0.7" + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 6037, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2310, "length": 4, - "value": "true" + "value": "0.88" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 7192, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2365, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 7781, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2377, + "length": 3, + "value": "0.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SBUGlobals.swift", - "kind": "BooleanLiteral", - "offset": 8247, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2431, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2443, "length": 4, - "value": "true" + "value": "0.38" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 2462, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2498, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 3192, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2510, "length": 4, - "value": "true" + "value": "0.12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 4979, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2592, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "StringLiteral", - "offset": 5028, - "length": 28, - "value": "\"The index is out of range.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2604, + "length": 4, + "value": "0.88" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 5064, - "length": 2, - "value": "-1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2658, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 5144, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2670, + "length": 3, + "value": "0.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6129, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2723, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6189, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2735, + "length": 4, + "value": "0.38" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6221, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2789, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "BooleanLiteral", - "offset": 6588, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2801, "length": 4, - "value": "true" + "value": "0.12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelList\/OpenChannel\/SBUOpenChannelListModule.List.swift", - "kind": "IntegerLiteral", - "offset": 6645, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2879, + "length": 5, + "value": "253.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 31, - "value": "\"enableUsingDefaultUserProfile\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2887, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 31, - "value": "\"enableUsingDefaultUserProfile\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2901, + "length": 5, + "value": "170.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 476, - "length": 16, - "value": "\"enableDocument\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2909, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 476, - "length": 16, - "value": "\"enableDocument\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2922, + "length": 5, + "value": "170.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 13, - "value": "\"enablePhoto\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2930, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 656, - "length": 13, - "value": "\"enableVideo\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2944, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 13, - "value": "\"enablePhoto\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 2995, + "length": 5, + "value": "246.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 656, - "length": 13, - "value": "\"enableVideo\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3003, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 790, - "length": 13, - "value": "\"enablePhoto\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3017, + "length": 4, + "value": "97.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 834, - "length": 13, - "value": "\"enableVideo\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3024, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 790, - "length": 13, - "value": "\"enablePhoto\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3037, + "length": 4, + "value": "97.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 834, - "length": 13, - "value": "\"enableVideo\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3044, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1123, - "length": 13, - "value": "\"enableOgtag\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3058, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1177, - "length": 23, - "value": "\"enableTypingIndicator\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3109, + "length": 5, + "value": "222.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1235, - "length": 17, - "value": "\"enableReactions\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3117, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 15, - "value": "\"enableMention\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3131, + "length": 4, + "value": "54.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1338, - "length": 20, - "value": "\"enableVoiceMessage\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3138, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1123, - "length": 13, - "value": "\"enableOgtag\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3151, + "length": 4, + "value": "11.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1177, - "length": 23, - "value": "\"enableTypingIndicator\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3158, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1235, - "length": 17, - "value": "\"enableReactions\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3172, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 15, - "value": "\"enableMention\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3223, + "length": 5, + "value": "191.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1338, - "length": 20, - "value": "\"enableVoiceMessage\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3231, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1573, - "length": 23, - "value": "\"enableTypingIndicator\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3245, + "length": 3, + "value": "7.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1642, - "length": 28, - "value": "\"enableMessageReceiptStatus\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3251, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1573, - "length": 23, - "value": "\"enableTypingIndicator\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3264, + "length": 4, + "value": "17.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1642, - "length": 28, - "value": "\"enableMessageReceiptStatus\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3271, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1802, - "length": 21, - "value": "\"enableMessageSearch\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3285, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1802, - "length": 21, - "value": "\"enableMessageSearch\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3336, + "length": 5, + "value": "157.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1946, - "length": 13, - "value": "\"enableOgtag\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3344, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3358, + "length": 3, + "value": "9.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", - "kind": "StringLiteral", - "offset": 1946, - "length": 13, - "value": "\"enableOgtag\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3364, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 1962, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3377, + "length": 4, + "value": "30.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Dictionary", - "offset": 2342, - "length": 3, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3384, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Dictionary", - "offset": 2471, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3398, "length": 3, - "value": "[]" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 2748, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3484, + "length": 5, + "value": "173.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 2816, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3492, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 2860, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3506, + "length": 5, + "value": "201.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 2958, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3514, "length": 5, - "value": "false" + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Dictionary", - "offset": 3927, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3527, "length": 3, - "value": "[]" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Dictionary", - "offset": 3993, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3539, "length": 3, - "value": "[]" + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3617, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3629, "length": 5, - "value": "false" + "value": "242.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 5064, - "length": 3, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3637, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 5982, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3650, "length": 5, - "value": "false" + "value": "182.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 6009, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3658, + "length": 5, + "value": "255.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 6037, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUColorSet.swift", + "kind": "FloatLiteral", + "offset": 3672, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 6137, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 1102, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", "kind": "BooleanLiteral", - "offset": 6197, - "length": 5, - "value": "false" + "offset": 484, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", "kind": "BooleanLiteral", - "offset": 6229, + "offset": 1363, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 6588, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", + "kind": "BooleanLiteral", + "offset": 1512, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", "kind": "BooleanLiteral", - "offset": 8387, + "offset": 2129, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 8540, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.Base.swift", + "kind": "BooleanLiteral", + "offset": 2283, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "IntegerLiteral", - "offset": 8589, + "offset": 1272, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 9005, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "FloatLiteral", + "offset": 1625, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 9757, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "Array", + "offset": 1913, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "IntegerLiteral", - "offset": 9886, - "length": 1, - "value": "2" + "offset": 2729, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 10336, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "IntegerLiteral", + "offset": 2755, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 10815, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "FloatLiteral", + "offset": 3095, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 11416, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "BooleanLiteral", + "offset": 8951, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 12167, - "length": 4, - "value": "true" + "offset": 19949, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 12211, + "offset": 20700, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 12660, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "BooleanLiteral", + "offset": 21463, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 12752, - "length": 4, - "value": "true" + "offset": 27041, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 12887, - "length": 4, - "value": "true" + "offset": 36298, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 12987, - "length": 4, - "value": "true" + "offset": 44738, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "StringLiteral", + "offset": 54026, + "length": 23, + "value": "\"SendbirdUIKit.MessageTemplateBaseView\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "FloatLiteral", + "offset": 55971, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "BooleanLiteral", - "offset": 13043, + "offset": 64319, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "StringLiteral", + "offset": 1095, + "length": 23, + "value": "\"SendbirdUIKit.MessageTemplateRenderer\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", + "kind": "IntegerLiteral", + "offset": 68872, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "IntegerLiteral", - "offset": 13100, + "offset": 69108, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateRenderer.swift", "kind": "IntegerLiteral", - "offset": 13622, + "offset": 69581, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", "kind": "BooleanLiteral", - "offset": 13891, - "length": 4, - "value": "true" + "offset": 953, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 14035, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", + "kind": "BooleanLiteral", + "offset": 1096, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Header.swift", "kind": "BooleanLiteral", - "offset": 14103, + "offset": 3879, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUMessageWebViewModel.swift", "kind": "BooleanLiteral", - "offset": 15266, + "offset": 573, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "StringLiteral", - "offset": 15343, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUMessageWebViewModel.swift", + "kind": "BooleanLiteral", + "offset": 602, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUStackView.swift", + "kind": "FloatLiteral", + "offset": 512, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", "kind": "StringLiteral", - "offset": 15773, + "offset": 716, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIImageView+SBUIKit.swift", "kind": "IntegerLiteral", - "offset": 16015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 16394, - "length": 4, - "value": "true" + "offset": 2934, + "length": 2, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 16477, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUUtils.swift", + "kind": "StringLiteral", + "offset": 246, + "length": 15, + "value": "\"Group Channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 17219, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUUtils.swift", + "kind": "StringLiteral", + "offset": 300, + "length": 14, + "value": "\"Open Channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelAdminMessageCell.swift", "kind": "BooleanLiteral", - "offset": 17279, + "offset": 2513, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 17835, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 17885, - "length": 2, - "value": "\"\"" + "offset": 266, + "length": 8, + "value": "\"Cancel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 18021, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 302, + "length": 4, + "value": "\"OK\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 18999, - "length": 18, - "value": "\"[@][{](.*?)([}])\"" + "offset": 337, + "length": 7, + "value": "\"Retry\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 21762, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 374, + "length": 6, + "value": "\"Save\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 21862, - "length": 4, - "value": "\"@{\"" + "offset": 410, + "length": 6, + "value": "\"Copy\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 21891, - "length": 3, - "value": "\"}\"" + "offset": 448, + "length": 8, + "value": "\"Delete\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "Array", - "offset": 22679, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 486, + "length": 6, + "value": "\"Edit\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 22708, - "length": 2, - "value": "\"\"" + "offset": 524, + "length": 8, + "value": "\"Remove\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 22784, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 8, + "value": "\"Camera\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 22819, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 615, + "length": 15, + "value": "\"Photo library\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 24733, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 664, + "length": 7, + "value": "\"Files\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 25650, - "length": 3, - "value": "\" \"" + "offset": 704, + "length": 12, + "value": "\"Loading...\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 26557, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 748, + "length": 8, + "value": "\"Invite\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 27671, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 791, + "length": 12, + "value": "\"Take photo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 28549, - "length": 42, - "value": "\"Mention must have a range to insert into\"" + "offset": 840, + "length": 14, + "value": "\"Choose photo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 28773, - "length": 52, - "value": "\"Mention range is out of bounds for the text length\"" + "offset": 891, + "length": 14, + "value": "\"Remove photo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 29132, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 942, + "length": 14, + "value": "\"View library\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 29466, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 988, + "length": 8, + "value": "\"Search\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 29794, - "length": 3, - "value": "\" \"" + "offset": 1030, + "length": 10, + "value": "\"Settings\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 29925, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1071, + "length": 7, + "value": "\"Reply\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 29971, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1142, + "length": 34, + "value": "\"Are you sure you want to delete?\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 30119, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1227, + "length": 41, + "value": "\"Please allow camera usage from settings\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 30130, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1325, + "length": 34, + "value": "\"Please Allow PhotoLibrary Access\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 30222, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1424, + "length": 60, + "value": "\"PhotoLibrary access required to get your photos and videos\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 30442, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1608, + "length": 45, + "value": "\"Please allow microphone usage from settings\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 30572, - "length": 4, - "value": "\"\n\"" + "offset": 1721, + "length": 11, + "value": "\"Yesterday\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 30653, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1828, + "length": 8, + "value": "\"%lld%@\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 30800, + "offset": 1858, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 30804, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1863, + "length": 7, + "value": "\"years\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 31341, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1873, + "length": 6, + "value": "\"year\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 31411, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 1981, + "length": 8, + "value": "\"%lld%@\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 31489, + "offset": 2011, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 31664, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2016, + "length": 6, + "value": "\"days\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 31913, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2025, + "length": 5, + "value": "\"day\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "BooleanLiteral", - "offset": 31929, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2134, + "length": 11, + "value": "\"%lldmonth\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 32012, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2258, + "length": 7, + "value": "\"%lldh\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", - "kind": "IntegerLiteral", - "offset": 32067, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2377, + "length": 7, + "value": "\"%lldm\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 32139, - "length": 2, - "value": "\"\"" + "offset": 2435, + "length": 5, + "value": "\"ago\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 32180, - "length": 3, - "value": "\" \"" + "offset": 2473, + "length": 4, + "value": "\"on\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 32208, - "length": 4, - "value": "\"\n\"" + "offset": 2556, + "length": 10, + "value": "\"Channels\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 9, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2621, + "length": 18, + "value": "\"uploaded a file.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 9, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2709, + "length": 15, + "value": "\"Group Channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 418, - "length": 9, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2773, + "length": 14, + "value": "\"(No members)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 802, - "length": 7, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 2836, + "length": 11, + "value": "\"Last seen\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 819, - "length": 13, - "value": "2" + "offset": 3143, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 842, - "length": 10, - "value": "3" + "offset": 3182, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 862, - "length": 6, - "value": "4" + "offset": 3212, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 878, - "length": 4, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3226, + "length": 8, + "value": "\"Member\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 802, - "length": 7, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3269, + "length": 17, + "value": "\"%@ is typing...\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 819, - "length": 13, + "offset": 3311, + "length": 1, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 842, - "length": 10, - "value": "3" + "offset": 3351, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 862, - "length": 6, - "value": "4" + "offset": 3381, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 878, - "length": 4, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3395, + "length": 8, + "value": "\"Member\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 802, - "length": 7, + "offset": 3441, + "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 819, - "length": 13, - "value": "2" + "offset": 3471, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 842, - "length": 10, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3485, + "length": 8, + "value": "\"Member\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 862, - "length": 6, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3528, + "length": 25, + "value": "\"%@ and %@ are typing...\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", - "kind": "IntegerLiteral", - "offset": 878, - "length": 4, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3613, + "length": 30, + "value": "\"Several people are typing...\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 3129, - "length": 76, - "value": "\"init(channelURL:startingPoint:messageListParams:) has not been implemented\"" + "offset": 3714, + "length": 13, + "value": "\"File saved.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 6467, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 3782, + "length": 27, + "value": "\"Couldn’t download file.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 6714, - "length": 2, - "value": "\"\"" + "offset": 3860, + "length": 23, + "value": "\"Couldn’t open file.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 7773, - "length": 61, - "value": "\"Either the channel or the channelURL parameter must be set.\"" + "offset": 3933, + "length": 17, + "value": "\"uploaded a file\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 7907, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "IntegerLiteral", + "offset": 4059, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 9328, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4081, + "length": 15, + "value": "\"1 new message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 9531, + "offset": 4110, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 9728, - "length": 1, - "value": "0" + "offset": 4114, + "length": 2, + "value": "99" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 9827, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4137, + "length": 23, + "value": "\"\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4146, + "length": 3, + "value": "\" new messages\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 10003, - "length": 1, - "value": "0" + "offset": 4174, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 10130, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4201, + "length": 18, + "value": "\"99+ new messages\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 10297, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4256, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 10577, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4327, + "length": 16, + "value": "\"Channel frozen\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 10733, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4427, + "length": 14, + "value": "\"Open Channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 10891, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4492, + "length": 14, + "value": "\"Participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 11728, + "offset": 4627, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 11797, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4649, + "length": 15, + "value": "\"1 participant\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 11863, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4701, + "length": 23, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 12206, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4710, + "length": 12, + "value": "\" participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 12287, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 44, + "value": "\"SENDBIRD_NOTIFICATION_CHANNEL_NOTIFICATION\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "Array", - "offset": 12397, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5267, + "length": 59, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 12409, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5315, "length": 1, - "value": "1" + "value": "\"_\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 12421, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5325, "length": 1, - "value": "0" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 12439, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5468, + "length": 15, + "value": "\"Notifications\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 12820, - "length": 2, - "value": "\"\"" + "offset": 5569, + "length": 21, + "value": "\"Channel information\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 13168, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5643, + "length": 13, + "value": "\"Change name\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 13412, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5710, + "length": 22, + "value": "\"Change channel image\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 13501, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5788, + "length": 12, + "value": "\"Enter name\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "Array", - "offset": 13882, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5864, + "length": 20, + "value": "\"Enter channel name\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 15971, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 5939, + "length": 15, + "value": "\"Notifications\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 16784, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6012, "length": 4, - "value": "true" + "value": "\"On\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 18480, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6075, + "length": 5, + "value": "\"Off\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 18900, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6150, + "length": 15, + "value": "\"Mentions only\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 19171, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6225, + "length": 9, + "value": "\"Members\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6294, + "length": 14, + "value": "\"Participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 19372, + "offset": 6422, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "Array", - "offset": 22654, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6444, + "length": 9, + "value": "\"members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 25003, - "length": 2, + "offset": 6490, + "length": 18, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 25147, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 25202, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6499, + "length": 7, + "value": "\" members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 25628, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6571, + "length": 15, + "value": "\"Leave channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 25947, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6634, + "length": 16, + "value": "\"Delete channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 25983, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6712, + "length": 17, + "value": "\"Delete channel?\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 26097, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6789, + "length": 47, + "value": "\"Once deleted, this channel can't be restored.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 26187, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6884, + "length": 19, + "value": "\"Search in channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 26263, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 6961, + "length": 13, + "value": "\"Moderations\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "BooleanLiteral", - "offset": 27186, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7025, + "length": 11, + "value": "\"Operators\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", - "kind": "IntegerLiteral", - "offset": 27289, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 15, + "value": "\"Muted members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 1232, - "length": 30, - "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" + "offset": 7166, + "length": 20, + "value": "\"Muted participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 1232, - "length": 30, - "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" + "offset": 7249, + "length": 14, + "value": "\"Banned users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 1232, - "length": 30, - "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" + "offset": 7319, + "length": 16, + "value": "\"Freeze channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 2196, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7385, + "length": 5, + "value": "\"URL\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 2218, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7488, + "length": 15, + "value": "\"Notifications\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "FloatLiteral", - "offset": 2293, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7567, + "length": 15, + "value": "\"Notifications\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 2322, - "length": 2, - "value": "50" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7636, + "length": 18, + "value": "\"All new messages\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 4085, - "length": 2, - "value": "\"\"" + "offset": 7718, + "length": 15, + "value": "\"Mentions only\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 4721, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7803, + "length": 100, + "value": "\"Turn on push notifications if you wish to be notified when messages are delivered to this channel.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 4776, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 7988, + "length": 16, + "value": "\"Type a message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 5299, - "length": 2, - "value": "\"\"" + "offset": 8059, + "length": 37, + "value": "\"Chat is unavailable in this channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 5717, - "length": 2, - "value": "56" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8145, + "length": 15, + "value": "\"You are muted\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "FloatLiteral", - "offset": 6796, - "length": 3, - "value": "1.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8209, + "length": 18, + "value": "\"Reply to message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "FloatLiteral", - "offset": 6843, - "length": 3, - "value": "6.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8336, + "length": 35, + "value": "\"Reply to \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 6962, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8370, + "length": 1, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 7063, - "length": 2, - "value": "56" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8435, + "length": 7, + "value": "\"Photo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 7216, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8498, + "length": 5, + "value": "\"GIF\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 7306, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8561, + "length": 7, + "value": "\"Video\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 7398, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8632, + "length": 10, + "value": "\"(edited)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 7649, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8682, + "length": 16, + "value": "\"System message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 7662, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8745, + "length": 24, + "value": "\"(Unknown message type)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 8104, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8822, + "length": 26, + "value": "\"Can't read this message.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 8167, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8979, + "length": 56, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 8414, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 8998, + "length": 7, + "value": "\" replied to \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 8881, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9034, + "length": 1, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 9664, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9078, "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "FloatLiteral", - "offset": 9711, - "length": 3, - "value": "0.2" + "value": "\"You\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 9795, + "offset": 9270, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 9837, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9292, + "length": 9, + "value": "\"1 reply\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 9884, + "offset": 9315, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 9897, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "IntegerLiteral", + "offset": 9319, + "length": 2, + "value": "99" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "FloatLiteral", - "offset": 10059, - "length": 3, - "value": "0.2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9342, + "length": 30, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 10143, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9363, + "length": 7, + "value": "\" replies\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 10185, - "length": 1, - "value": "0" + "offset": 9386, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 10252, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9426, + "length": 13, + "value": "\"99+ replies\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 11105, - "length": 37, - "value": "\"Did receive error: \"" + "offset": 9442, + "length": 30, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 11138, - "length": 2, - "value": "\"\"" + "offset": 9463, + "length": 7, + "value": "\" replies\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 11141, + "offset": 9509, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 809, - "length": 21, - "value": "\"SendbirdUIKit.SBUFileViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 12477, - "length": 5, - "value": "false" + "offset": 9616, + "length": 52, + "value": "\"Couldn't find the original message for this reply.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 12621, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9741, + "length": 21, + "value": "\"Message unavailable\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 12712, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9849, + "length": 18, + "value": "\"(Template error)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 12807, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 9929, + "length": 31, + "value": "\"Can't read this notification.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 12900, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10025, + "length": 13, + "value": "\"No channels\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "BooleanLiteral", - "offset": 14620, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10081, + "length": 13, + "value": "\"No messages\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 14760, - "length": 2, - "value": "12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10142, + "length": 18, + "value": "\"No notifications\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 14856, - "length": 3, - "value": "-12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10200, + "length": 10, + "value": "\"No users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 14949, - "length": 2, - "value": "12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10258, + "length": 18, + "value": "\"No muted members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 15026, - "length": 2, - "value": "32" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10329, + "length": 23, + "value": "\"No muted participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 15105, - "length": 2, - "value": "32" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10399, + "length": 17, + "value": "\"No banned users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", - "kind": "IntegerLiteral", - "offset": 15186, - "length": 2, - "value": "32" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10461, + "length": 18, + "value": "\"No results found\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 521, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10516, + "length": 22, + "value": "\"Something went wrong\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 527, + "offset": 10679, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 537, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10701, + "length": 8, + "value": "\"Create\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 548, - "length": 2, - "value": "76" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10746, + "length": 17, + "value": "\"Create \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 882, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10762, "length": 1, - "value": "6" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "Array", - "offset": 1362, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10831, + "length": 13, + "value": "\"New Channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 1392, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10905, + "length": 16, + "value": "\"Select members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 2076, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 10981, + "length": 21, + "value": "\"New channel profile\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 2207, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11092, + "length": 8, + "value": "\"Create\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 2732, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11156, + "length": 13, + "value": "\"New channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3050, - "length": 2, - "value": "56" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11237, + "length": 20, + "value": "\"Enter channel name\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3215, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11340, + "length": 14, + "value": "\"Invite users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3221, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11413, + "length": 14, + "value": "\"Select users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 3231, + "offset": 11537, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3242, - "length": 2, - "value": "76" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11559, + "length": 8, + "value": "\"Invite\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3465, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11604, + "length": 17, + "value": "\"Invite \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3475, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11620, + "length": 1, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 3487, + "offset": 11749, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 3497, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 3937, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11771, + "length": 10, + "value": "\"Register\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 4008, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11818, + "length": 19, + "value": "\"Register \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4190, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11836, "length": 1, - "value": "0" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4200, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11916, + "length": 7, + "value": "\"(You)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4208, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 11961, + "length": 5, + "value": "\"Ban\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4219, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12006, + "length": 7, + "value": "\"Unban\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4437, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12052, + "length": 6, + "value": "\"Mute\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4463, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12099, + "length": 8, + "value": "\"Unmute\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4487, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12161, + "length": 21, + "value": "\"Unregister operator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4514, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12234, + "length": 22, + "value": "\"Register as operator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 4813, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12304, + "length": 9, + "value": "\"Members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 5065, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12363, + "length": 11, + "value": "\"Operators\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 6114, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12428, + "length": 15, + "value": "\"Muted members\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 6263, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12502, + "length": 20, + "value": "\"Muted Participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 6382, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12584, + "length": 14, + "value": "\"Banned users\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 6541, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12651, + "length": 14, + "value": "\"Participants\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 6696, - "length": 1, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12728, + "length": 11, + "value": "\"(No name)\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 6718, - "length": 1, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12778, + "length": 10, + "value": "\"Operator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 7143, - "length": 1, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12872, + "length": 10, + "value": "\"Operator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 7169, - "length": 1, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12931, + "length": 8, + "value": "\"Member\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 7495, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 12983, + "length": 9, + "value": "\"User ID\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 7857, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13037, + "length": 9, + "value": "\"Message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 8095, - "length": 1, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13092, + "length": 10, + "value": "\"Register\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "IntegerLiteral", - "offset": 8121, - "length": 1, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13150, + "length": 12, + "value": "\"Unregister\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 8200, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13204, + "length": 6, + "value": "\"Mute\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 8333, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13254, + "length": 8, + "value": "\"Unmute\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 8568, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13303, "length": 5, - "value": "false" + "value": "\"Ban\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 8695, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13384, + "length": 7, + "value": "\"Group\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", - "kind": "BooleanLiteral", - "offset": 8744, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13439, + "length": 13, + "value": "\"Super group\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "StringLiteral", - "offset": 213, - "length": 26, - "value": "\"SendbirdUIKit.SBUMenuSheetViewController\"" + "offset": 13499, + "length": 11, + "value": "\"Broadcast\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 331, - "length": 8, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13607, + "length": 3, + "value": "\"@\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 349, - "length": 9, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13722, + "length": 95, + "value": "\"You can mention up to \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", "kind": "IntegerLiteral", - "offset": 368, - "length": 9, - "value": "3" + "offset": 13793, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 331, - "length": 8, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13796, + "length": 5, + "value": "\" times per message. \"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 349, - "length": 9, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 13993, + "length": 17, + "value": "\"Reply in thread\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 368, - "length": 9, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14113, + "length": 17, + "value": "\"Reply in thread\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 331, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14177, + "length": 17, + "value": "\"Reply to thread\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14283, "length": 8, - "value": "1" + "value": "\"Thread\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 349, - "length": 9, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14514, + "length": 8, + "value": "\"Cancel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 368, - "length": 9, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14772, + "length": 20, + "value": "\"Channel is frozen.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 12, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 14996, + "length": 31, + "value": "\"You're muted by the operator.\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 530, - "length": 19, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 15242, + "length": 15, + "value": "\"Voice message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 559, - "length": 19, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 15459, + "length": 15, + "value": "\"Voice message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 588, - "length": 6, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 15715, + "length": 15, + "value": "\"Voice message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 604, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUStringSet.swift", + "kind": "StringLiteral", + "offset": 15846, "length": 15, - "value": "5" + "value": "\"Voice_message\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 629, - "length": 19, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 276, + "length": 4, + "value": "18.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 508, - "length": 12, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 371, + "length": 4, + "value": "18.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 530, - "length": 19, - "value": "2" + "offset": 583, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 559, - "length": 19, - "value": "3" + "offset": 618, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 588, - "length": 6, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 775, + "length": 4, + "value": "0.2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 604, - "length": 15, - "value": "5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 906, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 629, - "length": 19, - "value": "6" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 1049, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 508, - "length": 12, - "value": "1" + "offset": 1268, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 530, - "length": 19, - "value": "2" + "offset": 1303, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 559, - "length": 19, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 1595, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 588, - "length": 6, - "value": "4" + "offset": 1815, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 604, - "length": 15, - "value": "5" + "offset": 1850, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 2141, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 629, - "length": 19, - "value": "6" + "offset": 2360, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 2548, - "length": 1, - "value": "0" + "offset": 2395, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 3222, - "length": 36, - "value": "\"[Failed] Request record permission\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 2683, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "Dictionary", - "offset": 3737, - "length": 3, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 2899, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 4112, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 2934, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 4507, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 3236, + "length": 4, + "value": "18.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 4843, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 3460, + "length": 2, + "value": "24" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 4884, - "length": 31, - "value": "\"[Failed] Recorder preparation\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 3495, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 5100, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 3657, "length": 4, - "value": "true" + "value": "0.38" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 5172, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 3795, "length": 4, - "value": "true" + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 5263, - "length": 17, - "value": "\"[Failed] Record\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 4017, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 5393, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 4052, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 5599, - "length": 36, - "value": "\"[Failed] Request record permission\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 4214, + "length": 4, + "value": "0.4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 5843, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 4352, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "FloatLiteral", - "offset": 5997, - "length": 3, - "value": "0.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 4574, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 6004, - "length": 4, - "value": "1000" + "offset": 4609, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 6660, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 4882, "length": 4, - "value": "true" + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 6728, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 5102, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "IntegerLiteral", - "offset": 6985, - "length": 1, - "value": "0" + "offset": 5137, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 7873, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 5439, "length": 4, - "value": "true" + "value": "12.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 7922, - "length": 73, - "value": "\"[Failed] Audio session preparation error: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 5661, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 7994, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 5696, "length": 2, - "value": "\"\"" + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 8113, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 5974, + "length": 4, + "value": "12.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 8306, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 6199, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 8350, - "length": 5, - "value": "\"m4a\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 6234, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 8383, - "length": 30, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 6509, + "length": 4, + "value": "11.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 8395, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 6731, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 8412, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 6766, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 8558, - "length": 28, - "value": "\"[Failed] Create voice file\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 7044, + "length": 4, + "value": "11.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 8704, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 7269, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 9109, - "length": 74, - "value": "\"[Failed] Audio recorder preparation error: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 7304, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 9182, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 7629, + "length": 4, + "value": "16.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 7855, "length": 2, - "value": "\"\"" + "value": "22" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 9301, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 7890, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 9378, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 8054, "length": 4, - "value": "true" + "value": "0.2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 9404, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 8195, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 9449, - "length": 40, - "value": "\"[Succeeded] Audio recorder preparation\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 8422, + "length": 2, + "value": "24" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 9626, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 8457, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", "kind": "FloatLiteral", - "offset": 9805, - "length": 3, - "value": "0.1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "BooleanLiteral", - "offset": 9935, + "offset": 8621, "length": 4, - "value": "true" + "value": "0.2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "IntegerLiteral", - "offset": 10280, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 8762, "length": 4, - "value": "1000" + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 10775, - "length": 79, - "value": "\"Recorder will be canceled because it is less than the minimum recording time.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 8989, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 11192, - "length": 27, - "value": "\"[Failed] Finish recording\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "IntegerLiteral", + "offset": 9024, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", - "kind": "StringLiteral", - "offset": 11516, - "length": 59, - "value": "\"[Failed] Recorder encode error: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUFontSet.swift", + "kind": "FloatLiteral", + "offset": 9188, + "length": 4, + "value": "0.2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", "kind": "StringLiteral", - "offset": 11574, + "offset": 421, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", "kind": "StringLiteral", - "offset": 2089, - "length": 16, - "value": "\"SendbirdUIKit.SBUVoiceRecorder\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 739, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", - "kind": "BooleanLiteral", - "offset": 778, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", - "kind": "IntegerLiteral", - "offset": 811, - "length": 1, - "value": "0" + "offset": 471, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", "kind": "StringLiteral", - "offset": 200, - "length": 24, - "value": "\"SendbirdUIKit.SBUFileMessageCellParams\"" + "offset": 522, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUTheme.Deprecated.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", "kind": "FloatLiteral", - "offset": 13002, + "offset": 789, "length": 3, - "value": "0.5" + "value": "0.4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUTheme.Deprecated.swift", - "kind": "FloatLiteral", - "offset": 20612, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", + "kind": "BooleanLiteral", + "offset": 827, "length": 4, - "value": "0.64" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUTheme.Deprecated.swift", - "kind": "FloatLiteral", - "offset": 25798, - "length": 3, - "value": "0.5" + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/QuotedFileImageContentView.swift", + "kind": "BooleanLiteral", + "offset": 1037, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", - "kind": "BooleanLiteral", - "offset": 1044, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 351, + "length": 3, + "value": "136" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 1172, + "offset": 399, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 1262, - "length": 1, - "value": "0" + "offset": 446, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 497, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 1448, + "offset": 546, "length": 1, - "value": "0" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 20, - "value": "1" + "offset": 660, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 340, - "length": 17, + "offset": 774, + "length": 1, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 367, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", + "kind": "BooleanLiteral", + "offset": 1002, "length": 4, - "value": "3" + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 381, - "length": 5, - "value": "4" + "offset": 1268, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 396, - "length": 17, - "value": "5" + "offset": 1531, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageWebView.swift", "kind": "IntegerLiteral", - "offset": 423, - "length": 13, - "value": "6" + "offset": 1699, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 20, - "value": "1" + "offset": 228, + "length": 3, + "value": "244" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 340, - "length": 17, - "value": "2" + "offset": 284, + "length": 3, + "value": "240" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 367, - "length": 4, - "value": "3" + "offset": 297, + "length": 3, + "value": "160" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 381, - "length": 5, - "value": "4" + "offset": 350, + "length": 3, + "value": "240" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 396, - "length": 17, - "value": "5" + "offset": 363, + "length": 3, + "value": "160" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 423, - "length": 13, - "value": "6" + "offset": 433, + "length": 3, + "value": "156" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 310, - "length": 20, - "value": "1" + "offset": 446, + "length": 3, + "value": "104" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 340, - "length": 17, - "value": "2" + "offset": 515, + "length": 3, + "value": "136" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 367, - "length": 4, - "value": "3" + "offset": 528, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 381, - "length": 5, - "value": "4" + "offset": 600, + "length": 3, + "value": "311" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 396, - "length": 17, - "value": "5" + "offset": 613, + "length": 3, + "value": "207" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 423, - "length": 13, - "value": "6" + "offset": 677, + "length": 3, + "value": "311" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 1964, - "length": 8, - "value": "1" + "offset": 690, + "length": 3, + "value": "207" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 1986, - "length": 7, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 750, + "length": 5, + "value": "144.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 2007, - "length": 6, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 765, + "length": 4, + "value": "38.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 2027, - "length": 7, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 823, + "length": 4, + "value": "40.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 1964, - "length": 8, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 837, + "length": 4, + "value": "40.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 1986, - "length": 7, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 897, + "length": 4, + "value": "38.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 2007, - "length": 6, - "value": "3" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 911, + "length": 4, + "value": "38.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 2027, - "length": 7, - "value": "4" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 977, + "length": 5, + "value": "144.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 1964, - "length": 8, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "FloatLiteral", + "offset": 992, + "length": 4, + "value": "38.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 1986, - "length": 7, - "value": "2" + "offset": 1052, + "length": 3, + "value": "244" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 2007, - "length": 6, - "value": "3" + "offset": 1120, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "IntegerLiteral", - "offset": 2027, - "length": 7, - "value": "4" + "offset": 1132, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 3109, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1171, + "length": 42, + "value": "\"https:\/\/static.sendbird.com\/sample\/cover\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 3142, - "length": 29, - "value": "\"[Failed] Player preparation\"" + "offset": 1254, + "length": 10, + "value": "\"sb_uikit\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 3640, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1304, + "length": 20, + "value": "\"com.sendbird.uikit\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 3750, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1378, + "length": 44, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 3787, - "length": 29, - "value": "\"[Failed] Player preparation\"" + "offset": 1398, + "length": 1, + "value": "\".delegate.channel.group\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 3934, - "length": 4, - "value": "1000" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1470, + "length": 43, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 3994, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1490, + "length": 1, + "value": "\".delegate.channel.open\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 4201, - "length": 15, - "value": "\"[Failed] Play\"" + "offset": 1561, + "length": 43, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 5074, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1581, "length": 1, - "value": "0" + "value": "\".delegate.channel.feed\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 5741, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1656, + "length": 41, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 5809, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1676, + "length": 1, + "value": "\".delegate.connection\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 5969, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1734, + "length": 15, + "value": "\"SBUAppVersion\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 6503, - "length": 37, - "value": "\"AVAudioSession Category Playback OK\"" + "offset": 1789, + "length": 11, + "value": "\"audio\/m4a\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 6607, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", + "kind": "StringLiteral", + "offset": 1849, + "length": 16, + "value": "\"sbu_type=voice\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 6658, - "length": 26, - "value": "\"AVAudioSession is Active\"" + "offset": 1907, + "length": 28, + "value": "\"KEY_VOICE_MESSAGE_DURATION\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUConstant.swift", "kind": "StringLiteral", - "offset": 7082, - "length": 66, - "value": "\"[Failed] Audio player preparation: \"" + "offset": 1976, + "length": 27, + "value": "\"KEY_INTERNAL_MESSAGE_TYPE\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 7147, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", + "kind": "IntegerLiteral", + "offset": 580, "length": 2, - "value": "\"\"" + "value": "30" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", + "kind": "IntegerLiteral", + "offset": 771, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", "kind": "BooleanLiteral", - "offset": 7361, + "offset": 802, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", "kind": "BooleanLiteral", - "offset": 7419, - "length": 5, - "value": "false" + "offset": 838, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 7464, - "length": 38, - "value": "\"[Succeeded] Audio player preparation\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", + "kind": "BooleanLiteral", + "offset": 1003, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "BooleanLiteral", - "offset": 7551, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", + "kind": "IntegerLiteral", + "offset": 1142, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", "kind": "FloatLiteral", - "offset": 7730, + "offset": 1794, "length": 3, - "value": "0.1" + "value": "0.4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", "kind": "BooleanLiteral", - "offset": 7858, + "offset": 1845, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 8191, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUBottomSheetController.swift", "kind": "IntegerLiteral", - "offset": 8265, - "length": 1, - "value": "0" + "offset": 2764, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", "kind": "IntegerLiteral", - "offset": 8463, - "length": 1, - "value": "0" + "offset": 570, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "IntegerLiteral", - "offset": 8786, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageSearch\/SBUMessageSearchViewModel.swift", + "kind": "Array", + "offset": 735, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 25, - "value": "\"[Failed] Finish playing\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", + "kind": "BooleanLiteral", + "offset": 484, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 9192, - "length": 57, - "value": "\"[Failed] Player decode error: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewNotificationInfo.swift", + "kind": "IntegerLiteral", + "offset": 800, + "length": 5, + "value": "10001" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 9248, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", + "kind": "Array", + "offset": 1281, "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", - "kind": "StringLiteral", - "offset": 1767, - "length": 14, - "value": "\"SendbirdUIKit.SBUVoicePlayer\"" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUserMessageCell.swift", "kind": "BooleanLiteral", - "offset": 2217, - "length": 4, - "value": "true" + "offset": 4082, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", - "kind": "BooleanLiteral", - "offset": 2279, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", + "kind": "StringLiteral", + "offset": 465, + "length": 20, + "value": "\"transform.rotation\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", "kind": "IntegerLiteral", - "offset": 2522, + "offset": 516, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", "kind": "IntegerLiteral", - "offset": 2535, + "offset": 545, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", - "kind": "IntegerLiteral", - "offset": 2543, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", + "kind": "FloatLiteral", + "offset": 587, + "length": 3, + "value": "1.1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Channel\/OpenChannel\/SBUOpenChannelModule.Media.swift", - "kind": "IntegerLiteral", - "offset": 2554, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", + "kind": "FloatLiteral", + "offset": 759, + "length": 5, + "value": "100.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", - "kind": "StringLiteral", - "offset": 3432, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULoading.swift", + "kind": "FloatLiteral", + "offset": 796, + "length": 4, + "value": "64.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", - "kind": "Array", - "offset": 5041, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", + "kind": "IntegerLiteral", + "offset": 434, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", "kind": "BooleanLiteral", - "offset": 5726, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", - "kind": "StringLiteral", - "offset": 6078, - "length": 2, - "value": "\"\"" + "offset": 2566, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", "kind": "BooleanLiteral", - "offset": 6911, + "offset": 4750, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/GroupChannel\/SBUGroupChannelSettingsModule.List.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUCoverImageView.swift", "kind": "BooleanLiteral", - "offset": 7653, + "offset": 6289, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 3124, - "length": 2, - "value": "30" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", + "kind": "Dictionary", + "offset": 432, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 3644, - "length": 2, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", + "kind": "Dictionary", + "offset": 546, + "length": 3, "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 3978, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", + "kind": "Dictionary", + "offset": 667, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4930, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", + "kind": "Dictionary", + "offset": 787, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", "kind": "BooleanLiteral", - "offset": 5438, - "length": 4, - "value": "true" + "offset": 902, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", "kind": "BooleanLiteral", - "offset": 5768, + "offset": 1235, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", "kind": "BooleanLiteral", - "offset": 5816, + "offset": 1602, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", "kind": "BooleanLiteral", - "offset": 5862, + "offset": 2273, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUPendingMessageManager.swift", "kind": "BooleanLiteral", - "offset": 5903, + "offset": 2831, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", "kind": "BooleanLiteral", - "offset": 6087, + "offset": 387, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6261, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6305, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "BooleanLiteral", + "offset": 332, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", "kind": "StringLiteral", - "offset": 6429, - "length": 67, - "value": "\"\"" + "offset": 221, + "length": 11, + "value": "\"SendbirdUIKit.SBUMenuItem\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6475, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "Array", + "offset": 1440, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6495, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1572, + "length": 5, + "value": "180.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6886, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1608, + "length": 4, + "value": "40.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7177, - "length": 65, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1643, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7221, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1677, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7241, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1712, + "length": 4, + "value": "18.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7345, - "length": 67, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1752, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7391, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1801, + "length": 4, + "value": "15.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7411, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuView.swift", + "kind": "FloatLiteral", + "offset": 1848, + "length": 4, + "value": "36.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", "kind": "BooleanLiteral", - "offset": 8137, + "offset": 1788, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUSelectablePhotoViewController.swift", "kind": "StringLiteral", - "offset": 8305, - "length": 67, - "value": "\"\"" + "offset": 1296, + "length": 32, + "value": "\"SendbirdUIKit.SBUSelectablePhotoViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelSettings\/SBUOpenChannelSettingsViewModel.swift", "kind": "StringLiteral", - "offset": 8351, - "length": 1, - "value": "\".\"" + "offset": 537, + "length": 31, + "value": "\"SendbirdUIKit.SBUOpenChannelSettingsViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", "kind": "StringLiteral", - "offset": 8371, - "length": 1, - "value": "\"\"" + "offset": 317, + "length": 21, + "value": "\"com.sendbird.atomic\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8457, - "length": 65, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "BooleanLiteral", + "offset": 934, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "BooleanLiteral", + "offset": 1397, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8521, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2212, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9230, - "length": 20, - "value": "\"Invalid ChannelURL\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2235, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9340, - "length": 20, - "value": "\"Invalid ChannelURL\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2212, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10170, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2235, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10297, - "length": 47, - "value": "\"[Request] Load channel: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2212, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10343, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUPropertyWrapper.swift", + "kind": "IntegerLiteral", + "offset": 2235, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 2900, "length": 2, - "value": "\"\"" + "value": "30" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10843, - "length": 69, - "value": "\"[Succeed] Load channel request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", + "kind": "Array", + "offset": 3617, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10911, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", + "kind": "Array", + "offset": 3741, "length": 2, - "value": "\"\"" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 11936, - "length": 4, - "value": "true" + "offset": 4925, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 12237, - "length": 4, - "value": "true" + "offset": 4973, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13339, - "length": 62, - "value": "\"[Failed] Load channel request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5019, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13400, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5060, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13791, + "offset": 5245, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13890, - "length": 4, - "value": "true" + "offset": 5286, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUBaseChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13947, + "offset": 27482, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 402, + "length": 3, + "value": "164" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 458, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 514, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 625, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 681, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUOpenChannelMessageWebView.swift", + "kind": "IntegerLiteral", + "offset": 733, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuCell.swift", "kind": "BooleanLiteral", - "offset": 13987, + "offset": 363, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", "kind": "IntegerLiteral", - "offset": 14120, + "offset": 812, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUEmojiListViewController.swift", "kind": "StringLiteral", - "offset": 15072, - "length": 122, - "value": "\"loadInitialNotifications,\nstartingPoint : \"" + "offset": 221, + "length": 26, + "value": "\"SendbirdUIKit.SBUEmojiListViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15178, - "length": 16754, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 2025, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 15691, + "offset": 2656, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 15840, + "offset": 3618, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16020, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 16093, + "offset": 8553, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 16665, + "offset": 8604, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16759, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUChatNotificationChannelViewController.swift", + "kind": "StringLiteral", + "offset": 305, + "length": 40, + "value": "\"SendbirdUIKit.SBUChatNotificationChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17013, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 1806, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 17104, + "offset": 5922, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17361, - "length": 35, - "value": "\"Prev notification already loading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17456, - "length": 34, - "value": "\"[Request] Prev notification list\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 6463, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 17819, + "offset": 6514, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17992, - "length": 67, - "value": "\"[Prev notification response] \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 13044, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 13, - "value": "\" notifications\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 13079, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 18288, + "offset": 15965, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18393, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", "kind": "StringLiteral", - "offset": 18582, - "length": 35, - "value": "\"Next notification already loading\"" + "offset": 275, + "length": 29, + "value": "\"SendbirdUIKit.SBUGroupChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18773, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUGroupChannelViewController.swift", + "kind": "StringLiteral", + "offset": 275, + "length": 29, + "value": "\"SendbirdUIKit.SBUGroupChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", "kind": "BooleanLiteral", - "offset": 19011, + "offset": 1027, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionCollectionViewCell.swift", "kind": "BooleanLiteral", - "offset": 19144, + "offset": 3774, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.File.swift", "kind": "StringLiteral", - "offset": 19293, - "length": 67, - "value": "\"[Next notification Response] \"" + "offset": 683, + "length": 6, + "value": "\"file\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", "kind": "StringLiteral", - "offset": 19345, - "length": 13, - "value": "\" notifications\"" + "offset": 372, + "length": 7, + "value": "\"image\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", "kind": "BooleanLiteral", - "offset": 19589, - "length": 4, - "value": "true" + "offset": 2189, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Image.swift", "kind": "BooleanLiteral", - "offset": 19693, + "offset": 5741, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19921, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1288, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 21417, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1450, + "length": 5, + "value": "270.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 21465, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1492, + "length": 3, + "value": "3.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23263, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1535, + "length": 4, + "value": "20.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23323, - "length": 104, - "value": "\"First : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1575, + "length": 4, + "value": "32.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23375, - "length": 1, - "value": "\", Last : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1615, + "length": 4, + "value": "32.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23426, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1657, + "length": 4, + "value": "18.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23467, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1694, + "length": 4, + "value": "44.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24406, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1729, "length": 4, - "value": "true" + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 25482, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1769, + "length": 4, + "value": "40.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 25790, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1804, + "length": 4, + "value": "14.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 25945, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1838, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26094, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1873, "length": 4, - "value": "true" + "value": "18.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26154, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1913, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 26766, - "length": 26, - "value": "\"Did succeed reconnection\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 1954, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 26912, - "length": 58, - "value": "\"[Failed] Update user info: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "BooleanLiteral", + "offset": 2819, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", "kind": "StringLiteral", - "offset": 26969, + "offset": 2877, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27522, - "length": 38, - "value": "\"Did receive user message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 2934, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "BooleanLiteral", + "offset": 3967, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", "kind": "StringLiteral", - "offset": 27559, + "offset": 4019, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27615, - "length": 38, - "value": "\"Did receive file message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAlertView.swift", + "kind": "FloatLiteral", + "offset": 4070, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUDebouncer.swift", + "kind": "FloatLiteral", + "offset": 332, + "length": 3, + "value": "0.3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUDebouncer.swift", "kind": "StringLiteral", - "offset": 27652, + "offset": 205, + "length": 12, + "value": "\"SendbirdUIKit.SBUDebouncer\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1140, "length": 2, - "value": "\"\"" + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27709, - "length": 39, - "value": "\"Did receive admin message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", + "kind": "Array", + "offset": 1411, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", + "kind": "Array", + "offset": 1487, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27747, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", + "kind": "Array", + "offset": 1798, "length": 2, - "value": "\"\"" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", "kind": "BooleanLiteral", - "offset": 27993, - "length": 4, - "value": "true" + "offset": 2266, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", "kind": "BooleanLiteral", - "offset": 28019, + "offset": 2312, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/SBUBaseSelectUserViewModel.swift", "kind": "StringLiteral", - "offset": 28642, - "length": 58, - "value": "\"messageCollection addedNotifications : \"" + "offset": 1047, + "length": 26, + "value": "\"SendbirdUIKit.SBUBaseSelectUserViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28699, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUSelectableStackView.swift", + "kind": "BooleanLiteral", + "offset": 590, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", "kind": "BooleanLiteral", - "offset": 29035, + "offset": 1360, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/SBUGroupChannelListViewController.swift", "kind": "BooleanLiteral", - "offset": 29126, + "offset": 1954, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 29421, - "length": 60, - "value": "\"messageCollection updatedNotifications : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedUserMessageView.swift", + "kind": "IntegerLiteral", + "offset": 459, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 29480, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.OpenChannel.swift", + "kind": "BooleanLiteral", + "offset": 1349, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 29685, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", + "kind": "Array", + "offset": 721, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", "kind": "BooleanLiteral", - "offset": 29817, + "offset": 767, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", "kind": "BooleanLiteral", - "offset": 29848, + "offset": 947, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUSuggestedMentionList.swift", "kind": "StringLiteral", - "offset": 30083, - "length": 60, - "value": "\"messageCollection deletedNotifications : \"" + "offset": 340, + "length": 23, + "value": "\"SendbirdUIKit.SBUSuggestedMentionList\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUNotificationNavigationTitleView.swift", "kind": "StringLiteral", - "offset": 30142, + "offset": 429, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 30346, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30538, - "length": 34, - "value": "\"messageCollection changedChannel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 30914, - "length": 34, - "value": "\"messageCollection deletedChannel\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 31195, - "length": 36, - "value": "\"messageCollection didDetectHugeGap\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 31570, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 31649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 31659, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31921, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4116, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUMessageCache.swift", "kind": "IntegerLiteral", - "offset": 4129, - "length": 1, - "value": "0" + "offset": 257, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4212, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUMessageCache.swift", + "kind": "Array", + "offset": 370, "length": 2, - "value": "-4" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUMessageCache.swift", "kind": "IntegerLiteral", - "offset": 4226, + "offset": 466, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 4285, + "offset": 1721, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4445, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 4512, + "offset": 1928, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "StringLiteral", - "offset": 4597, - "length": 13, - "value": "\"searchField\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "IntegerLiteral", - "offset": 4752, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 4806, + "offset": 2403, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "StringLiteral", - "offset": 5657, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "StringLiteral", - "offset": 9133, - "length": 13, - "value": "\"searchField\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", - "kind": "StringLiteral", - "offset": 10085, - "length": 14, - "value": "\"cancelButton\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 10157, - "length": 4, - "value": "true" + "offset": 2573, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 652, + "offset": 2705, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 771, + "offset": 4961, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 1887, + "offset": 5183, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.GroupChannel.swift", "kind": "BooleanLiteral", - "offset": 1910, + "offset": 6214, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", - "kind": "IntegerLiteral", - "offset": 3127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", - "kind": "StringLiteral", - "offset": 3462, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", - "kind": "StringLiteral", - "offset": 3528, - "length": 30, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 3539, - "length": 1, - "value": "\"\"" + "offset": 244, + "length": 5541, + "value": "\"{\n \"version\": \"1\",\n \"body\": {\n \"items\": [\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"items\": [\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"items\": [\n {\n \"type\": \"image\",\n \"imageUrl\": \"https:\/\/dxstmhyqfqr1o.cloudfront.net\/notifications\/preset-notification-channel-cover.png\",\n \"imageStyle\": {\n \"contentMode\": \"aspectFill\"\n },\n \"viewStyle\": {},\n \"metaData\": {\n \"pixelWidth\": \"168\",\n \"pixelHeight\": \"168\"\n }\n },\n {\n \"type\": \"box\",\n \"layout\": \"column\",\n \"viewStyle\": {\n \"radius\": \"8\",\n \"padding\": {\n \"top\": \"12\",\n \"bottom\": \"12\",\n \"left\": \"12\",\n \"right\": \"12\"\n }\n },\n \"items\": [\n {\n \"type\": \"text\",\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n },\n \"viewStyle\": {},\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"text\": \"Hello tez\",\n \"textStyle\": {\n \"color\": \"#ffbdb8bd\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"1\"\n },\n {\n \"type\": \"text\",\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n },\n \"viewStyle\": {},\n \"width\": {\n \"type\": \"fixed\",\n \"value\": \"1\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"1\"\n },\n \"text\": \"Your order #123123 has been shipped.\",\n \"textStyle\": {\n \"color\": \"#ffbdb8bd\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"1\"\n },\n {\n \"type\": \"textButton\",\n \"viewStyle\": {\n \"backgroundColor\": \"#E0E0E0\",\n \"padding\": {\n \"top\": \"10\",\n \"bottom\": \"10\",\n \"left\": \"20\",\n \"right\": \"20\"\n }\n },\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"height\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"text\": \"Check status\",\n \"textStyle\": {\n \"color\": \"#742DDD\",\n \"size\": \"16\",\n \"weight\": \"normal\"\n },\n \"maxTextLines\": \"5\",\n \"action\": {\n \"type\": \"web\",\n \"data\": \"https:\/\/naver.com\"\n }\n }\n ],\n \"height\": {\n \"type\": \"fixed\",\n \"value\": \"300\"\n },\n \"width\": {\n \"type\": \"flex\",\n \"value\": \"0\"\n },\n \"align\": {\n \"horizontal\": \"left\",\n \"vertical\": \"top\"\n }\n }\n ],\n \"viewStyle\": {}\n }\n ],\n \"viewStyle\": {}\n }\n ]\n }\n }\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 3557, - "length": 1, - "value": "\"\"" + "offset": 9951, + "length": 19, + "value": "\"TEMPLATE_DOWNLOAD\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 3652, - "length": 61, - "value": "\"UserId:%@, Nickname:%@, ProfileURL:%@, Operator:%d Muted:%d\"" + "offset": 12150, + "length": 3, + "value": "\"SendbirdUIKit.Box\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 3769, - "length": 2, - "value": "\"\"" + "offset": 13570, + "length": 4, + "value": "\"SendbirdUIKit.Text\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 3804, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", - "kind": "Array", - "offset": 4168, - "length": 2, - "value": "[]" + "offset": 15328, + "length": 5, + "value": "\"SendbirdUIKit.Image\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Model\/SBUUser.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 193, - "length": 7, - "value": "\"SendbirdUIKit.SBUUser\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", - "kind": "BooleanLiteral", - "offset": 672, - "length": 4, - "value": "true" + "offset": 16776, + "length": 10, + "value": "\"SendbirdUIKit.TextButton\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "StringLiteral", - "offset": 1129, - "length": 54, - "value": "\"(Message template error)\nCan’t read this message.\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", - "kind": "FloatLiteral", - "offset": 1389, - "length": 4, - "value": "16.0" + "offset": 17749, + "length": 11, + "value": "\"SendbirdUIKit.ImageButton\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", - "kind": "BooleanLiteral", - "offset": 1433, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", + "kind": "IntegerLiteral", + "offset": 25359, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 1921, - "length": 2, - "value": "20" + "offset": 29516, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2009, - "length": 3, - "value": "-20" + "offset": 29545, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2098, + "offset": 29516, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2110, + "offset": 29545, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2245, + "offset": 29516, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2258, + "offset": 29545, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2266, + "offset": 31661, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateTestViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/CustomSyntaxTest\/MessageTemplateParser.swift", "kind": "IntegerLiteral", - "offset": 2277, + "offset": 32619, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 3145, - "length": 2, - "value": "30" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", + "kind": "Dictionary", + "offset": 4336, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 3673, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageThread\/SBUMessageThreadModule.List.swift", + "kind": "BooleanLiteral", + "offset": 31846, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4007, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", + "kind": "FloatLiteral", + "offset": 418, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 4959, - "length": 5, - "value": "false" + "offset": 682, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 5467, + "offset": 732, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 5802, - "length": 5, - "value": "false" + "offset": 899, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 5850, - "length": 5, - "value": "false" + "offset": 1381, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 5896, - "length": 5, - "value": "false" + "offset": 1567, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 5937, + "offset": 1614, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 6121, - "length": 5, - "value": "false" + "offset": 1758, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 6524, + "offset": 2357, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6815, - "length": 65, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6859, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6879, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 6983, - "length": 66, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", + "kind": "BooleanLiteral", + "offset": 2391, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7028, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", + "kind": "IntegerLiteral", + "offset": 2545, + "length": 2, + "value": "40" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7048, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", + "kind": "BooleanLiteral", + "offset": 8070, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/UserCell\/SBUUserCell.swift", "kind": "BooleanLiteral", - "offset": 7783, + "offset": 8122, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7951, - "length": 66, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelUnknownMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 519, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7996, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/QuickReply\/Views\/SBUQuickReplyView.swift", + "kind": "IntegerLiteral", + "offset": 962, "length": 1, - "value": "\".\"" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8016, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/QuickReply\/Views\/SBUQuickReplyView.swift", + "kind": "IntegerLiteral", + "offset": 1160, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8102, - "length": 65, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 558, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8146, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 879, "length": 1, - "value": "\".\"" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8166, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 1103, "length": 1, - "value": "\"\"" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8856, - "length": 20, - "value": "\"Invalid ChannelURL\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 1497, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8966, - "length": 20, - "value": "\"Invalid ChannelURL\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 1596, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 9796, + "offset": 1631, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 10405, + "offset": 1792, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10591, - "length": 69, - "value": "\"[Succeed] Load channel request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 2249, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 10659, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 2288, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 6286, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1715, "length": 2, - "value": "\"\"" + "value": "20" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", + "kind": "Array", + "offset": 2111, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", "kind": "BooleanLiteral", - "offset": 11465, - "length": 4, - "value": "true" + "offset": 2721, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", "kind": "BooleanLiteral", - "offset": 11910, - "length": 4, - "value": "true" + "offset": 2767, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/UserList\/SBUUserListViewModel.swift", "kind": "StringLiteral", - "offset": 12823, - "length": 62, - "value": "\"[Failed] Load channel request: \"" + "offset": 1628, + "length": 20, + "value": "\"SendbirdUIKit.SBUUserListViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12884, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", + "kind": "IntegerLiteral", + "offset": 1237, "length": 2, - "value": "\"\"" + "value": "56" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13333, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", + "kind": "IntegerLiteral", + "offset": 1333, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", + "kind": "IntegerLiteral", + "offset": 1522, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13489, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", + "kind": "IntegerLiteral", + "offset": 1733, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13529, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", + "kind": "IntegerLiteral", + "offset": 1942, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUOpenChannelCell.swift", "kind": "IntegerLiteral", - "offset": 13662, + "offset": 2152, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14329, - "length": 122, - "value": "\"loadInitialNotifications,\nstartingPoint : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", + "kind": "IntegerLiteral", + "offset": 930, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 15760, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", + "kind": "IntegerLiteral", + "offset": 1129, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14950, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", + "kind": "IntegerLiteral", + "offset": 1371, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15083, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", + "kind": "IntegerLiteral", + "offset": 2418, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15261, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUThreadInfoView.swift", + "kind": "IntegerLiteral", + "offset": 2460, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 15334, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadTitleView.swift", + "kind": "StringLiteral", + "offset": 484, + "length": 25, + "value": "\"SendbirdUIKit.SBUMessageThreadTitleView\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 2017, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 15906, + "offset": 2647, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 16000, + "offset": 3238, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 16254, + "offset": 3793, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 16345, - "length": 4, - "value": "true" + "offset": 8863, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUFeedNotificationChannelViewController.swift", "kind": "StringLiteral", - "offset": 16611, - "length": 35, - "value": "\"Prev notification already loading\"" + "offset": 246, + "length": 40, + "value": "\"SendbirdUIKit.SBUFeedNotificationChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 16706, - "length": 34, - "value": "\"[Request] Prev notification list\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", + "kind": "BooleanLiteral", + "offset": 8485, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Feed\/SBUFeedNotificationChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 17069, + "offset": 23173, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17242, - "length": 67, - "value": "\"[Prev notification response] \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", + "kind": "Array", + "offset": 665, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17294, - "length": 13, - "value": "\" notifications\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", + "kind": "Array", + "offset": 854, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17538, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", + "kind": "Array", + "offset": 1042, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17643, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/StringProtocol+SBUIKit.swift", + "kind": "Array", + "offset": 1237, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 17832, - "length": 35, - "value": "\"Next notification already loading\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 622, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", "kind": "BooleanLiteral", - "offset": 18023, + "offset": 1067, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18261, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/Channel\/MessageCell\/Replies\/SBUQuotedBaseMessageViewParams.Deprecated.swift", "kind": "BooleanLiteral", - "offset": 18394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 67, - "value": "\"[Next notification Response] \"" + "offset": 1752, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/SelectUser\/CreateChannel\/View\/SBUCreateChannelTypeSelector.swift", "kind": "StringLiteral", - "offset": 18595, - "length": 13, - "value": "\" notifications\"" + "offset": 1160, + "length": 28, + "value": "\"SendbirdUIKit.SBUCreateChannelTypeSelector\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", "kind": "BooleanLiteral", - "offset": 18710, - "length": 4, - "value": "true" + "offset": 41824, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIView+SBUIKit.swift", "kind": "BooleanLiteral", - "offset": 18938, + "offset": 41870, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 20434, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21496, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 321, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21556, - "length": 104, - "value": "\"First : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 341, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21608, - "length": 1, - "value": "\", Last : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 21659, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 321, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21703, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 341, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22645, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "Array", - "offset": 23724, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 321, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 24032, - "length": 1, - "value": "0" + "offset": 341, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 24187, - "length": 1, - "value": "0" + "offset": 577, + "length": 13, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24336, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 600, + "length": 7, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24396, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 617, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3040, - "length": 35, - "value": "\"SendbirdUIKit.SBUFeedNotificationChannelViewModel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 633, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 24959, - "length": 26, - "value": "\"Did succeed reconnection\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 577, + "length": 13, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25105, - "length": 58, - "value": "\"[Failed] Update user info: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 600, + "length": 7, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25162, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 617, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25714, - "length": 43, - "value": "\"Did receive user notification: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 633, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25756, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 577, + "length": 13, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25812, - "length": 43, - "value": "\"Did receive file notification: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 600, + "length": 7, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25854, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 617, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25911, - "length": 44, - "value": "\"Did receive admin notification: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 633, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 25954, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 1677, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26200, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 1677, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 26226, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 1677, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 26868, - "length": 58, - "value": "\"notificationCollection addedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2079, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 26925, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2101, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27261, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2122, + "length": 13, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27352, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2145, + "length": 17, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27661, - "length": 65, - "value": "\"notificationCollection updatedNotifications : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2241, + "length": 13, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 27725, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2079, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27930, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2101, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 28076, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2122, + "length": 13, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 28107, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2145, + "length": 17, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28356, - "length": 65, - "value": "\"notificationCollection deletedNotifications : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2079, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28420, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2101, + "length": 11, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 28624, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2122, + "length": 13, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 28827, - "length": 39, - "value": "\"notificationCollection deletedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2145, + "length": 17, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 29453, - "length": 41, - "value": "\"notificationCollection didDetectHugeGap\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 2241, + "length": 13, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 29833, - "length": 1, - "value": "0" + "offset": 4024, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 29912, - "length": 1, + "offset": 4041, + "length": 9, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 29922, - "length": 1, - "value": "0" + "offset": 4060, + "length": 5, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 30184, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4075, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "Dictionary", - "offset": 816, - "length": 3, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4091, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "StringLiteral", - "offset": 1189, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4178, + "length": 14, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1392, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4260, + "length": 12, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "StringLiteral", - "offset": 1494, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4341, + "length": 13, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "BooleanLiteral", - "offset": 1750, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4024, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "StringLiteral", - "offset": 1852, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1991, - "length": 1, - "value": "0" + "offset": 4060, + "length": 5, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "StringLiteral", - "offset": 4585, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4075, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 4731, - "length": 1, - "value": "0" + "offset": 4091, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 5065, - "length": 1, - "value": "0" + "offset": 4024, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "Array", - "offset": 5137, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", - "kind": "StringLiteral", - "offset": 7136, - "length": 3, - "value": "\" \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4060, + "length": 5, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 55038, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4075, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 55718, - "length": 4, - "value": "0.64" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4091, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 61277, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4178, + "length": 14, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 61953, - "length": 4, - "value": "0.64" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4260, + "length": 12, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 67438, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4341, + "length": 13, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 68114, - "length": 4, - "value": "0.64" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4530, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 73884, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4545, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 74649, - "length": 4, - "value": "0.64" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4530, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 85843, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4545, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 96072, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4530, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 97170, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4545, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 98230, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4770, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 118464, - "length": 4, - "value": "0.12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4770, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 123491, - "length": 4, - "value": "0.36" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4770, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 128501, - "length": 4, - "value": "0.36" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4901, + "length": 10, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "FloatLiteral", - "offset": 133531, - "length": 4, - "value": "0.12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4921, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 173728, - "length": 2, - "value": "18" + "offset": 4941, + "length": 15, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 174448, - "length": 2, - "value": "18" + "offset": 4966, + "length": 9, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 176138, - "length": 2, - "value": "14" + "offset": 4985, + "length": 14, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 176373, - "length": 2, - "value": "12" + "offset": 5009, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 177154, - "length": 2, - "value": "14" + "offset": 5038, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 177668, - "length": 2, - "value": "12" + "offset": 5061, + "length": 15, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 178703, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5086, + "length": 5, + "value": "9" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 178765, - "length": 11, - "value": "\"#70000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5172, + "length": 15, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 178825, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4901, + "length": 10, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 179366, - "length": 11, - "value": "\"#e0ffffff\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4921, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 179428, - "length": 11, - "value": "\"#70ffffff\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4941, + "length": 15, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 179488, - "length": 11, - "value": "\"#e0ffffff\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4966, + "length": 9, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 179603, - "length": 1, - "value": "8" + "offset": 4985, + "length": 14, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 179782, - "length": 2, - "value": "12" + "offset": 5009, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 179947, - "length": 2, - "value": "14" + "offset": 5038, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 180183, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5061, + "length": 15, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 180250, - "length": 11, - "value": "\"#70000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5086, + "length": 5, + "value": "9" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 180315, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4901, + "length": 10, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 181135, - "length": 1, - "value": "8" + "offset": 4921, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 181329, - "length": 2, - "value": "12" + "offset": 4941, + "length": 15, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 181696, - "length": 2, - "value": "14" + "offset": 4966, + "length": 9, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 182201, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 4985, + "length": 14, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 182267, - "length": 11, - "value": "\"#70000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5009, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Theme\/SBUTheme.swift", - "kind": "StringLiteral", - "offset": 182340, - "length": 11, - "value": "\"#e0000000\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5038, + "length": 13, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 364, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5061, + "length": 15, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 574, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5086, + "length": 5, + "value": "9" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1005, - "length": 2, - "value": "12" + "offset": 5172, + "length": 15, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1096, - "length": 1, + "offset": 5452, + "length": 7, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1127, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5469, + "length": 8, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1356, - "length": 1, - "value": "0" + "offset": 5487, + "length": 7, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1378, - "length": 1, - "value": "0" + "offset": 5504, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1398, - "length": 1, - "value": "0" + "offset": 5452, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1421, - "length": 1, - "value": "0" + "offset": 5469, + "length": 8, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1595, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5487, + "length": 7, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "BooleanLiteral", - "offset": 1610, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5504, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1650, - "length": 2, - "value": "48" + "offset": 5646, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1662, - "length": 2, - "value": "48" + "offset": 5646, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "StringLiteral", - "offset": 2796, - "length": 11, - "value": "\"image\/gif\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5783, + "length": 5, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "StringLiteral", - "offset": 3454, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5798, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 4854, - "length": 1, + "offset": 5783, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5798, + "length": 6, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", - "kind": "StringLiteral", - "offset": 4905, - "length": 11, - "value": "\"image\/gif\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5959, + "length": 3, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 5283, - "length": 1, + "offset": 5972, + "length": 6, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 343, - "length": 4, + "offset": 5988, + "length": 6, + "value": "3" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 5959, + "length": 3, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 349, - "length": 5, + "offset": 5972, + "length": 6, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 356, - "length": 3, + "offset": 5988, + "length": 6, "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 343, - "length": 4, + "offset": 6234, + "length": 5, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 349, + "offset": 6249, "length": 5, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 356, - "length": 3, + "offset": 6264, + "length": 5, "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 343, - "length": 4, + "offset": 6279, + "length": 3, + "value": "4" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6292, + "length": 3, + "value": "5" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6234, + "length": 5, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 349, + "offset": 6249, "length": 5, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 356, - "length": 3, + "offset": 6264, + "length": 5, "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 609, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6279, "length": 3, - "value": "8.0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 3635, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6292, "length": 3, - "value": "2.0" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 3805, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6485, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 3896, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6532, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 3985, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6576, + "length": 7, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4076, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6655, + "length": 11, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4188, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6743, + "length": 15, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4303, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6485, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4465, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6532, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4555, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 6576, + "length": 7, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4643, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7038, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4735, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7052, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4847, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7038, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 4962, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7052, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6250, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7547, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6315, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7547, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6380, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7611, + "length": 10, + "value": "0b00000000" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6445, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7641, + "length": 10, + "value": "0b00000001" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6572, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7671, + "length": 10, + "value": "0b00000010" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", - "kind": "FloatLiteral", - "offset": 6700, - "length": 3, - "value": "2.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7701, + "length": 10, + "value": "0b00000100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 702, - "length": 2, - "value": "12" + "offset": 7731, + "length": 10, + "value": "0b00000111" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 753, - "length": 1, - "value": "7" + "offset": 7611, + "length": 10, + "value": "0b00000000" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 872, - "length": 2, - "value": "16" + "offset": 7641, + "length": 10, + "value": "0b00000001" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 918, - "length": 2, - "value": "10" + "offset": 7671, + "length": 10, + "value": "0b00000010" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 968, - "length": 2, - "value": "16" + "offset": 7701, + "length": 10, + "value": "0b00000100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", "kind": "IntegerLiteral", - "offset": 1017, - "length": 1, + "offset": 7731, + "length": 10, + "value": "0b00000111" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7866, + "length": 4, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "StringLiteral", - "offset": 1076, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7880, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 1317, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7866, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 1373, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7880, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 1414, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7866, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 1450, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUEnums.swift", + "kind": "IntegerLiteral", + "offset": 7880, + "length": 4, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "BooleanLiteral", - "offset": 1488, + "offset": 1452, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "IntegerLiteral", - "offset": 1606, + "offset": 2129, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", + "kind": "IntegerLiteral", + "offset": 2369, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", + "kind": "IntegerLiteral", + "offset": 2618, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "BooleanLiteral", - "offset": 1831, - "length": 5, - "value": "false" + "offset": 4079, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "BooleanLiteral", - "offset": 2097, + "offset": 4341, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "BooleanLiteral", - "offset": 2601, + "offset": 4418, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUParentMessageInfoView.swift", "kind": "BooleanLiteral", - "offset": 2955, + "offset": 13631, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 3137, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateOpenChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 3633, + "offset": 657, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "IntegerLiteral", - "offset": 3786, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", "kind": "IntegerLiteral", - "offset": 4004, + "offset": 508, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", "kind": "IntegerLiteral", - "offset": 4201, + "offset": 517, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", "kind": "IntegerLiteral", - "offset": 4433, + "offset": 528, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUTemplateLabel.swift", "kind": "IntegerLiteral", - "offset": 5017, + "offset": 538, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", "kind": "IntegerLiteral", - "offset": 5250, + "offset": 872, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 7563, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "StringLiteral", + "offset": 1616, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", - "kind": "BooleanLiteral", - "offset": 7889, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "StringLiteral", + "offset": 1738, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/Moderations\/SBUModerationsModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", "kind": "StringLiteral", - "offset": 4628, + "offset": 2098, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 240, - "length": 13, - "value": "\"E, MMM yyyy\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 3001, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 14, - "value": "\"MMM dd, yyyy\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 3323, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 334, - "length": 11, - "value": "\"E, MMM dd\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "BooleanLiteral", + "offset": 3364, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 376, - "length": 8, - "value": "\"MMM dd\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 3959, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 9, - "value": "\"hh:mm a\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 4359, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 7, - "value": "\"hh:mm\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 4869, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 495, - "length": 12, - "value": "\"yyyy\/MM\/dd\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 5150, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 545, - "length": 14, - "value": "\"yyyyMMddhhmm\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "IntegerLiteral", + "offset": 5249, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 599, - "length": 16, - "value": "\"yyyyMMddhhmmss\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedBaseMessageView.swift", + "kind": "BooleanLiteral", + "offset": 5284, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 651, - "length": 16, - "value": "\"MMM dd hh:mm a\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIImage+SBUIKit.swift", + "kind": "BooleanLiteral", + "offset": 6548, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", - "kind": "StringLiteral", - "offset": 707, - "length": 22, - "value": "\"MMM dd, yyyy hh:mm a\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 396, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 1197, + "offset": 436, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 473, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 1245, + "offset": 637, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 1310, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 1284, + "offset": 1929, "length": 1, - "value": "2" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 1752, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 2584, "length": 2, - "value": "\"\"" + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 2030, + "offset": 3238, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 2040, + "offset": 3920, "length": 1, - "value": "0" + "value": "4" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 4159, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 2048, + "offset": 4258, "length": 1, - "value": "0" + "value": "1" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", + "kind": "BooleanLiteral", + "offset": 4293, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUContentBaseMessageCell.swift", "kind": "IntegerLiteral", - "offset": 2059, + "offset": 13359, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", "kind": "IntegerLiteral", - "offset": 6374, + "offset": 514, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", "kind": "BooleanLiteral", - "offset": 6702, - "length": 4, - "value": "true" + "offset": 548, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "FloatLiteral", - "offset": 6804, - "length": 4, - "value": "0.75" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", + "kind": "IntegerLiteral", + "offset": 693, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 8805, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUVoiceFileInfo.swift", + "kind": "StringLiteral", + "offset": 331, + "length": 16, + "value": "\"SendbirdUIKit.SBUVoiceFileInfo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 9486, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1607, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 10071, + "offset": 2147, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 10405, - "length": 4, - "value": "true" + "offset": 2199, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 11061, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 2318, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 11552, - "length": 4, - "value": "true" + "offset": 2463, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUOpenChannelViewModel.swift", "kind": "StringLiteral", - "offset": 12008, - "length": 37, - "value": "\"Did receive error: \"" + "offset": 1489, + "length": 23, + "value": "\"SendbirdUIKit.SBUOpenChannelViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 12041, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 292, + "length": 13, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 12044, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 315, + "length": 14, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 13034, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 339, + "length": 10, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 13901, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 359, + "length": 8, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "Dictionary", - "offset": 14190, - "length": 3, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 292, + "length": 13, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 15425, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 315, + "length": 14, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 16134, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 339, + "length": 10, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 16677, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 359, + "length": 8, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 889, - "length": 4, - "value": "1000" + "offset": 508, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 939, - "length": 6, - "value": "600000" + "offset": 525, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 1076, + "offset": 544, "length": 5, - "value": "11025" + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 1118, - "length": 1, - "value": "1" + "offset": 559, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 1222, - "length": 5, - "value": "12000" + "offset": 575, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 527, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 662, + "length": 14, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 3323, - "length": 1, - "value": "0" + "offset": 744, + "length": 12, + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 3441, - "length": 1, - "value": "0" + "offset": 825, + "length": 13, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", "kind": "IntegerLiteral", - "offset": 3543, - "length": 1, - "value": "0" + "offset": 508, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 3701, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 525, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 3864, - "length": 69, - "value": "\"[Failed] SendbirdChat initialize failed.: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 544, + "length": 5, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 3932, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 559, + "length": 6, + "value": "4" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUEnums.Deprecated.swift", + "kind": "IntegerLiteral", + "offset": 575, + "length": 12, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", "kind": "BooleanLiteral", - "offset": 4435, + "offset": 426, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 5749, - "length": 72, - "value": "\"[Check] Connection status : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 5820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", "kind": "StringLiteral", - "offset": 5992, - "length": 75, - "value": "\"currentUser: \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 6066, + "offset": 562, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 34, - "value": "\"[Request] Connection to Sendbird\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", + "kind": "IntegerLiteral", + "offset": 602, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 6903, - "length": 63, - "value": "\"[Failed] Connection to Sendbird: CurrentUser value is not set\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", + "kind": "BooleanLiteral", + "offset": 629, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 7544, - "length": 71, - "value": "\"[Failed] Connection to Sendbird: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserNameView.swift", + "kind": "BooleanLiteral", + "offset": 2852, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUEmojiManager.swift", "kind": "StringLiteral", - "offset": 7611, - "length": 2, - "value": "\"\"" + "offset": 285, + "length": 31, + "value": "\"LOCAL_CACHING_EMOJI_CONTAINER\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 7614, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/ChannelSettings\/SBUBaseChannelSettingsModule.List.swift", + "kind": "Array", + "offset": 2356, "length": 2, - "value": "\"\"" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 7779, - "length": 97, - "value": "\"[Warning] Connection to Sendbird: Succeed but error was occurred: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 1357, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 7875, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "Array", + "offset": 1759, "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 8097, - "length": 34, - "value": "\"[Succeed] Connection to Sendbird\"" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 9812, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "Array", + "offset": 1892, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 9977, - "length": 52, - "value": "\"[Failed] Load global notification channel settings\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "Array", + "offset": 2122, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 10339, - "length": 29, - "value": "\"[Failed] Load template list\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "Array", + "offset": 2297, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 10613, - "length": 63, - "value": "\"[Failed] Connection to Sendbird: CurrentUser value is not set\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 2361, + "length": 2, + "value": "56" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 10829, - "length": 33, - "value": "\"[Failed] Connection to Sendbird\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 2404, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 12418, - "length": 37, - "value": "\"[Request] Disconnection to Sendbird\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 2846, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 12543, - "length": 37, - "value": "\"[Succeed] Disconnection to Sendbird\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 2962, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 14757, - "length": 28, - "value": "\"[Request] Update user info\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 3407, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 15575, - "length": 58, - "value": "\"[Failed] Update user info: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "FloatLiteral", + "offset": 3632, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 15632, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "FloatLiteral", + "offset": 3859, + "length": 3, + "value": "1.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 15821, - "length": 124, - "value": "\"[Succeed]\nUpdate user info: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 4093, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 15925, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 4350, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 15929, - "length": 2296, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 7285, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 16608, - "length": 10, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 27372, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 16617, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 29995, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", "kind": "StringLiteral", - "offset": 16740, + "offset": 239, "length": 28, - "value": "\"CFBundleShortVersionString\"" + "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", "kind": "StringLiteral", - "offset": 16795, - "length": 10, - "value": "\"\"" + "offset": 239, + "length": 28, + "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUOpenChannelViewController.swift", "kind": "StringLiteral", - "offset": 16804, - "length": 1, - "value": "\"\"" + "offset": 239, + "length": 28, + "value": "\"SendbirdUIKit.SBUOpenChannelViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 16854, - "length": 7, - "value": "\"0.0.0\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1622, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 17580, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", + "kind": "Array", + "offset": 1934, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 17678, - "length": 50, - "value": "\"[Request] Register push token to Sendbird server\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", + "kind": "Array", + "offset": 2009, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 18638, + "offset": 2218, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/SelectUser\/CreateChannel\/SBUCreateChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 19033, + "offset": 2264, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 19944, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", + "kind": "IntegerLiteral", + "offset": 258, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", "kind": "BooleanLiteral", - "offset": 20368, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 20449, - "length": 56, - "value": "\"[Request] Unregister all push token to Sendbird server\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 20651, - "length": 69, - "value": "\"[Failed] Push unregistration is fail: \"" + "offset": 487, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageProfileView.swift", "kind": "StringLiteral", - "offset": 20719, + "offset": 600, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 20760, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 1338, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 20857, - "length": 43, - "value": "\"[Succeed] Push unregistration is success.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 1588, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 20936, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "FloatLiteral", + "offset": 2111, + "length": 3, + "value": "4.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", "kind": "BooleanLiteral", - "offset": 21209, - "length": 4, - "value": "true" + "offset": 3129, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 22530, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 3327, + "length": 2, + "value": "80" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 23722, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 3364, + "length": 2, + "value": "48" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 23810, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 3408, + "length": 2, + "value": "64" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 25608, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/User\/SBUUserProfileView.swift", + "kind": "IntegerLiteral", + "offset": 3420, + "length": 2, + "value": "68" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelFileMessageCell.swift", "kind": "BooleanLiteral", - "offset": 25889, + "offset": 1883, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 27018, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 27540, + "offset": 748, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 27967, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", + "kind": "IntegerLiteral", + "offset": 1129, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 29393, + "offset": 1289, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/OpenChannel\/SBUOpenChannelBaseMessageCell.swift", "kind": "BooleanLiteral", - "offset": 30006, + "offset": 3514, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 32106, - "length": 98, - "value": "\"[Request] Create channel with users,\nUser: \"" + "offset": 363, + "length": 25, + "value": "\"com.sendbird.cache.file\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 32187, - "length": 1, - "value": "\")\"" + "offset": 488, + "length": 10, + "value": "\"template\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 32285, - "length": 2, - "value": "\"\"" + "offset": 532, + "length": 14, + "value": "\"user-profile\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 32314, - "length": 2, - "value": "\"\"" + "offset": 577, + "length": 10, + "value": "\"reaction\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "BooleanLiteral", - "offset": 32380, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", + "kind": "StringLiteral", + "offset": 613, "length": 5, - "value": "false" + "value": "\"web\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 33316, - "length": 138, - "value": "\"[Failed] Create channel request:\n\"" + "offset": 1203, + "length": 49, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 33430, - "length": 1174, - "value": "\"\"" + "offset": 1235, + "length": 1, + "value": "\".queue.diskcache\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 33574, - "length": 59, - "value": "\"[Failed] Create channel request: There is no channel url.\"" + "offset": 7253, + "length": 51, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "StringLiteral", - "offset": 33696, - "length": 57, - "value": "\"[Succeed] Create channel: \"" + "offset": 7285, + "length": 1, + "value": "\".queue.memorycache\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 33749, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", + "kind": "IntegerLiteral", + "offset": 7517, "length": 2, - "value": "\"\"" + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", - "kind": "StringLiteral", - "offset": 33752, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", + "kind": "IntegerLiteral", + "offset": 7522, + "length": 4, + "value": "1024" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/SendbirdUI.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "IntegerLiteral", - "offset": 34572, - "length": 1, - "value": "0" + "offset": 7529, + "length": 4, + "value": "1024" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.swift", "kind": "IntegerLiteral", - "offset": 1674, + "offset": 7637, "length": 2, - "value": "16" + "value": "30" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", "kind": "IntegerLiteral", - "offset": 1900, - "length": 1, - "value": "0" + "offset": 1559, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", "kind": "IntegerLiteral", - "offset": 1922, - "length": 1, - "value": "0" + "offset": 1614, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUGroupChannelListViewModel.swift", + "kind": "StringLiteral", + "offset": 1434, + "length": 28, + "value": "\"SendbirdUIKit.SBUGroupChannelListViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/Channel\/SBUBaseChannelViewController.Deprecated.swift", "kind": "BooleanLiteral", - "offset": 3054, + "offset": 9036, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "80.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", + "kind": "BooleanLiteral", + "offset": 839, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "IntegerLiteral", - "offset": 3175, - "length": 2, - "value": "46" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", + "kind": "BooleanLiteral", + "offset": 890, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", "kind": "IntegerLiteral", - "offset": 3187, - "length": 2, - "value": "46" + "offset": 915, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 4230, + "offset": 947, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "IntegerLiteral", - "offset": 4683, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "IntegerLiteral", - "offset": 4697, - "length": 3, - "value": "-16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUserMessageCellParams.swift", + "kind": "StringLiteral", + "offset": 200, + "length": 24, + "value": "\"SendbirdUIKit.SBUUserMessageCellParams\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", "kind": "IntegerLiteral", - "offset": 4707, - "length": 2, - "value": "16" + "offset": 479, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", "kind": "IntegerLiteral", - "offset": 4947, + "offset": 691, "length": 1, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", "kind": "IntegerLiteral", - "offset": 5800, + "offset": 907, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "BooleanLiteral", - "offset": 6477, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", + "kind": "IntegerLiteral", + "offset": 1185, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", "kind": "BooleanLiteral", - "offset": 6647, + "offset": 1227, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "StringLiteral", - "offset": 7274, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", + "kind": "IntegerLiteral", + "offset": 1447, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", - "kind": "BooleanLiteral", - "offset": 7512, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", + "kind": "IntegerLiteral", + "offset": 1831, + "length": 2, + "value": "56" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "Array", - "offset": 1365, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageSearch\/Cell\/SBUMessageSearchResultCell.swift", + "kind": "IntegerLiteral", + "offset": 1888, "length": 2, - "value": "[]" + "value": "26" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", "kind": "StringLiteral", - "offset": 2948, + "offset": 712, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 826, "length": 2, - "value": "\"\"" + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 3680, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 961, "length": 2, - "value": "\"\"" + "value": "15" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Mention\/SBUUserMentionConfiguration.swift", "kind": "BooleanLiteral", - "offset": 5229, - "length": 4, - "value": "true" + "offset": 1290, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 5960, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", + "kind": "IntegerLiteral", + "offset": 1049, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", "kind": "BooleanLiteral", - "offset": 6370, - "length": 4, - "value": "true" + "offset": 1138, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", "kind": "StringLiteral", - "offset": 6649, - "length": 37, - "value": "\"Did receive error: \"" + "offset": 1237, + "length": 20, + "value": "\"transform.rotation\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 6682, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", + "kind": "IntegerLiteral", + "offset": 1288, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 6685, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", + "kind": "IntegerLiteral", + "offset": 1317, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "BooleanLiteral", - "offset": 8440, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUVoiceContentView.swift", + "kind": "FloatLiteral", + "offset": 1359, + "length": 3, + "value": "1.1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 8766, + "offset": 1259, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 9434, + "offset": 1936, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "StringLiteral", - "offset": 9489, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelList\/SBUOpenChannelListViewController.swift", - "kind": "IntegerLiteral", - "offset": 10105, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", "kind": "IntegerLiteral", - "offset": 713, + "offset": 2331, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 719, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 2577, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 729, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 4001, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "FloatLiteral", - "offset": 740, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 10335, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "Array", - "offset": 930, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "BooleanLiteral", + "offset": 11337, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "Array", - "offset": 968, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 15522, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "Array", - "offset": 1755, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", + "kind": "IntegerLiteral", + "offset": 15549, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/SBUBaseChannelViewController.swift", "kind": "BooleanLiteral", - "offset": 2084, + "offset": 20668, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 2123, + "offset": 7319, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 2282, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "IntegerLiteral", + "offset": 7348, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 2329, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "IntegerLiteral", + "offset": 7565, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2587, - "length": 2, - "value": "56" + "offset": 7575, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2670, + "offset": 7586, "length": 2, - "value": "16" + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2680, + "offset": 7597, "length": 2, - "value": "19" + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2692, + "offset": 7632, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2702, + "offset": 7666, "length": 2, - "value": "19" + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 2797, - "length": 2, - "value": "16" + "offset": 7841, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 3129, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "IntegerLiteral", + "offset": 8187, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 3196, - "length": 5, - "value": "false" + "offset": 8472, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3747, + "offset": 8502, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3757, + "offset": 8716, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3765, + "offset": 9018, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3776, + "offset": 9786, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3844, - "length": 1, - "value": "0" + "offset": 10478, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3912, - "length": 1, - "value": "0" + "offset": 10575, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "FloatLiteral", - "offset": 3937, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "IntegerLiteral", + "offset": 10668, + "length": 2, + "value": "38" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3993, + "offset": 10756, "length": 2, - "value": "60" + "value": "87" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 4037, - "length": 4, - "value": "true" + "offset": 10866, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 4162, - "length": 1, - "value": "0" + "offset": 11370, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 5689, - "length": 1, - "value": "0" + "offset": 11622, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 6212, + "offset": 11827, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 6280, - "length": 1, - "value": "0" + "offset": 11844, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 6292, + "offset": 11864, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 6316, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 6536, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 6819, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "IntegerLiteral", + "offset": 11882, + "length": 3, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7178, + "offset": 13083, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7315, + "offset": 13460, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7319, + "offset": 13811, "length": 1, - "value": "9" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7355, + "offset": 14265, "length": 2, - "value": "41" + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 7367, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "StringLiteral", + "offset": 16072, "length": 2, - "value": "44" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 7384, - "length": 2, - "value": "10" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 16105, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 7389, - "length": 2, - "value": "99" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 16135, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "IntegerLiteral", - "offset": 7426, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 16306, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 16404, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 17184, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "BooleanLiteral", + "offset": 17265, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "StringLiteral", + "offset": 18750, + "length": 60, + "value": "\"Message input view changed mode to \"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputView.swift", + "kind": "StringLiteral", + "offset": 18809, "length": 2, - "value": "49" + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 7438, + "offset": 2347, "length": 2, - "value": "44" + "value": "56" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 7492, + "offset": 2445, "length": 2, - "value": "57" + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 7504, + "offset": 2541, "length": 2, - "value": "44" + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 7725, - "length": 1, - "value": "0" + "offset": 3194, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 8705, + "offset": 3405, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 10123, + "offset": 3614, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelList\/ChannelCell\/SBUGroupChannelCell.swift", "kind": "IntegerLiteral", - "offset": 10180, + "offset": 3812, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "BooleanLiteral", - "offset": 10623, - "length": 4, - "value": "true" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 10717, + "offset": 8528, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/NotificationChannel\/Chat\/SBUChatNotificationChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 10790, + "offset": 24786, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", - "kind": "StringLiteral", - "offset": 228, - "length": 26, - "value": "\"SendbirdUIKit.SBUReactionsViewController\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/SBUGlobals.Deprecated.swift", - "kind": "BooleanLiteral", - "offset": 1925, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardListView.swift", + "kind": "FloatLiteral", + "offset": 295, "length": 5, - "value": "false" + "value": "258.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardListView.swift", "kind": "IntegerLiteral", - "offset": 2041, - "length": 3, - "value": "100" + "offset": 548, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2772, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Carousel\/Views\/SBUCardListView.swift", + "kind": "IntegerLiteral", + "offset": 750, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "BooleanLiteral", - "offset": 2824, + "offset": 1222, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "IntegerLiteral", - "offset": 2943, + "offset": 2006, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "IntegerLiteral", - "offset": 3033, - "length": 4, - "value": "1000" + "offset": 2782, + "length": 2, + "value": "55" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 3088, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", + "kind": "IntegerLiteral", + "offset": 2828, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "IntegerLiteral", - "offset": 3576, + "offset": 2910, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "BooleanLiteral", - "offset": 3977, + "offset": 3100, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "BooleanLiteral", - "offset": 4018, - "length": 4, - "value": "true" + "offset": 3511, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", + "kind": "BooleanLiteral", + "offset": 3901, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "StringLiteral", - "offset": 4193, - "length": 67, - "value": "\"\"" + "offset": 1463, + "length": 19, + "value": "\"SendbirdUIKit.SBUMessageStateView\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUMessageStateView.swift", "kind": "StringLiteral", - "offset": 4239, - "length": 1, - "value": "\".\"" + "offset": 1463, + "length": 19, + "value": "\"SendbirdUIKit.SBUMessageStateView\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", + "kind": "BooleanLiteral", + "offset": 562, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoCollectionViewCell.swift", + "kind": "BooleanLiteral", + "offset": 851, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 4259, - "length": 1, - "value": "\"\"" + "offset": 263, + "length": 11, + "value": "\"reactions\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 5395, - "length": 67, - "value": "\"\"" + "offset": 306, + "length": 15, + "value": "\"enable_og_tag\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 5441, - "length": 1, - "value": "\".\"" + "offset": 371, + "length": 33, + "value": "\"use_last_messege_on_super_group\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 5461, - "length": 1, - "value": "\"\"" + "offset": 439, + "length": 18, + "value": "\"use_last_seen_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6052, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 500, + "length": 26, + "value": "\"enable_message_threading\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6504, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 580, + "length": 37, + "value": "\"allow_group_channel_create_from_sdk\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6881, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 671, + "length": 37, + "value": "\"allow_group_channel_invite_from_sdk\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7127, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 760, + "length": 35, + "value": "\"allow_operators_to_edit_operators\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 7846, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 846, + "length": 34, + "value": "\"allow_operators_to_ban_operators\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 8848, - "length": 47, - "value": "\"[Request] Load channel: \"" + "offset": 924, + "length": 27, + "value": "\"allow_super_group_channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 8894, - "length": 2, - "value": "\"\"" + "offset": 1004, + "length": 36, + "value": "\"allow_group_channel_leave_from_sdk\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 9342, - "length": 69, - "value": "\"[Succeed] Load channel request: \"" + "offset": 1094, + "length": 37, + "value": "\"allow_group_channel_update_from_sdk\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 9410, - "length": 2, - "value": "\"\"" + "offset": 1197, + "length": 49, + "value": "\"allow_only_operator_sdk_to_update_group_channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 10477, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", + "kind": "StringLiteral", + "offset": 1288, + "length": 25, + "value": "\"allow_broadcast_channel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 11391, - "length": 62, - "value": "\"[Failed] Load channel request: \"" + "offset": 1346, + "length": 19, + "value": "\"message_search_v3\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUAvailable.swift", "kind": "StringLiteral", - "offset": 11452, - "length": 2, - "value": "\"\"" + "offset": 1438, + "length": 28, + "value": "\"allow_user_update_from_sdk\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11853, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", + "kind": "FloatLiteral", + "offset": 414, "length": 4, - "value": "true" + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", "kind": "BooleanLiteral", - "offset": 11892, - "length": 5, - "value": "false" + "offset": 598, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", "kind": "BooleanLiteral", - "offset": 12121, - "length": 5, - "value": "false" + "offset": 947, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", "kind": "BooleanLiteral", - "offset": 12161, + "offset": 1189, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/Cell\/SBUBaseChannelSettingCell.swift", "kind": "BooleanLiteral", - "offset": 12651, + "offset": 1236, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 13205, - "length": 4, - "value": "true" + "offset": 400, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 13244, - "length": 4, - "value": "true" + "offset": 603, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 13283, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUUnknownMessageCellParams.swift", "kind": "StringLiteral", - "offset": 14449, - "length": 187, - "value": "\"loadInitialMessages,\nstartingPoint : \"" + "offset": 203, + "length": 27, + "value": "\"SendbirdUIKit.SBUUnknownMessageCellParams\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", "kind": "StringLiteral", - "offset": 14550, - "length": 1, - "value": "\",\ninitialMessages : \"" + "offset": 20355, + "length": 12, + "value": "\"created_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", "kind": "StringLiteral", - "offset": 14620, - "length": 7153, - "value": "\"\"" + "offset": 20381, + "length": 12, + "value": "\"updated_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14773, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", + "kind": "StringLiteral", + "offset": 20355, + "length": 12, + "value": "\"created_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", "kind": "StringLiteral", - "offset": 15469, - "length": 30, - "value": "\"Prev message already loading\"" + "offset": 20381, + "length": 12, + "value": "\"updated_at\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", + "kind": "StringLiteral", + "offset": 20625, + "length": 12, + "value": "\"updated_at\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", + "kind": "StringLiteral", + "offset": 20691, + "length": 12, + "value": "\"theme_mode\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", "kind": "StringLiteral", - "offset": 15559, - "length": 69, - "value": "\"[Request] Prev message list from : \"" + "offset": 20625, + "length": 12, + "value": "\"updated_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", "kind": "StringLiteral", - "offset": 15627, + "offset": 20691, + "length": 12, + "value": "\"theme_mode\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUNotificationChannelManager.swift", + "kind": "Array", + "offset": 20858, "length": 2, - "value": "\"\"" + "value": "[]" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMentionLimitGuideCell.swift", + "kind": "IntegerLiteral", + "offset": 466, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 15668, - "length": 4, - "value": "true" + "offset": 2260, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 15836, + "offset": 2464, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 15878, + "offset": 2506, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16081, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 16555, + "offset": 2590, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/VoiceNote\/SBUVoiceMessageInputView.swift", "kind": "BooleanLiteral", - "offset": 16603, + "offset": 13266, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 16837, - "length": 40, - "value": "\"Prev message list request is not valid\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1185, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 16920, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", + "kind": "Array", + "offset": 1294, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUOpenChannelListViewModel.swift", "kind": "StringLiteral", - "offset": 17016, - "length": 52, - "value": "\"[Prev message response] \"" + "offset": 1061, + "length": 27, + "value": "\"SendbirdUIKit.SBUOpenChannelListViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 17058, - "length": 8, - "value": "\" messages\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "Array", + "offset": 2278, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17399, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "IntegerLiteral", + "offset": 2460, + "length": 2, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17599, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "FloatLiteral", + "offset": 2588, "length": 4, - "value": "true" + "value": "56.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 17659, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "FloatLiteral", + "offset": 2625, + "length": 4, + "value": "48.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 17811, - "length": 30, - "value": "\"Next message already loading\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "FloatLiteral", + "offset": 2660, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 17901, - "length": 65, - "value": "\"[Request] Next message list from : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "FloatLiteral", + "offset": 2696, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 17965, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "IntegerLiteral", + "offset": 3744, "length": 2, - "value": "\"\"" + "value": "1" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", + "kind": "IntegerLiteral", + "offset": 4485, + "length": 2, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUActionSheet.swift", "kind": "BooleanLiteral", - "offset": 18006, + "offset": 8032, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "IntegerLiteral", - "offset": 18178, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "StringLiteral", + "offset": 249, + "length": 11, + "value": "\"SBUConfig\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "StringLiteral", + "offset": 2361, + "length": 56, + "value": "\"\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "StringLiteral", + "offset": 2393, "length": 1, - "value": "0" + "value": "\".queue.diskcache.config\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", "kind": "IntegerLiteral", - "offset": 18216, + "offset": 2490, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18415, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "StringLiteral", + "offset": 2533, + "length": 23, + "value": "\"sbu_config_updated_at\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 18795, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "StringLiteral", + "offset": 2581, + "length": 19, + "value": "\"sbu_config_config\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 19002, - "length": 40, - "value": "\"Next message list request is not valid\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/CacheManager\/SBUCacheManager.Config.swift", + "kind": "BooleanLiteral", + "offset": 3630, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/NotificationSettings\/SBUGroupChannelPushSettingsViewModel.swift", "kind": "StringLiteral", - "offset": 19134, - "length": 52, - "value": "\"[Next message Response] \"" + "offset": 744, + "length": 36, + "value": "\"SendbirdUIKit.SBUGroupChannelPushSettingsViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", "kind": "StringLiteral", - "offset": 19176, - "length": 8, - "value": "\" messages\"" + "offset": 648, + "length": 6, + "value": "\"spin\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19509, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUAnimation.swift", + "kind": "StringLiteral", + "offset": 648, + "length": 6, + "value": "\"spin\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", "kind": "BooleanLiteral", - "offset": 19691, - "length": 4, - "value": "true" + "offset": 4659, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 20102, - "length": 69, - "value": "\"[Request] Both message list from : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/Channel\/GroupChannel\/SBUGroupChannelModule.List.swift", + "kind": "Dictionary", + "offset": 5721, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/String+SBUIKit.swift", "kind": "StringLiteral", - "offset": 20170, + "offset": 892, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", "kind": "BooleanLiteral", - "offset": 20449, - "length": 4, - "value": "true" + "offset": 458, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20582, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/ChannelList\/SBUBaseChannelListViewModel.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 27, + "value": "\"SendbirdUIKit.SBUBaseChannelListViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 20854, - "length": 1, - "value": "0" + "offset": 1659, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 20926, - "length": 1, - "value": "2" + "offset": 1719, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 20992, - "length": 1, - "value": "2" + "offset": 1780, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21041, - "length": 1, - "value": "0" + "offset": 1835, + "length": 2, + "value": "24" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21117, - "length": 1, - "value": "2" + "offset": 1895, + "length": 2, + "value": "32" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21187, - "length": 1, - "value": "2" + "offset": 1959, + "length": 2, + "value": "48" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21328, - "length": 1, - "value": "0" + "offset": 2020, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21425, - "length": 1, - "value": "0" + "offset": 2131, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21564, - "length": 1, - "value": "0" + "offset": 2185, + "length": 2, + "value": "38" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "IntegerLiteral", - "offset": 21685, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 21783, - "length": 166, - "value": "\"Fetch from : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 21832, - "length": 1, - "value": "\",\nlimit: prev = \"" + "offset": 2238, + "length": 2, + "value": "60" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 21888, - "length": 1, - "value": "\",\nnext = \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2289, + "length": 2, + "value": "28" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 21933, - "length": 2499, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2345, + "length": 2, + "value": "40" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21980, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2411, + "length": 2, + "value": "36" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22402, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2466, + "length": 2, + "value": "40" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22478, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2527, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23433, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2582, + "length": 2, + "value": "22" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 23592, - "length": 43, - "value": "\"Initial message list request is not valid\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "IntegerLiteral", + "offset": 2642, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", "kind": "BooleanLiteral", - "offset": 23689, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 23754, - "length": 52, - "value": "\"[Both message response] \"" + "offset": 3936, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 23796, - "length": 8, - "value": "\" messages\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Enums\/SBUIconSetType.swift", + "kind": "Array", + "offset": 10599, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", "kind": "IntegerLiteral", - "offset": 24139, + "offset": 2330, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24442, - "length": 276, - "value": "\"[Initial message response] Prev count : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24561, - "length": 1, - "value": "\",\nprevLimit : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24639, - "length": 1, - "value": "\",\nhasPrev : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24702, - "length": 28, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24740, - "length": 268, - "value": "\"[Initial message response] Next count : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24859, - "length": 1, - "value": "\",\nnextLimit : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24933, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "kind": "IntegerLiteral", + "offset": 3263, "length": 1, - "value": "\",\nhasNext : \"" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 24992, - "length": 37, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "kind": "BooleanLiteral", + "offset": 5410, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 25039, - "length": 161, - "value": "\"[Initial message response] First : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/ViewParams\/SBUQuotedBaseMessageViewParams.swift", + "kind": "BooleanLiteral", + "offset": 6115, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 25127, - "length": 1, - "value": "\",\nLast : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "kind": "BooleanLiteral", + "offset": 1189, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 25184, - "length": 1636, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", + "kind": "BooleanLiteral", + "offset": 11242, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/Date+SBUIKit.swift", "kind": "BooleanLiteral", - "offset": 25304, - "length": 5, - "value": "false" + "offset": 11773, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", "kind": "BooleanLiteral", - "offset": 25376, + "offset": 718, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 25806, - "length": 67, - "value": "\"[Failed] Send user message request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/Replies\/MessageView\/SBUQuotedFileMessageView.swift", + "kind": "BooleanLiteral", + "offset": 928, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 25872, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", + "kind": "BooleanLiteral", + "offset": 460, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 26263, - "length": 57, - "value": "\"[Succeed] Send user message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", + "kind": "IntegerLiteral", + "offset": 754, + "length": 5, + "value": "10001" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/NewMessageInfo\/SBUNewMessageInfo.swift", "kind": "StringLiteral", - "offset": 26319, - "length": 2, - "value": "\"\"" + "offset": 252, + "length": 17, + "value": "\"SendbirdUIKit.SBUNewMessageInfo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/SBUUserMessageCell.swift", "kind": "BooleanLiteral", - "offset": 26397, + "offset": 1332, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 26830, - "length": 133, - "value": "\"[Failed] Send file message request:\n\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Extension\/UIButton+SBUIKit.swift", + "kind": "IntegerLiteral", + "offset": 1404, + "length": 2, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 26939, - "length": 2825, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", + "kind": "IntegerLiteral", + "offset": 318, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 27370, - "length": 57, - "value": "\"[Succeed] Send file message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", + "kind": "IntegerLiteral", + "offset": 364, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 27426, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", + "kind": "IntegerLiteral", + "offset": 318, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 27517, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUMessageInputMode.swift", + "kind": "IntegerLiteral", + "offset": 364, + "length": 10, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", "kind": "BooleanLiteral", - "offset": 28037, + "offset": 1820, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", "kind": "BooleanLiteral", - "offset": 28121, + "offset": 2278, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 28166, - "length": 76, - "value": "\"[Failed] Resend failed user message request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", + "kind": "BooleanLiteral", + "offset": 3845, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 28241, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", + "kind": "FloatLiteral", + "offset": 4179, + "length": 3, + "value": "0.7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 28627, - "length": 62, - "value": "\"[Succeed] Resend failed file message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", + "kind": "BooleanLiteral", + "offset": 6037, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 28688, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", + "kind": "BooleanLiteral", + "offset": 7192, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", "kind": "BooleanLiteral", - "offset": 28775, + "offset": 7781, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SBUGlobals.swift", "kind": "BooleanLiteral", - "offset": 29416, - "length": 5, - "value": "false" + "offset": 8247, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 29782, - "length": 193, - "value": "\"hasNext : \"" + "offset": 288, + "length": 31, + "value": "\"enableUsingDefaultUserProfile\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 29843, - "length": 1, - "value": "\",\nfirst : \"" + "offset": 288, + "length": 31, + "value": "\"enableUsingDefaultUserProfile\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 29902, - "length": 1, - "value": "\",\nlast : \"" + "offset": 476, + "length": 16, + "value": "\"enableDocument\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 29959, - "length": 298, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "IntegerLiteral", - "offset": 30069, - "length": 1, - "value": "0" + "offset": 476, + "length": 16, + "value": "\"enableDocument\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30267, - "length": 169, - "value": "\"newTimestamp : \"" + "offset": 612, + "length": 13, + "value": "\"enablePhoto\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30313, - "length": 1, - "value": "\",\nlastUpdatedTimestamp : \"" + "offset": 656, + "length": 13, + "value": "\"enableVideo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30378, - "length": 1, - "value": "\",\ncurrentTime : \"" + "offset": 612, + "length": 13, + "value": "\"enablePhoto\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30420, - "length": 499, - "value": "\"\"" + "offset": 656, + "length": 13, + "value": "\"enableVideo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30663, - "length": 21, - "value": "\"set to \"" + "offset": 790, + "length": 13, + "value": "\"enablePhoto\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30683, - "length": 2, - "value": "\"\"" + "offset": 834, + "length": 13, + "value": "\"enableVideo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30929, - "length": 194, - "value": "\"reset timestamp to : \"" + "offset": 790, + "length": 13, + "value": "\"enablePhoto\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 30994, - "length": 1, - "value": "\",\nstartingPoint : \"" + "offset": 834, + "length": 13, + "value": "\"enableVideo\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 31065, - "length": 1, - "value": "\",\ncurrentTime : \"" + "offset": 1123, + "length": 13, + "value": "\"enableOgtag\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 31107, - "length": 3949, - "value": "\"\"" + "offset": 1177, + "length": 23, + "value": "\"enableTypingIndicator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31485, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", + "kind": "StringLiteral", + "offset": 1235, + "length": 17, + "value": "\"enableReactions\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 31792, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 15, + "value": "\"enableMention\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 32562, - "length": 42, - "value": "\"[Request] Message change logs with token\"" + "offset": 1338, + "length": 20, + "value": "\"enableVoiceMessage\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 32827, - "length": 59, - "value": "\"[Request] Message change logs with last updated timestamp\"" + "offset": 1123, + "length": 13, + "value": "\"enableOgtag\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 33381, - "length": 76, - "value": "\"[Request] Changelog added message list from : \"" + "offset": 1177, + "length": 23, + "value": "\"enableTypingIndicator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 33456, - "length": 2, - "value": "\"\"" + "offset": 1235, + "length": 17, + "value": "\"enableReactions\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "IntegerLiteral", - "offset": 33626, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 15, + "value": "\"enableMention\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 33727, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", + "kind": "StringLiteral", + "offset": 1338, + "length": 20, + "value": "\"enableVoiceMessage\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 34189, - "length": 51, - "value": "\"Changelog added message list request is not valid\"" + "offset": 1573, + "length": 23, + "value": "\"enableTypingIndicator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 34375, - "length": 55, - "value": "\"[Changelog added response] \"" + "offset": 1642, + "length": 28, + "value": "\"enableMessageReceiptStatus\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 34420, - "length": 8, - "value": "\" messages\"" + "offset": 1573, + "length": 23, + "value": "\"enableTypingIndicator\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 35066, - "length": 123, - "value": "\"[Failed] Message change logs request:\n\"" + "offset": 1642, + "length": 28, + "value": "\"enableMessageReceiptStatus\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 35169, - "length": 181, - "value": "\"\"" + "offset": 1802, + "length": 21, + "value": "\"enableMessageSearch\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 35300, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", + "kind": "StringLiteral", + "offset": 1802, + "length": 21, + "value": "\"enableMessageSearch\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 35364, - "length": 209, - "value": "\"[Response]\n\"" + "offset": 1946, + "length": 13, + "value": "\"enableOgtag\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/SBUConfig.CodingKeys.swift", "kind": "StringLiteral", - "offset": 35420, - "length": 21, - "value": "\"%d updated messages\"" + "offset": 1946, + "length": 13, + "value": "\"enableOgtag\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "kind": "Array", + "offset": 1962, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 35472, - "length": 1, - "value": "\",\n\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "kind": "Dictionary", + "offset": 2342, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 35503, - "length": 21, - "value": "\"%d deleted messages\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "kind": "Dictionary", + "offset": 2471, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", "kind": "IntegerLiteral", - "offset": 35554, + "offset": 2748, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", "kind": "StringLiteral", - "offset": 35557, - "length": 22044, + "offset": 2816, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 35892, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 36490, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", + "kind": "StringLiteral", + "offset": 2860, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", "kind": "BooleanLiteral", - "offset": 37202, + "offset": 2958, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 37299, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 37503, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 37973, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 38059, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 38094, - "length": 95, - "value": "\"Loaded added messages : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 38141, - "length": 1, - "value": "\", hasNext : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Util\/SBUMentionManager.swift", "kind": "StringLiteral", - "offset": 38188, + "offset": 6588, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 38398, - "length": 24, - "value": "\"[Request] Start typing\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 38605, - "length": 22, - "value": "\"[Request] End typing\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "IntegerLiteral", - "offset": 39547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 39552, - "length": 1, + "offset": 418, + "length": 9, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 40172, - "length": 1, - "value": "0" + "offset": 418, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 40989, - "length": 1, - "value": "0" + "offset": 418, + "length": 9, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 40994, - "length": 1, + "offset": 802, + "length": 7, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 41144, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 42019, - "length": 42, - "value": "\"Couldn't retrieve thread list.: \"" + "offset": 819, + "length": 13, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 42060, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 842, + "length": 10, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42096, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 862, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42163, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 878, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42188, - "length": 5, - "value": "false" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 42277, - "length": 41, - "value": "\"Response of retrieve thread list is nil\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 802, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42353, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 819, + "length": 13, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42378, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 842, + "length": 10, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42418, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 862, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 42778, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 878, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 43003, - "length": 5, - "value": "false" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 43288, - "length": 1, - "value": "0" + "offset": 802, + "length": 7, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", "kind": "IntegerLiteral", - "offset": 43449, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 43841, - "length": 4, - "value": "true" + "offset": 819, + "length": 13, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 1722, - "length": 25, - "value": "\"SendbirdUIKit.SBUMessageThreadViewModel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 842, + "length": 10, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 45468, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 862, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 45511, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/PhotoLibrary\/SBUPhotoAccess.swift", + "kind": "IntegerLiteral", + "offset": 878, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 45541, - "length": 5, - "value": "false" + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", "kind": "BooleanLiteral", - "offset": 45939, + "offset": 13501, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 46258, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", "kind": "StringLiteral", - "offset": 46562, - "length": 32, - "value": "\"Did update message: \"" + "offset": 1232, + "length": 30, + "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", "kind": "StringLiteral", - "offset": 46593, - "length": 2, - "value": "\"\"" + "offset": 1232, + "length": 30, + "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/MessageThread\/SBUMessageThreadViewController.swift", "kind": "StringLiteral", - "offset": 46790, - "length": 32, - "value": "\"Did update message: \"" + "offset": 1232, + "length": 30, + "value": "\"SendbirdUIKit.SBUMessageThreadViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 46821, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "kind": "IntegerLiteral", + "offset": 2196, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 46895, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "kind": "IntegerLiteral", + "offset": 2218, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 47824, - "length": 63, - "value": "\"Did update message: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "kind": "FloatLiteral", + "offset": 2293, + "length": 3, + "value": "0.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 47886, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", + "kind": "IntegerLiteral", + "offset": 2322, "length": 2, - "value": "\"\"" + "value": "50" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/FileViewer\/SBUFileViewController.swift", "kind": "StringLiteral", - "offset": 48494, - "length": 48, - "value": "\"Did update message: \"" + "offset": 809, + "length": 21, + "value": "\"SendbirdUIKit.SBUFileViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 48541, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "kind": "IntegerLiteral", + "offset": 521, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 48749, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "kind": "IntegerLiteral", + "offset": 527, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 49139, - "length": 35, - "value": "\"Message was deleted: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "kind": "IntegerLiteral", + "offset": 537, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 49173, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "kind": "IntegerLiteral", + "offset": 548, "length": 2, - "value": "\"\"" + "value": "76" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 49497, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", + "kind": "IntegerLiteral", + "offset": 882, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/Menu\/SBUMenuSheetViewController.swift", "kind": "StringLiteral", - "offset": 49826, - "length": 55, - "value": "\"Channel was changed, ChannelURL:\"" + "offset": 213, + "length": 26, + "value": "\"SendbirdUIKit.SBUMenuSheetViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 49880, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 331, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 50328, - "length": 54, - "value": "\"Channel was frozen, ChannelURL:\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 50381, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 50830, - "length": 56, - "value": "\"Channel was unfrozen, ChannelURL:\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 331, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 50885, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 51363, - "length": 16, - "value": "\"You are muted.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 51851, - "length": 18, - "value": "\"You are unmuted.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 331, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 52718, - "length": 17, - "value": "\"You are banned.\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 9, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 54746, - "length": 53, - "value": "\"messageCollection addedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 9, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 54798, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 55418, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 530, + "length": 19, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 55486, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 559, + "length": 19, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 55845, - "length": 55, - "value": "\"messageCollection updatedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 588, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 55899, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 15, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "BooleanLiteral", - "offset": 56441, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 629, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 56730, - "length": 55, - "value": "\"messageCollection deletedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 56784, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 530, + "length": 19, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 57312, - "length": 34, - "value": "\"messageCollection changedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 559, + "length": 19, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", - "kind": "StringLiteral", - "offset": 57570, - "length": 34, - "value": "\"messageCollection deletedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 588, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/UserList\/SBUUserListModule.Header.swift", - "kind": "StringLiteral", - "offset": 6460, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 15, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "Array", - "offset": 1083, - "length": 2, - "value": "[]" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 629, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "StringLiteral", - "offset": 1925, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 508, + "length": 12, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "StringLiteral", - "offset": 3020, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 530, + "length": 19, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "BooleanLiteral", - "offset": 3963, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", + "kind": "IntegerLiteral", + "offset": 559, + "length": 19, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", "kind": "IntegerLiteral", - "offset": 4083, - "length": 1, - "value": "0" + "offset": 588, + "length": 6, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", "kind": "IntegerLiteral", - "offset": 4093, - "length": 1, - "value": "0" + "offset": 604, + "length": 15, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", "kind": "IntegerLiteral", - "offset": 4101, - "length": 1, - "value": "0" + "offset": 629, + "length": 19, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", "kind": "IntegerLiteral", - "offset": 4112, + "offset": 2548, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoiceRecorder.swift", "kind": "StringLiteral", - "offset": 5943, - "length": 22, - "value": "\"Not a group channel.\"" + "offset": 2089, + "length": 16, + "value": "\"SendbirdUIKit.SBUVoiceRecorder\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 6322, + "offset": 739, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", "kind": "BooleanLiteral", - "offset": 6412, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "StringLiteral", - "offset": 6691, - "length": 37, - "value": "\"Did receive error: \"" + "offset": 778, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "StringLiteral", - "offset": 6724, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", + "kind": "IntegerLiteral", + "offset": 811, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/MessageCellParams\/SBUFileMessageCellParams.swift", "kind": "StringLiteral", - "offset": 6727, - "length": 2, - "value": "\"\"" + "offset": 200, + "length": 24, + "value": "\"SendbirdUIKit.SBUFileMessageCellParams\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "BooleanLiteral", - "offset": 8441, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Deprecated\/SBUTheme.Deprecated.swift", + "kind": "FloatLiteral", + "offset": 20612, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", - "kind": "BooleanLiteral", - "offset": 9457, - "length": 5, - "value": "false" + "value": "0.64" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/MessageSearch\/SBUMessageSearchViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBUNavigationTitleView.swift", "kind": "StringLiteral", - "offset": 9512, + "offset": 341, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Deprecated.swift", - "kind": "StringLiteral", - "offset": 3900, - "length": 26, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 20, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Deprecated\/Channel\/SBUGroupChannelViewController.Deprecated.swift", - "kind": "StringLiteral", - "offset": 3921, - "length": 4, - "value": "\"Cell\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 340, + "length": 17, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 1248, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 367, "length": 4, - "value": "true" + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2952, - "length": 10, - "value": "1" + "offset": 381, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2972, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3234, - "length": 13, - "value": "\"quote_reply\"" + "offset": 396, + "length": 17, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3234, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 423, "length": 13, - "value": "\"quote_reply\"" + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3882, - "length": 28, - "value": "\"Cannot decode SBUReplyType\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 20, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 4330, - "length": 28, - "value": "\"Cannot decode SBUReplyType\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 340, + "length": 17, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2952, - "length": 10, - "value": "1" + "offset": 367, + "length": 4, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2972, - "length": 6, - "value": "2" + "offset": 381, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2952, - "length": 10, - "value": "1" + "offset": 396, + "length": 17, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 2972, - "length": 6, - "value": "2" + "offset": 423, + "length": 13, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4622, - "length": 6, + "offset": 310, + "length": 20, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4705, - "length": 6, + "offset": 340, + "length": 17, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 5453, - "length": 40, - "value": "\"Cannot decode SBUThreadReplySelectType\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 367, + "length": 4, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", - "kind": "StringLiteral", - "offset": 5999, - "length": 40, - "value": "\"Cannot decode SBUThreadReplySelectType\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 381, + "length": 5, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4622, - "length": 6, - "value": "1" + "offset": 396, + "length": 17, + "value": "5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4705, - "length": 6, - "value": "2" + "offset": 423, + "length": 13, + "value": "6" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4622, - "length": 6, + "offset": 1964, + "length": 8, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "IntegerLiteral", - "offset": 4705, - "length": 6, + "offset": 1986, + "length": 7, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2202, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2007, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 2624, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2027, + "length": 7, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2903, - "length": 67, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 1964, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2949, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 1986, + "length": 7, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 2969, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2007, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3830, - "length": 67, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2027, + "length": 7, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3876, - "length": 1, - "value": "\".\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 1964, + "length": 8, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 3896, - "length": 1, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 1986, + "length": 7, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 4841, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2007, + "length": 6, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 4968, - "length": 47, - "value": "\"[Request] Load channel: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 2027, + "length": 7, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5014, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", + "kind": "IntegerLiteral", + "offset": 3640, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Manager\/SBUVoicePlayer.swift", "kind": "StringLiteral", - "offset": 5498, - "length": 69, - "value": "\"[Succeed] Load channel request: \"" + "offset": 1767, + "length": 14, + "value": "\"SendbirdUIKit.SBUVoicePlayer\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 5566, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 3124, "length": 2, - "value": "\"\"" + "value": "30" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "Array", - "offset": 6336, + "offset": 3644, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 6472, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 3978, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 6859, - "length": 4, - "value": "true" + "offset": 4930, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7637, - "length": 62, - "value": "\"[Failed] Load channel request: \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5768, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 7698, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5816, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 8077, - "length": 4, - "value": "true" + "offset": 5862, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 8176, - "length": 4, - "value": "true" + "offset": 5903, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 8233, + "offset": 6087, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 8462, + "offset": 6886, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUChatNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 8494, - "length": 4, - "value": "true" + "offset": 23263, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8892, - "length": 187, - "value": "\"loadInitialMessages,\nstartingPoint : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4116, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 8993, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4129, "length": 1, - "value": "\",\ninitialMessages : \"" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 9063, - "length": 16761, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4212, + "length": 2, + "value": "4" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 9785, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4226, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", "kind": "BooleanLiteral", - "offset": 9918, - "length": 5, - "value": "false" + "offset": 4285, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4445, + "length": 2, + "value": "20" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", "kind": "BooleanLiteral", - "offset": 10098, + "offset": 4512, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "StringLiteral", + "offset": 4597, + "length": 13, + "value": "\"searchField\"" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", + "kind": "IntegerLiteral", + "offset": 4752, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/MessageSearch\/SBUMessageSearchModule.Header.swift", "kind": "BooleanLiteral", - "offset": 10171, + "offset": 4806, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUUser.swift", "kind": "BooleanLiteral", - "offset": 10684, + "offset": 652, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUUser.swift", "kind": "BooleanLiteral", - "offset": 10905, + "offset": 771, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUUser.swift", "kind": "BooleanLiteral", - "offset": 10989, + "offset": 1887, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUUser.swift", "kind": "BooleanLiteral", - "offset": 11356, + "offset": 1910, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 11437, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Model\/SBUUser.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 7, + "value": "\"SendbirdUIKit.SBUUser\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "Array", - "offset": 11582, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "kind": "IntegerLiteral", + "offset": 3145, "length": 2, - "value": "[]" + "value": "30" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "Array", - "offset": 11656, + "offset": 3673, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "IntegerLiteral", - "offset": 11876, + "offset": 4007, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12605, - "length": 30, - "value": "\"Prev message already loading\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 12695, - "length": 29, - "value": "\"[Request] Prev message list\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13043, + "offset": 4959, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13201, - "length": 52, - "value": "\"[Prev message response] \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13243, - "length": 8, - "value": "\" messages\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5802, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13460, + "offset": 5850, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13550, - "length": 4, - "value": "true" + "offset": 5896, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 13745, - "length": 30, - "value": "\"Next message already loading\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", + "kind": "BooleanLiteral", + "offset": 5937, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 13913, - "length": 4, - "value": "true" + "offset": 6121, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 14141, + "offset": 6524, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 14274, + "offset": 21496, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUFeedNotificationChannelViewModel.swift", "kind": "StringLiteral", - "offset": 14413, - "length": 52, - "value": "\"[Next message Response] \"" + "offset": 3040, + "length": 35, + "value": "\"SendbirdUIKit.SBUFeedNotificationChannelViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 8, - "value": "\" messages\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", + "kind": "Dictionary", + "offset": 816, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/ViewModel\/SBUUserMessageTextViewModel.swift", "kind": "BooleanLiteral", - "offset": 14672, + "offset": 1750, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "FloatLiteral", + "offset": 74139, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "FloatLiteral", + "offset": 74904, "length": 4, - "value": "true" + "value": "0.64" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 14761, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "FloatLiteral", + "offset": 98715, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "FloatLiteral", + "offset": 134016, "length": 4, - "value": "true" + "value": "0.12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15483, - "length": 24, - "value": "\"[Request] Start typing\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 174213, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 15682, - "length": 22, - "value": "\"[Request] End typing\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 174933, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 16624, - "length": 1, - "value": "0" + "offset": 176623, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 16629, - "length": 1, - "value": "1" + "offset": 176858, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 17248, - "length": 1, - "value": "0" + "offset": 177639, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 18020, - "length": 1, - "value": "0" + "offset": 178153, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 18025, + "offset": 180088, "length": 1, - "value": "1" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "IntegerLiteral", - "offset": 18175, - "length": 1, - "value": "0" + "offset": 180267, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 19343, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 180432, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", "kind": "StringLiteral", - "offset": 1303, - "length": 24, - "value": "\"SendbirdUIKit.SBUGroupChannelViewModel\"" + "offset": 180668, + "length": 11, + "value": "\"#e0000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20019, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "StringLiteral", + "offset": 180735, + "length": 11, + "value": "\"#70000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20319, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "StringLiteral", + "offset": 180800, + "length": 11, + "value": "\"#e0000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 20540, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 181620, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20634, - "length": 53, - "value": "\"messageCollection addedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 181814, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 20686, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "IntegerLiteral", + "offset": 182181, "length": 2, - "value": "\"\"" + "value": "14" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21005, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "StringLiteral", + "offset": 182686, + "length": 11, + "value": "\"#e0000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21086, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "StringLiteral", + "offset": 182752, + "length": 11, + "value": "\"#70000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 21495, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Theme\/SBUTheme.swift", + "kind": "StringLiteral", + "offset": 182825, + "length": 11, + "value": "\"#e0000000\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", "kind": "BooleanLiteral", - "offset": 21795, + "offset": 364, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageCell\/FileMessageContentView\/SBUImageContentView.swift", "kind": "BooleanLiteral", - "offset": 22016, + "offset": 574, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22118, - "length": 55, - "value": "\"messageCollection updatedMessages : \"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22172, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 343, + "length": 4, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22351, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 349, "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22468, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 356, + "length": 3, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 22499, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 343, "length": 4, - "value": "true" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22782, - "length": 55, - "value": "\"messageCollection deletedMessages : \"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 5, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 22836, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 356, + "length": 3, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 23013, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 343, "length": 4, - "value": "true" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23234, - "length": 34, - "value": "\"messageCollection changedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 5, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23581, - "length": 34, - "value": "\"messageCollection deletedChannel\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "IntegerLiteral", + "offset": 356, + "length": 3, + "value": "3" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "StringLiteral", - "offset": 23809, - "length": 36, - "value": "\"messageCollection didDetectHugeGap\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Common\/SBULayoutableButton.swift", + "kind": "FloatLiteral", + "offset": 609, + "length": 3, + "value": "8.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "IntegerLiteral", - "offset": 24151, - "length": 1, - "value": "0" + "offset": 702, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "IntegerLiteral", - "offset": 24230, + "offset": 753, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "IntegerLiteral", - "offset": 24240, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 24500, - "length": 5, - "value": "false" + "offset": 872, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25449, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "kind": "IntegerLiteral", + "offset": 918, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", - "kind": "BooleanLiteral", - "offset": 25475, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "kind": "IntegerLiteral", + "offset": 968, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", - "kind": "StringLiteral", - "offset": 1984, - "length": 2, - "value": "\"\"" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "kind": "IntegerLiteral", + "offset": 1017, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "StringLiteral", - "offset": 2479, + "offset": 1076, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 4140, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 4566, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", - "kind": "BooleanLiteral", - "offset": 5248, + "offset": 1317, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 7814, + "offset": 1373, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", - "kind": "IntegerLiteral", - "offset": 8186, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 8236, - "length": 4, - "value": "true" + "offset": 1414, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 8478, - "length": 4, - "value": "true" + "offset": 1450, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/ChannelSettings\/SBUOpenChannelSettingsViewController.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 8585, + "offset": 1488, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "IntegerLiteral", - "offset": 339, - "length": 2, - "value": "16" + "offset": 1606, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 432, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "kind": "BooleanLiteral", + "offset": 1831, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 570, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", + "kind": "BooleanLiteral", + "offset": 2097, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/CellView\/SBUUserMessageTextView.swift", "kind": "BooleanLiteral", - "offset": 1183, + "offset": 2601, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3022, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 240, + "length": 13, + "value": "\"E, MMM yyyy\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3036, - "length": 3, - "value": "-16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 288, + "length": 14, + "value": "\"MMM dd, yyyy\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3046, - "length": 2, - "value": "13" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 334, + "length": 11, + "value": "\"E, MMM dd\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3058, - "length": 2, - "value": "12" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 376, + "length": 8, + "value": "\"MMM dd\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3135, - "length": 2, - "value": "31" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 9, + "value": "\"hh:mm a\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3208, - "length": 2, - "value": "51" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 7, + "value": "\"hh:mm\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3273, - "length": 2, - "value": "24" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 495, + "length": 12, + "value": "\"yyyy\/MM\/dd\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3285, - "length": 2, - "value": "24" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 545, + "length": 14, + "value": "\"yyyyMMddhhmm\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3421, - "length": 2, - "value": "16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 599, + "length": 16, + "value": "\"yyyyMMddhhmmss\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "IntegerLiteral", - "offset": 3435, - "length": 3, - "value": "-16" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 651, + "length": 16, + "value": "\"MMM dd hh:mm a\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "FloatLiteral", - "offset": 3448, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Constant\/SBUDateFormatSet.swift", + "kind": "StringLiteral", + "offset": 707, + "length": 22, + "value": "\"MMM dd, yyyy hh:mm a\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "FloatLiteral", - "offset": 3502, - "length": 3, - "value": "0.5" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "kind": "IntegerLiteral", + "offset": 1245, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 4344, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/ChannelSettings\/SBUBaseChannelSettingsViewController.swift", + "kind": "IntegerLiteral", + "offset": 1284, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 4894, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 889, "length": 4, - "value": "true" + "value": "1000" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 4939, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 939, + "length": 6, + "value": "600000" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 4989, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 1076, "length": 5, - "value": "false" + "value": "11025" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 5041, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 1118, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", - "kind": "BooleanLiteral", - "offset": 5327, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/VoiceMessage\/SBUVoiceMessageConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 1222, "length": 5, - "value": "false" + "value": "12000" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SendbirdUI.swift", "kind": "BooleanLiteral", - "offset": 5384, + "offset": 527, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SendbirdUI.swift", "kind": "BooleanLiteral", - "offset": 5431, + "offset": 17687, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SendbirdUI.swift", "kind": "BooleanLiteral", - "offset": 5482, + "offset": 21316, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 1007, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 1239, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 2170, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 2572, - "length": 1, - "value": "8" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/SendbirdUI.swift", + "kind": "BooleanLiteral", + "offset": 22637, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", "kind": "IntegerLiteral", - "offset": 5125, + "offset": 1674, "length": 2, - "value": "18" + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", "kind": "IntegerLiteral", - "offset": 5137, + "offset": 1900, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", "kind": "IntegerLiteral", - "offset": 5223, + "offset": 1922, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5295, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "kind": "BooleanLiteral", + "offset": 3054, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5306, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "80.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", "kind": "IntegerLiteral", - "offset": 5375, - "length": 1, - "value": "0" + "offset": 3175, + "length": 2, + "value": "46" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateOpenChannelModule.ProfileInput.swift", "kind": "IntegerLiteral", - "offset": 5386, - "length": 1, - "value": "0" + "offset": 3187, + "length": 2, + "value": "46" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", "kind": "IntegerLiteral", - "offset": 5478, + "offset": 713, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", "kind": "IntegerLiteral", - "offset": 5491, + "offset": 719, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", "kind": "IntegerLiteral", - "offset": 5499, + "offset": 729, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5510, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "kind": "FloatLiteral", + "offset": 740, + "length": 3, + "value": "0.5" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5588, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "kind": "Array", + "offset": 930, "length": 2, - "value": "32" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5600, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "kind": "Array", + "offset": 968, "length": 2, - "value": "32" + "value": "[]" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 5677, - "length": 2, - "value": "32" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Reaction\/SBUReactionsViewController.swift", + "kind": "StringLiteral", + "offset": 228, + "length": 26, + "value": "\"SendbirdUIKit.SBUReactionsViewController\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", "kind": "IntegerLiteral", - "offset": 5689, - "length": 2, - "value": "32" + "offset": 2041, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", "kind": "BooleanLiteral", - "offset": 6857, + "offset": 2772, "length": 4, "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9742, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "kind": "BooleanLiteral", + "offset": 2824, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", "kind": "IntegerLiteral", - "offset": 9767, + "offset": 2943, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9793, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "kind": "BooleanLiteral", + "offset": 3088, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", "kind": "IntegerLiteral", - "offset": 9742, + "offset": 3576, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9767, - "length": 1, - "value": "1" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "kind": "BooleanLiteral", + "offset": 12651, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9793, - "length": 1, - "value": "2" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/MessageThread\/SBUMessageThreadViewModel.swift", + "kind": "StringLiteral", + "offset": 1722, + "length": 25, + "value": "\"SendbirdUIKit.SBUMessageThreadViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", - "kind": "IntegerLiteral", - "offset": 9742, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "BooleanLiteral", + "offset": 1248, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 9767, - "length": 1, + "offset": 2952, + "length": 10, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 9793, - "length": 1, + "offset": 2972, + "length": 6, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/ChannelSettings\/OpenChannel\/SBUOpenChannelSettingsModule.Header.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "StringLiteral", - "offset": 3612, - "length": 2, - "value": "\"\"" + "offset": 3234, + "length": 13, + "value": "\"quote_reply\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "FloatLiteral", - "offset": 744, - "length": 4, - "value": "34.0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "StringLiteral", + "offset": 3234, + "length": 13, + "value": "\"quote_reply\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 823, - "length": 5, - "value": "false" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 2952, + "length": 10, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 1226, - "length": 4, - "value": "true" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 2972, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1273, - "length": 1, - "value": "0" + "offset": 2952, + "length": 10, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1279, - "length": 1, - "value": "0" + "offset": 2972, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1450, - "length": 1, - "value": "0" + "offset": 4622, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1456, - "length": 1, - "value": "0" + "offset": 4705, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1466, - "length": 1, - "value": "6" + "offset": 4622, + "length": 6, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", "kind": "IntegerLiteral", - "offset": 1477, - "length": 1, - "value": "6" + "offset": 4705, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 4622, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/Configuration\/Replies\/SBUReplyConfiguration.swift", + "kind": "IntegerLiteral", + "offset": 4705, + "length": 6, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 1693, + "offset": 2202, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", "kind": "BooleanLiteral", - "offset": 2172, + "offset": 2624, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 2490, - "length": 1, - "value": "0" + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/ViewModel\/Channel\/SBUGroupChannelViewModel.swift", + "kind": "StringLiteral", + "offset": 1303, + "length": 24, + "value": "\"SendbirdUIKit.SBUGroupChannelViewModel\"" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", "kind": "IntegerLiteral", - "offset": 2581, - "length": 1, - "value": "0" + "offset": 339, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", "kind": "IntegerLiteral", - "offset": 2674, - "length": 1, - "value": "0" + "offset": 432, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", "kind": "IntegerLiteral", - "offset": 2769, + "offset": 570, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/NotificationSettings\/Cell\/SBUChannelPushSettingCell.swift", "kind": "BooleanLiteral", - "offset": 2896, + "offset": 1183, "length": 5, "value": "false" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3038, + "offset": 1007, "length": 1, - "value": "5" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3307, + "offset": 1239, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 3398, - "length": 5, - "value": "false" + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3572, + "offset": 2170, "length": 1, "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "FloatLiteral", - "offset": 3724, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 3875, + "offset": 2572, "length": 1, - "value": "5" + "value": "8" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 4003, + "offset": 9742, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 4095, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 4170, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "FloatLiteral", - "offset": 4347, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "FloatLiteral", - "offset": 4500, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 4589, - "length": 2, - "value": "12" + "offset": 9767, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 5253, + "offset": 9793, "length": 1, "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 5325, + "offset": 9742, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 5437, + "offset": 9767, "length": 1, "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "StringLiteral", - "offset": 5633, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "StringLiteral", - "offset": 6488, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 6746, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 6758, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 7348, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 7458, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 7553, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 7565, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 7619, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 7746, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7758, - "length": 2, - "value": "40" + "offset": 9793, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7809, + "offset": 9742, "length": 1, "value": "0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 7991, - "length": 2, - "value": "40" + "offset": 9767, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/MessageInput\/SBUQuoteMessageInputView.swift", "kind": "IntegerLiteral", - "offset": 8003, - "length": 2, - "value": "40" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 8580, - "length": 5, - "value": "false" + "offset": 9793, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "BooleanLiteral", - "offset": 8942, + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "kind": "FloatLiteral", + "offset": 744, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "StringLiteral", - "offset": 8991, - "length": 2, - "value": "\"\"" + "value": "34.0" }, { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", + "filePath": "\/Users\/jaesung.lee\/Documents\/UIKit\/uikit-ios-v3\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", "kind": "BooleanLiteral", - "offset": 9372, + "offset": 823, "length": 5, "value": "false" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/View\/Channel\/Header\/SBUChannelTitleView.swift", - "kind": "IntegerLiteral", - "offset": 10091, - "length": 6, - "value": "100000" - }, - { - "filePath": "\/Users\/tez.park\/Documents\/1_Dev\/1_UIKit_v3_release\/uikit-ios\/SendbirdUIKit\/Module\/SelectUser\/CreateChannel\/SBUCreateChannelModule.List.swift", - "kind": "StringLiteral", - "offset": 2845, - "length": 2, - "value": "\"\"" } ] } \ No newline at end of file diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface index af0f65451..f3097eddf 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) +// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) // swift-module-flags: -target x86_64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name SendbirdUIKit // swift-module-flags-ignorable: -enable-bare-slash-regex import AVFAudio @@ -83,9 +83,9 @@ import simd @_Concurrency.MainActor(unsafe) public var stackView: SendbirdUIKit.SBUStackView @_Concurrency.MainActor(unsafe) public var fileImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var fileNameLabel: UIKit.UILabel - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with fileType: Swift.String, fileName: Swift.String, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) open func configure(with messageFileType: SendbirdUIKit.SBUMessageFileType, fileName: Swift.String, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) open func addHighlight(keyword: Swift.String, toAttributedString attributedString: Foundation.NSMutableAttributedString, highlightTextColor: UIKit.UIColor) @@ -134,8 +134,8 @@ extension SendbirdUIKit.SBUBaseChannelModule { @objc @_Concurrency.MainActor(unsafe) public var newMessageInfoView: UIKit.UIView? @objc @_Concurrency.MainActor(unsafe) public var scrollBottomView: UIKit.UIView? @objc @_Concurrency.MainActor(unsafe) public var userProfileView: UIKit.UIView? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelModuleListDataSource? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get @@ -206,8 +206,8 @@ extension SendbirdUIKit.SBUConfig { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } @objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUBaseMessageCell : SendbirdUIKit.SBUTableViewCell, SendbirdUIKit.SBUMessageCellProtocol { @@ -251,7 +251,7 @@ public protocol SBUOpenChannelListModuleHeaderDelegate : SendbirdUIKit.SBUBaseCh extension SendbirdUIKit.SBUOpenChannelListModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelListModule.Header { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUOpenChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate? { get set } @@ -260,7 +260,7 @@ extension SendbirdUIKit.SBUOpenChannelListModule { @available(*, unavailable, renamed: "SBUOpenChannelListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUOpenChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUOpenChannelListTheme) @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUOpenChannelListTheme? = nil) } } @@ -273,7 +273,7 @@ public protocol SBUCommonDelegate : AnyObject { @objc deinit } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUParentMessageInfoReactionView : SendbirdUIKit.SBUMessageReactionView { - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(maxWidth: CoreFoundation.CGFloat, useReaction: Swift.Bool, reactions: [SendbirdChatSDK.Reaction]) @_Concurrency.MainActor(unsafe) override open func getCellSize(count: Swift.Int) -> CoreFoundation.CGSize @_Concurrency.MainActor(unsafe) @objc override open func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int @@ -299,8 +299,8 @@ extension SendbirdUIKit.SBUMessageSearchModule { } @objc @_Concurrency.MainActor(unsafe) public var resultCell: SendbirdUIKit.SBUMessageSearchResultCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageSearchTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageSearchModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageSearchModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageSearchModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageSearchModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var resultList: [SendbirdChatSDK.BaseMessage] { @objc get } @@ -309,7 +309,7 @@ extension SendbirdUIKit.SBUMessageSearchModule { @available(*, unavailable, renamed: "SBUMessageSearchModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageSearchModuleListDelegate, dataSource: any SendbirdUIKit.SBUMessageSearchModuleListDataSource, theme: SendbirdUIKit.SBUMessageSearchTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageSearchModuleListDelegate, dataSource: SendbirdUIKit.SBUMessageSearchModuleListDataSource, theme: SendbirdUIKit.SBUMessageSearchTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageSearchTheme? = nil) @@ -349,18 +349,18 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageThreadModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? + @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? @objc @_Concurrency.MainActor(unsafe) public var mentionManager: SendbirdUIKit.SBUMentionManager? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleInputDelegate, dataSource: any SendbirdUIKit.SBUMessageThreadModuleInputDataSource, parentMessage: SendbirdChatSDK.BaseMessage?, mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleInputDelegate, dataSource: SendbirdUIKit.SBUMessageThreadModuleInputDataSource, parentMessage: SendbirdChatSDK.BaseMessage?, mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -407,11 +407,11 @@ public protocol SBUGroupChannelModuleHeaderDelegate : SendbirdUIKit.SBUBaseChann } extension SendbirdUIKit.SBUGroupChannelModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func onTapLeftBarButton() @_Concurrency.MainActor(unsafe) @objc override open func onTapRightBarButton() @@ -557,11 +557,11 @@ public protocol SBUGroupChannelSettingsViewModelDelegate : SendbirdUIKit.SBUBase @available(*, deprecated, renamed: "SBUGroupChannelSettingsViewModel") public typealias SBUChannelSettingsViewModel = SendbirdUIKit.SBUGroupChannelSettingsViewModel @objc open class SBUGroupChannelSettingsViewModel : SendbirdUIKit.SBUBaseChannelSettingsViewModel { - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String?) override public func updateChannel(channelName: Swift.String? = nil, coverImage: UIKit.UIImage? = nil) @@ -594,15 +594,15 @@ public protocol SBURegisterOperatorViewModelDelegate : SendbirdUIKit.SBUBaseSele public protocol SBURegisterOperatorViewModelDataSource : SendbirdUIKit.SBUBaseSelectUserViewModelDataSource { } @objc open class SBURegisterOperatorViewModel : SendbirdUIKit.SBUBaseSelectUserViewModel { - weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBURegisterOperatorViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBURegisterOperatorViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: (any SendbirdUIKit.SBURegisterOperatorViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBURegisterOperatorViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: SendbirdUIKit.SBURegisterOperatorViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBURegisterOperatorViewModelDataSource? = nil) public func registerAsOperators() public func registerAsOperators(users: [SendbirdUIKit.SBUUser]) public func registerAsOperators(userIds: [Swift.String]) @@ -635,15 +635,15 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.OpenChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleInputDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelModuleInputDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleInputDelegate, dataSource: SendbirdUIKit.SBUOpenChannelModuleInputDataSource, theme: SendbirdUIKit.SBUChannelTheme) @objc @_Concurrency.MainActor(unsafe) open func updateStyles(overlaid: Swift.Bool = false) @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @_Concurrency.MainActor(unsafe) @objc override open func pickVideoFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -677,8 +677,8 @@ extension SendbirdUIKit.SBUBaseSelectUserModule { } @objc @_Concurrency.MainActor(unsafe) public var userCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseSelectUserModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseSelectUserModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseSelectUserModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseSelectUserModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var userList: [SendbirdUIKit.SBUUser]? { @objc get } @@ -713,15 +713,15 @@ public protocol SBUInviteUserViewModelDelegate : SendbirdUIKit.SBUBaseSelectUser public protocol SBUInviteUserViewModelDataSource : SendbirdUIKit.SBUBaseSelectUserViewModelDataSource { } @objc open class SBUInviteUserViewModel : SendbirdUIKit.SBUBaseSelectUserViewModel { - weak public var delegate: (any SendbirdUIKit.SBUInviteUserViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUInviteUserViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUInviteUserViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUInviteUserViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: (any SendbirdUIKit.SBUInviteUserViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUInviteUserViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: SendbirdUIKit.SBUInviteUserViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUInviteUserViewModelDataSource? = nil) public func inviteUsers() public func invite(users: [SendbirdUIKit.SBUUser]) public func invite(userIds: [Swift.String]) @@ -737,9 +737,9 @@ public protocol SBUInviteUserViewModelDataSource : SendbirdUIKit.SBUBaseSelectUs get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(timestamp: Swift.Int64) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -754,11 +754,11 @@ public protocol SBURegisterOperatorModuleListDataSource : SendbirdUIKit.SBUBaseS } extension SendbirdUIKit.SBURegisterOperatorModule { @_inheritsConvenienceInitializers @objc(SBURegisterOperatorModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBURegisterOperatorModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBURegisterOperatorModuleListDataSource? { get set } @@ -767,7 +767,7 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @available(*, unavailable, renamed: "SBURegisterOperatorModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBURegisterOperatorModuleListDelegate, dataSource: any SendbirdUIKit.SBURegisterOperatorModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBURegisterOperatorModuleListDelegate, dataSource: SendbirdUIKit.SBURegisterOperatorModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } @@ -791,29 +791,27 @@ open class SBUModerationsViewModel { public var channelType: SendbirdChatSDK.ChannelType { get } - public init(channel: SendbirdChatSDK.BaseChannel, delegate: (any SendbirdUIKit.SBUModerationsViewModelDelegate)? = nil) - public init(channelURL: Swift.String, channelType: SendbirdChatSDK.ChannelType, delegate: (any SendbirdUIKit.SBUModerationsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel, delegate: SendbirdUIKit.SBUModerationsViewModelDelegate? = nil) + public init(channelURL: Swift.String, channelType: SendbirdChatSDK.ChannelType, delegate: SendbirdUIKit.SBUModerationsViewModelDelegate? = nil) public func loadChannel(channelURL: Swift.String) public func freezeChannel(_ completionHandler: ((Swift.Bool) -> Swift.Void)? = nil) public func unfreezeChannel(_ completionHandler: ((Swift.Bool) -> Swift.Void)? = nil) @objc deinit } -@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUView : UIKit.UIView { +@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUView : UIKit.UIView, SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) @objc dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "init(frame:)") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() @objc deinit } -extension SendbirdUIKit.SBUView : SendbirdUIKit.SBUViewLifeCycle { - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupActions() -} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUMessageReactionView : SendbirdUIKit.SBUView, UIKit.UICollectionViewDelegate, UIKit.UICollectionViewDataSource, UIKit.UICollectionViewDelegateFlowLayout { @_Concurrency.MainActor(unsafe) public var collectionView: UIKit.UICollectionView { get @@ -839,9 +837,9 @@ extension SendbirdUIKit.SBUView : SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "MessageReactionView()") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func hasMoreEmoji(at indexPath: Foundation.IndexPath) -> Swift.Bool @_Concurrency.MainActor(unsafe) open func configure(maxWidth: CoreFoundation.CGFloat, useReaction: Swift.Bool, reactions: [SendbirdChatSDK.Reaction]) @_Concurrency.MainActor(unsafe) open func getCellSize(count: Swift.Int) -> CoreFoundation.CGSize @@ -926,11 +924,11 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var fileMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? @objc @_Concurrency.MainActor(unsafe) public var unknownMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? @objc @_Concurrency.MainActor(unsafe) public var customMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelModuleListDataSource? { get set } @@ -940,7 +938,7 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var isOverlaid: Swift.Bool { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @objc @_Concurrency.MainActor(unsafe) open func updateLayouts() @@ -996,9 +994,9 @@ extension SendbirdUIKit.SBUOpenChannelModule { get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?) @objc deinit @@ -1021,8 +1019,8 @@ extension SendbirdUIKit.SBUBaseChannelListModule { } @objc @_Concurrency.MainActor(unsafe) public var channelCell: SendbirdUIKit.SBUBaseChannelCell? @objc @_Concurrency.MainActor(unsafe) public var customCell: SendbirdUIKit.SBUBaseChannelCell? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelListModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelListModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelListModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelListModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannelList: [SendbirdChatSDK.BaseChannel]? { @objc get } @@ -1120,11 +1118,11 @@ public protocol SBUCreateChannelModuleHeaderDataSource : SendbirdUIKit.SBUBaseSe } extension SendbirdUIKit.SBUCreateChannelModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource? { get set } @@ -1133,7 +1131,7 @@ extension SendbirdUIKit.SBUCreateChannelModule { @available(*, unavailable, renamed: "SBUCreateChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -1147,7 +1145,7 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUEmptyView : SendbirdUIKit.SBUView { @_Concurrency.MainActor(unsafe) public var type: SendbirdUIKit.EmptyViewType - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUEmptyViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUEmptyViewDelegate? @_Concurrency.MainActor(unsafe) public var statusImageView: UIKit.UIImageView { get set @@ -1173,10 +1171,10 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { @available(*, unavailable, renamed: "SBUEmptyView.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateTopAnchorConstraint(constant: CoreFoundation.CGFloat) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func reloadData(_ type: SendbirdUIKit.EmptyViewType) @_Concurrency.MainActor(unsafe) open func updateViews() @objc @_Concurrency.MainActor(unsafe) open func onClickRetry(_ sender: Any) @@ -1188,8 +1186,8 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { public var openChannel: SendbirdUIKit.SBUConfig.OpenChannel @objc override dynamic public init() @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } open class SBUGroupChannelSettingsModule { public static var HeaderComponent: SendbirdUIKit.SBUGroupChannelSettingsModule.Header.Type @@ -1243,13 +1241,13 @@ extension SendbirdUIKit.SBUChannelInfoHeaderViewDelegate { set _modify } - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUChannelInfoHeaderViewDelegate)?) + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUChannelInfoHeaderViewDelegate?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "SBUChannelInfoHeaderView()") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func setupInfoButtonStyle() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?, description: Swift.String?) @@ -1283,15 +1281,62 @@ public class SBUChatNotificationChannelModule { @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView @_Concurrency.MainActor(unsafe) public var fileImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var fileNameLabel: UIKit.UILabel - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) public func addHighlight(keyword: Swift.String, toAttributedString attributedString: Foundation.NSMutableAttributedString, highlightTextColor: UIKit.UIColor) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit } +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUCardView : SendbirdUIKit.SBUView { + public struct Metric { + public static var maxWidth: Swift.Double + public static var textMinWidth: Swift.Double + public static var imageSize: Swift.Double + } + @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme + @_Concurrency.MainActor(unsafe) public var imageURL: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var title: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var subtitle: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var text: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var link: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUCardViewParams? { + get + } + @_Concurrency.MainActor(unsafe) public var contentStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var mainInfoStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var titleStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var titleLabel: UIKit.UILabel + @_Concurrency.MainActor(unsafe) public var subtitleLabel: UIKit.UILabel + @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView { + get + set + } + @_Concurrency.MainActor(unsafe) public var descriptionTextView: UIKit.UITextView + @_Concurrency.MainActor(unsafe) public var textLeftConstraint: UIKit.NSLayoutConstraint? + @_Concurrency.MainActor(unsafe) public var textRightConstraint: UIKit.NSLayoutConstraint? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupActions() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUCardViewParams) + @objc @_Concurrency.MainActor(unsafe) public func openURL() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @_hasMissingDesignatedInitializers public class SBUColorSet { public static var primary100: UIKit.UIColor public static var primary200: UIKit.UIColor @@ -1521,8 +1566,8 @@ extension SendbirdUIKit.SBUConfig { public var camera: SendbirdUIKit.SBUConfig.BaseInput.Camera public var gallery: SendbirdUIKit.SBUConfig.BaseInput.Gallery @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.BaseInput { @@ -1538,8 +1583,8 @@ extension SendbirdUIKit.SBUConfig.BaseInput { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.BaseInput { @@ -1555,8 +1600,8 @@ extension SendbirdUIKit.SBUConfig.BaseInput { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } open class SBUGroupChannelModule { @@ -1598,11 +1643,11 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -2053,13 +2098,13 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUCreateOpenChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUCreateOpenChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUCreateOpenChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUCreateOpenChannelTheme? = nil) @@ -2085,10 +2130,10 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { } @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupSizeContraint() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) open func setImage(_ image: UIKit.UIImage?, size: CoreFoundation.CGSize? = nil) @_Concurrency.MainActor(unsafe) open func setFileIcon() @@ -2117,12 +2162,12 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc open func setupViews() - @_Concurrency.MainActor(unsafe) @objc open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc open func setupActions() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() @_Concurrency.MainActor(unsafe) open func configure(model: SendbirdUIKit.SBUMessageWebViewModel) @objc deinit } @@ -2305,7 +2350,7 @@ open class SBUMessageSearchViewModel { public var messageSearchQuery: SendbirdChatSDK.MessageSearchQuery? { get } - public init(channel: SendbirdChatSDK.BaseChannel, params: SendbirdChatSDK.MessageSearchQueryParams? = nil, delegate: (any SendbirdUIKit.SBUMessageSearchViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel, params: SendbirdChatSDK.MessageSearchQueryParams? = nil, delegate: SendbirdUIKit.SBUMessageSearchViewModelDelegate? = nil) open func search(keyword: Swift.String) public func search(keyword: Swift.String, query: SendbirdChatSDK.MessageSearchQuery) public func loadMore() @@ -2463,13 +2508,13 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule { @objc @_Concurrency.MainActor(unsafe) open func inviteUserViewModel(_ viewModel: SendbirdUIKit.SBUInviteUserViewModel, didInviteUserIds userIds: [Swift.String]) @_Concurrency.MainActor(unsafe) @objc override open func baseSelectedUserViewModel(_ viewModel: SendbirdUIKit.SBUBaseSelectUserViewModel, didUpdateSelectedUsers selectedUsers: [SendbirdUIKit.SBUUser]?) } -@objc public protocol SBUViewLifeCycle { - @objc func setupViews() - @objc func setupStyles() - @objc func updateStyles() - @objc func setupLayouts() - @objc func updateLayouts() - @objc func setupActions() +public protocol SBUViewLifeCycle { + func setupViews() + func setupStyles() + func updateStyles() + func setupLayouts() + func updateLayouts() + func setupActions() } public typealias SBUNewNotificationInfoHandler = () -> Swift.Void extension SendbirdUIKit.SBUBaseChannelViewController { @@ -2550,11 +2595,11 @@ public protocol SBUOpenChannelSettingsModuleListDataSource : SendbirdUIKit.SBUBa } extension SendbirdUIKit.SBUOpenChannelSettingsModule { @_inheritsConvenienceInitializers @objc(SBUOpenChannelSettingsModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelSettingsModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource? { get set } @@ -2566,7 +2611,7 @@ extension SendbirdUIKit.SBUOpenChannelSettingsModule { @available(*, unavailable, renamed: "SBUOpenChannelSettingsModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupItems() @_Concurrency.MainActor(unsafe) open func createModerationsItem() -> SendbirdUIKit.SBUChannelSettingItem @@ -2632,13 +2677,13 @@ extension SendbirdUIKit.SBUGroupChannelPushSettingsModule { } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUGroupChannelPushSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUGroupChannelPushSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -2671,7 +2716,7 @@ extension SendbirdUIKit.SBUSelectablePhotoViewDelegate { set _modify } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUSelectablePhotoViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUSelectablePhotoViewDelegate? @objc @_Concurrency.MainActor(unsafe) public var fetchResult: Photos.PHFetchResult @objc @_Concurrency.MainActor(unsafe) public var columnSize: CoreFoundation.CGSize { @objc get @@ -2704,11 +2749,11 @@ public protocol SBUOpenChannelSettingsViewModelDelegate : SendbirdUIKit.SBUBaseC func openChannelSettingsViewModel(_ viewModel: SendbirdUIKit.SBUOpenChannelSettingsViewModel, didDeleteChannel channel: SendbirdChatSDK.OpenChannel) } @objc open class SBUOpenChannelSettingsViewModel : SendbirdUIKit.SBUBaseChannelSettingsViewModel { - weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String?) override public func updateChannel(channelName: Swift.String? = nil, coverImage: UIKit.UIImage? = nil) @@ -2747,8 +2792,8 @@ extension SendbirdUIKit.SBUOpenChannelSettingsViewModel : SendbirdChatSDK.OpenCh set } public init(wrappedValue: T) - public init(from decoder: any Swift.Decoder) throws - public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws } public protocol SBUQuoteMessageInputViewProtocol : SendbirdUIKit.SBUViewLifeCycle { func configure(with configuration: SendbirdUIKit.SBUQuoteMessageInputViewParams) @@ -2856,9 +2901,9 @@ extension SendbirdUIKit.SBUBaseChannelViewModel : SendbirdChatSDK.BaseChannelDel public static var descBottomMargin: CoreFoundation.CGFloat public static var stackSpacing: CoreFoundation.CGFloat } - @_Concurrency.MainActor(unsafe) @objc override open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func configure(model: SendbirdUIKit.SBUMessageWebViewModel) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init(coder: Foundation.NSCoder) @@ -2871,12 +2916,12 @@ extension SendbirdUIKit.SBUBaseChannelViewModel : SendbirdChatSDK.BaseChannelDel @objc deinit } extension SendbirdUIKit.SBUTableViewCell : SendbirdUIKit.SBUViewLifeCycle { - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupActions() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupViews() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupLayouts() + @objc @_Concurrency.MainActor(unsafe) dynamic open func updateLayouts() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupStyles() + @objc @_Concurrency.MainActor(unsafe) dynamic open func updateStyles() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupActions() } public protocol SBUMessageCellProtocol { func configure(with configuration: SendbirdUIKit.SBUBaseMessageCellParams) @@ -2992,6 +3037,7 @@ public protocol SBUMessageCellProtocol { @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapQuotedMessageView quotedMessageView: SendbirdUIKit.SBUQuotedBaseMessageView) @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMentionUser user: SendbirdUIKit.SBUUser) @objc @_Concurrency.MainActor(unsafe) open func groupChannelModuleDidTapThreadInfoView(_ threadInfoView: SendbirdUIKit.SBUThreadInfoView) + @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didSelectQuickReplyOption text: Swift.String) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModule(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, didTapVoiceMessage fileMessage: SendbirdChatSDK.FileMessage, cell: UIKit.UITableViewCell, forRowAt indexPath: Foundation.IndexPath) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModuleDidTapScrollToButton(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModule(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, didScroll scrollView: UIKit.UIScrollView) @@ -3015,8 +3061,8 @@ public protocol SBUMessageCellProtocol { @objc @_Concurrency.MainActor(unsafe) open func voiceMessageInputView(_ inputView: SendbirdUIKit.SBUVoiceMessageInputView, didTapSend voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo) } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelCommonContentView : SendbirdUIKit.SBUCommonContentView { - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -3138,11 +3184,11 @@ public protocol SBUGroupChannelListModuleListDataSource : SendbirdUIKit.SBUBaseC extension SendbirdUIKit.SBUGroupChannelListModule { @_inheritsConvenienceInitializers @objc(SBUGroupChannelListModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelListModule.List { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUGroupChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelListModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelListModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelListModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelListModuleListDataSource? { get set } @@ -3154,7 +3200,7 @@ extension SendbirdUIKit.SBUGroupChannelListModule { @available(*, unavailable, renamed: "SBUGroupChannelListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelListModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelListModuleListDataSource, theme: SendbirdUIKit.SBUGroupChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelListModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelListModuleListDataSource, theme: SendbirdUIKit.SBUGroupChannelListTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUGroupChannelListTheme? = nil) @objc @_Concurrency.MainActor(unsafe) public func leaveContextualAction(with indexPath: Foundation.IndexPath) -> UIKit.UIContextualAction? @@ -3190,7 +3236,7 @@ public class SBUAlertButtonItem { @objc deinit } @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class SBUAlertView : ObjectiveC.NSObject { - public static func show(title: Swift.String, message: Swift.String? = nil, needInputField: Swift.Bool = false, placeHolder: Swift.String? = "", centerYRatio: CoreFoundation.CGFloat? = 1.0, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, confirmButtonItem: SendbirdUIKit.SBUAlertButtonItem, cancelButtonItem: SendbirdUIKit.SBUAlertButtonItem?, delegate: (any SendbirdUIKit.SBUAlertViewDelegate)? = nil, dismissHandler: (() -> Swift.Void)? = nil) + public static func show(title: Swift.String, message: Swift.String? = nil, needInputField: Swift.Bool = false, placeHolder: Swift.String? = "", centerYRatio: CoreFoundation.CGFloat? = 1.0, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, confirmButtonItem: SendbirdUIKit.SBUAlertButtonItem, cancelButtonItem: SendbirdUIKit.SBUAlertButtonItem?, delegate: SendbirdUIKit.SBUAlertViewDelegate? = nil, dismissHandler: (() -> Swift.Void)? = nil) public static func dismiss() @objc deinit } @@ -3234,7 +3280,7 @@ public protocol SBUBaseSelectUserViewModelDataSource : AnyObject { public var joinedUserIds: Swift.Set { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, inviteListType: SendbirdUIKit.ChannelInviteListType, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: (any SendbirdUIKit.SBUBaseSelectUserViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUBaseSelectUserViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, inviteListType: SendbirdUIKit.ChannelInviteListType, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: SendbirdUIKit.SBUBaseSelectUserViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUBaseSelectUserViewModelDataSource? = nil) public func loadChannel(channelURL: Swift.String, type: SendbirdChatSDK.ChannelType) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) public func preLoadNextUserList(indexPath: Foundation.IndexPath) @@ -3296,8 +3342,8 @@ extension SendbirdUIKit.SBUBaseChannelModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleInputDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelModuleInputDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleInputDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelModuleInputDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -3344,9 +3390,9 @@ extension SendbirdUIKit.SBUBaseChannelModule { @_Concurrency.MainActor(unsafe) public var position: SendbirdUIKit.MessagePosition @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() @_Concurrency.MainActor(unsafe) public func setAxis(_ axis: UIKit.NSLayoutConstraint.Axis) @_Concurrency.MainActor(unsafe) public func addArrangedSubview(_ view: UIKit.UIView) @_Concurrency.MainActor(unsafe) public func removeArrangedSubview(_ view: UIKit.UIView) @@ -3430,9 +3476,9 @@ extension SendbirdUIKit.SBUBaseChannelModule { get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -3493,8 +3539,8 @@ extension SendbirdUIKit.SBUConfig { public var channel: SendbirdUIKit.SBUConfig.OpenChannel.Channel @objc override dynamic public init() @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.OpenChannel { @@ -3506,13 +3552,13 @@ extension SendbirdUIKit.SBUConfig.OpenChannel { } public var input: SendbirdUIKit.SBUConfig.OpenChannel.Channel.Input @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.OpenChannel.Channel { @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class Input : SendbirdUIKit.SBUConfig.BaseInput { - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } } @@ -3531,16 +3577,16 @@ public protocol SBUSuggestedMentionListDelegate : AnyObject { get } @_Concurrency.MainActor(unsafe) public var isLimitGuideEnabled: Swift.Bool - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUSuggestedMentionListDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUSuggestedMentionListDelegate? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme @_Concurrency.MainActor(unsafe) public var showsUserId: Swift.Bool { get set } @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func register(userCell: UIKit.UITableViewCell, nib: UIKit.UINib? = nil) @_Concurrency.MainActor(unsafe) public func register(limitGuideCell: UIKit.UITableViewCell, nib: UIKit.UINib? = nil) @_Concurrency.MainActor(unsafe) @objc open func tableView(_ tableView: UIKit.UITableView, numberOfRowsInSection section: Swift.Int) -> Swift.Int @@ -3563,8 +3609,8 @@ extension SendbirdUIKit.SBUConfig { public var channelList: SendbirdUIKit.SBUConfig.GroupChannel.ChannelList public var setting: SendbirdUIKit.SBUConfig.GroupChannel.Setting @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3604,8 +3650,8 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { } public var input: SendbirdUIKit.SBUConfig.GroupChannel.Channel.Input @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3621,8 +3667,8 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3633,13 +3679,13 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel.Channel { @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class Input : SendbirdUIKit.SBUConfig.BaseInput { - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } } @@ -3654,7 +3700,7 @@ extension SendbirdUIKit.SBUConfig.GroupChannel.Channel { final public let type: SendbirdUIKit.SBUMessageTemplate.ActionType final public let data: Swift.String final public let alterData: Swift.String? - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } public enum ActionType : Swift.String, Swift.Decodable { @@ -3700,11 +3746,11 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var customMessageCell: SendbirdUIKit.SBUBaseMessageCell? { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageThreadModuleListDataSource? { get set } @@ -3714,7 +3760,7 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleListDelegate, dataSource: any SendbirdUIKit.SBUMessageThreadModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleListDelegate, dataSource: SendbirdUIKit.SBUMessageThreadModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -3840,11 +3886,11 @@ public protocol SBUInviteUserModuleHeaderDataSource : SendbirdUIKit.SBUBaseSelec } extension SendbirdUIKit.SBUInviteUserModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUInviteUserModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUInviteUserModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUInviteUserModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUInviteUserModuleHeaderDataSource? { get set } @@ -3853,7 +3899,7 @@ extension SendbirdUIKit.SBUInviteUserModule { @available(*, unavailable, renamed: "SBUInviteUserModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUInviteUserModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUInviteUserModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUInviteUserModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUInviteUserModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -4102,6 +4148,32 @@ extension SendbirdUIKit.SBUInviteUserModule { public static func restoreDefaultIcons() @objc deinit } +public protocol SBUQuickReplyViewDelegate : AnyObject { + func quickReplyView(_ view: SendbirdUIKit.SBUQuickReplyView, didSelectOption optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} +@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) public class SBUQuickReplyView : SendbirdUIKit.SBUView, SendbirdUIKit.SBUQuickReplyOptionViewDelegate { + @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView + @_Concurrency.MainActor(unsafe) public var topSpacer: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var options: [Swift.String] { + get + } + @_Concurrency.MainActor(unsafe) public var messageId: Swift.Int64? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUQuickReplyViewParams? { + get + } + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuickReplyViewDelegate? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUQuickReplyViewParams, delegate: SendbirdUIKit.SBUQuickReplyViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) public func createQuickReplyOptionViews(options: [Swift.String]) -> [SendbirdUIKit.SBUQuickReplyOptionView] + @_Concurrency.MainActor(unsafe) public func quickReplyOptionViewDidSelect(_ optionView: SendbirdUIKit.SBUQuickReplyOptionView) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelContentBaseMessageCell : SendbirdUIKit.SBUOpenChannelBaseMessageCell { @objc @_Concurrency.MainActor(unsafe) public var baseStackView: UIKit.UIStackView { @objc get @@ -4163,8 +4235,8 @@ public protocol SBUUserListViewModelDataSource : AnyObject { func userListViewModel(_ viewModel: SendbirdUIKit.SBUUserListViewModel, nextUserListForChannel channel: SendbirdChatSDK.BaseChannel?) -> [SendbirdUIKit.SBUUser]? } @objc open class SBUUserListViewModel : ObjectiveC.NSObject { - weak public var delegate: (any SendbirdUIKit.SBUUserListViewModelDelegate)? - weak public var dataSource: (any SendbirdUIKit.SBUUserListViewModelDataSource)? + weak public var delegate: SendbirdUIKit.SBUUserListViewModelDelegate? + weak public var dataSource: SendbirdUIKit.SBUUserListViewModelDataSource? public var channel: SendbirdChatSDK.BaseChannel? { get } @@ -4186,7 +4258,7 @@ public protocol SBUUserListViewModelDataSource : AnyObject { public var userListType: SendbirdUIKit.ChannelUserListType { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListType: SendbirdUIKit.ChannelUserListType, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, operatorListQuery: SendbirdChatSDK.OperatorListQuery? = nil, mutedMemberListQuery: SendbirdChatSDK.MemberListQuery? = nil, mutedParticipantListQuery: SendbirdChatSDK.MutedUserListQuery? = nil, bannedUserListQuery: SendbirdChatSDK.BannedUserListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: (any SendbirdUIKit.SBUUserListViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUUserListViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListType: SendbirdUIKit.ChannelUserListType, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, operatorListQuery: SendbirdChatSDK.OperatorListQuery? = nil, mutedMemberListQuery: SendbirdChatSDK.MemberListQuery? = nil, mutedParticipantListQuery: SendbirdChatSDK.MutedUserListQuery? = nil, bannedUserListQuery: SendbirdChatSDK.BannedUserListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: SendbirdUIKit.SBUUserListViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUUserListViewModelDataSource? = nil) @objc deinit public func loadChannel(channelURL: Swift.String, type: SendbirdChatSDK.ChannelType) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) @@ -4238,7 +4310,7 @@ extension SendbirdUIKit.SBUBaseChannelListModule { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelListModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelListModuleHeaderDelegate? @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @objc @_Concurrency.MainActor(unsafe) open func onTapLeftBarButton() @@ -4324,7 +4396,7 @@ public protocol SBUThreadInfoViewProtocol : SendbirdUIKit.SBUViewLifeCycle { set _modify } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUThreadInfoViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUThreadInfoViewDelegate? @_Concurrency.MainActor(unsafe) public var threadInfo: SendbirdChatSDK.ThreadInfo? { get } @@ -4339,11 +4411,11 @@ public protocol SBUThreadInfoViewProtocol : SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) final public let repliedUserLimit: Swift.Int @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageCellTheme) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupActions() @_Concurrency.MainActor(unsafe) open func configure(with message: SendbirdChatSDK.BaseMessage, messagePosition: SendbirdUIKit.MessagePosition) @_Concurrency.MainActor(unsafe) open func setupRepliedUsers() @objc @_Concurrency.MainActor(unsafe) open func onTapThreadInfo(sender: UIKit.UITapGestureRecognizer) @@ -4367,7 +4439,7 @@ public protocol SBUMessageThreadTitleViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadTitleViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadTitleViewDelegate? @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme { get set @@ -4377,10 +4449,10 @@ public protocol SBUMessageThreadTitleViewDelegate : AnyObject { get } @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUMessageThreadTitleViewDelegate)? = nil) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUMessageThreadTitleViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @objc @_Concurrency.MainActor(unsafe) open func onTapChannelName(sender: UIKit.UITapGestureRecognizer) @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?, title: Swift.String?) @@ -4514,11 +4586,11 @@ public protocol SBUCreateChannelTypeSelectorProtocol { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "CreateChannelTypeSelectView.init(delegate:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUCreateChannelTypeSelectorDelegate)?) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUCreateChannelTypeSelectorDelegate?) + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func updateStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func show() @_Concurrency.MainActor(unsafe) open func dismiss() @objc @_Concurrency.MainActor(unsafe) open func onClickClose() @@ -4693,8 +4765,8 @@ public enum UserListType : Swift.Hashable { case mutedMembers @available(*, unavailable, renamed: "banned") case bannedMembers - public static func == (a: SendbirdUIKit.UserListType, b: SendbirdUIKit.UserListType) -> Swift.Bool public func hash(into hasher: inout Swift.Hasher) + public static func == (a: SendbirdUIKit.UserListType, b: SendbirdUIKit.UserListType) -> Swift.Bool public var hashValue: Swift.Int { get } @@ -4931,7 +5003,7 @@ public protocol SBUParentMessageInfoViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles() - @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.BaseMessage?, delegate: (any SendbirdUIKit.SBUParentMessageInfoViewDelegate)?, useReaction: Swift.Bool = false, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) + @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.BaseMessage?, delegate: SendbirdUIKit.SBUParentMessageInfoViewDelegate?, useReaction: Swift.Bool = false, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) @_Concurrency.MainActor(unsafe) open func setupActions() @objc @_Concurrency.MainActor(unsafe) open func onTapUserProfileView(sender: UIKit.UITapGestureRecognizer) @objc @_Concurrency.MainActor(unsafe) open func onTapContentView(sender: UIKit.UITapGestureRecognizer) @@ -4950,13 +5022,14 @@ public protocol SBUParentMessageInfoViewDelegate : AnyObject { public static var fileMessageParamsSendBuilder: ((_ params: SendbirdChatSDK.FileMessageCreateParams?) -> Swift.Void)? public static var voiceFileMessageParamsSendBuilder: ((_ params: SendbirdChatSDK.FileMessageCreateParams?) -> Swift.Void)? public static var messageListParamsBuilder: ((_ params: SendbirdChatSDK.MessageListParams?) -> Swift.Void)? + public static var cardViewParamsCollectionBuilder: ((_ messageData: Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams])? @objc deinit } public protocol SBUCreateOpenChannelViewModelDelegate : SendbirdUIKit.SBUCommonViewModelDelegate { func createOpenChannelViewModel(_ viewModel: SendbirdUIKit.SBUCreateOpenChannelViewModel, didCreateChannel channel: SendbirdChatSDK.BaseChannel?) } open class SBUCreateOpenChannelViewModel { - public init(delegate: (any SendbirdUIKit.SBUCreateOpenChannelViewModelDelegate)?) + public init(delegate: SendbirdUIKit.SBUCreateOpenChannelViewModelDelegate?) public func createChannel(channelName: Swift.String, coverImage: UIKit.UIImage?) public func createChannel(params: SendbirdChatSDK.OpenChannelCreateParams) @objc deinit @@ -4967,6 +5040,27 @@ extension SendbirdUIKit.SBUView { @available(*, unavailable, renamed: "updateLayouts()") @_Concurrency.MainActor(unsafe) public func updateAutolayout() } +public protocol SBUQuickReplyOptionViewDelegate : AnyObject { + func quickReplyOptionViewDidSelect(_ optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUQuickReplyOptionView : SendbirdUIKit.SBUView { + @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme + @_Concurrency.MainActor(unsafe) public var selectableStackView: SendbirdUIKit.SBUSelectableStackView + @_Concurrency.MainActor(unsafe) public var textView: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var text: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuickReplyOptionViewDelegate? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupActions() + @objc @_Concurrency.MainActor(unsafe) public func onSelectOption() + @_Concurrency.MainActor(unsafe) public func configure(with optionText: Swift.String, delegate: SendbirdUIKit.SBUQuickReplyOptionViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @objc public protocol SBUQuotedMessageViewDelegate { @objc func didTapQuotedMessageView(_ quotedMessageView: SendbirdUIKit.SBUQuotedBaseMessageView) } @@ -5011,13 +5105,13 @@ extension SendbirdUIKit.SBUView { set } @_Concurrency.MainActor(unsafe) public var mainContainerView: SendbirdUIKit.SBUSelectableStackView - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUQuotedMessageViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuotedMessageViewDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupActions() @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @objc @_Concurrency.MainActor(unsafe) open func didTapQuotedMessageView(sender: UIKit.UITapGestureRecognizer) @objc deinit @@ -5066,7 +5160,7 @@ extension UIKit.UIImage { @objc get @objc set } - @_Concurrency.MainActor(unsafe) public var quotedMessageView: (any UIKit.UIView & SendbirdUIKit.SBUQuotedMessageViewProtocol)? { + @_Concurrency.MainActor(unsafe) public var quotedMessageView: (UIKit.UIView & SendbirdUIKit.SBUQuotedMessageViewProtocol)? { get set } @@ -5077,7 +5171,7 @@ extension UIKit.UIImage { @objc @_Concurrency.MainActor(unsafe) public var threadInfoSpacing: UIKit.UIView { @objc get } - @_Concurrency.MainActor(unsafe) public var threadInfoView: (any UIKit.UIView & SendbirdUIKit.SBUThreadInfoViewProtocol)? { + @_Concurrency.MainActor(unsafe) public var threadInfoView: (UIKit.UIView & SendbirdUIKit.SBUThreadInfoViewProtocol)? { get set } @@ -5130,12 +5224,12 @@ extension SendbirdUIKit.SBUModerationsModule { @objc @_Concurrency.MainActor(unsafe) public var tableView: UIKit.UITableView @objc @_Concurrency.MainActor(unsafe) public var moderationCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUModerationsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUModerationsModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUModerationsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUModerationsModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUModerationsModuleListDelegate, dataSource: any SendbirdUIKit.SBUModerationsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUModerationsModuleListDelegate, dataSource: SendbirdUIKit.SBUModerationsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc deinit @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @@ -5165,15 +5259,15 @@ extension SendbirdUIKit.SBUOpenChannelViewModelDelegate { public func openChannelViewModel(_ viewModel: SendbirdUIKit.SBUOpenChannelViewModel, userDidExit user: SendbirdChatSDK.User, forChannel channel: SendbirdChatSDK.OpenChannel) } @objc open class SBUOpenChannelViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUOpenChannelViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUOpenChannelViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUOpenChannelViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = nil, delegate: (any SendbirdUIKit.SBUOpenChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUOpenChannelViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = nil, delegate: SendbirdUIKit.SBUOpenChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUOpenChannelViewModelDataSource? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) override public func refreshChannel() @@ -5277,6 +5371,17 @@ extension SendbirdUIKit.SBUGroupChannelViewController { get } } +public struct SBUCardViewParams { + public let imageURL: Swift.String? + public let title: Swift.String? + public let subtitle: Swift.String? + public let description: Swift.String? + public let link: Swift.String? + public var hasLink: Swift.Bool { + get + } + public init(imageURL: Swift.String? = nil, title: Swift.String? = nil, subtitle: Swift.String? = nil, description: Swift.String? = nil, link: Swift.String? = nil) +} public protocol SBUUserListModuleListDelegate : SendbirdUIKit.SBUCommonDelegate { func userListModule(_ listComponent: SendbirdUIKit.SBUUserListModule.List, didSelectRowAt indexPath: Foundation.IndexPath) func userListModule(_ listComponent: SendbirdUIKit.SBUUserListModule.List, didDetectPreloadingPosition indexPath: Foundation.IndexPath) @@ -5298,8 +5403,8 @@ extension SendbirdUIKit.SBUUserListModule { @objc @_Concurrency.MainActor(unsafe) public var userCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserListModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUUserListModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserListModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUUserListModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -5312,7 +5417,7 @@ extension SendbirdUIKit.SBUUserListModule { @available(*, unavailable, renamed: "SBUUserListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUUserListModuleListDelegate, dataSource: any SendbirdUIKit.SBUUserListModuleListDataSource, userListType: SendbirdUIKit.ChannelUserListType, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUUserListModuleListDelegate, dataSource: SendbirdUIKit.SBUUserListModuleListDataSource, userListType: SendbirdUIKit.ChannelUserListType, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUUserListTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -5344,11 +5449,11 @@ public protocol SBUInviteUserModuleListDataSource : SendbirdUIKit.SBUBaseSelectU } extension SendbirdUIKit.SBUInviteUserModule { @_inheritsConvenienceInitializers @objc(SBUInviteUserModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUInviteUserModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUInviteUserModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUInviteUserModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUInviteUserModuleListDataSource? { get set } @@ -5357,7 +5462,7 @@ extension SendbirdUIKit.SBUInviteUserModule { @available(*, unavailable, renamed: "SBUInviteUserModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUInviteUserModuleListDelegate, dataSource: any SendbirdUIKit.SBUInviteUserModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUInviteUserModuleListDelegate, dataSource: SendbirdUIKit.SBUInviteUserModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } @@ -5397,11 +5502,11 @@ extension UIKit.UIStackView { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "UserNameView(username:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func updateLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func updateStyles() @_Concurrency.MainActor(unsafe) open func configure(username: Swift.String, isOverlay: Swift.Bool = false) @_Concurrency.MainActor(unsafe) public func setUsernameColor(_ color: UIKit.UIColor) @objc deinit @@ -5460,6 +5565,11 @@ extension SendbirdUIKit.SBUModerationsViewController { public static func loadAllEmojis(completionHandler: @escaping (_ container: SendbirdChatSDK.EmojiContainer?, _ error: SendbirdChatSDK.SBError?) -> Swift.Void) @objc deinit } +public struct SBUQuickReplyViewParams { + public let messageId: Swift.Int64 + public let replyOptions: [Swift.String] + public init(messageId: Swift.Int64, replyOptions: [Swift.String]) +} open class SBUOpenChannelSettingsModule { public static var HeaderComponent: SendbirdUIKit.SBUOpenChannelSettingsModule.Header.Type public static var ListComponent: SendbirdUIKit.SBUOpenChannelSettingsModule.List.Type @@ -5488,8 +5598,8 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule { @objc @_Concurrency.MainActor(unsafe) public var tableView: UIKit.UITableView @objc @_Concurrency.MainActor(unsafe) public var channelInfoView: UIKit.UIView? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelSettingsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelSettingsModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelSettingsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelSettingsModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -5569,7 +5679,7 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule.List : UIKit.UITableViewDat @_Concurrency.MainActor(unsafe) required public init(channelURL: Swift.String, startingPoint: Swift.Int64? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillAppear(_ animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillTransition(to size: CoreFoundation.CGSize, with coordinator: any UIKit.UIViewControllerTransitionCoordinator) + @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillTransition(to size: CoreFoundation.CGSize, with coordinator: UIKit.UIViewControllerTransitionCoordinator) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillDisappear(_ animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLayoutSubviews() @objc deinit @@ -5615,8 +5725,8 @@ public protocol SBUCreateChannelViewModelDataSource : AnyObject { func createChannelViewModel(_ viewModel: SendbirdUIKit.SBUCreateChannelViewModel, nextUserListForChannelType channelType: SendbirdUIKit.ChannelCreationType) -> [SendbirdUIKit.SBUUser]? } open class SBUCreateChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUCreateChannelViewModelDelegate)? - weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelViewModelDataSource)? + weak public var delegate: SendbirdUIKit.SBUCreateChannelViewModelDelegate? + weak public var dataSource: SendbirdUIKit.SBUCreateChannelViewModelDataSource? public var channelType: SendbirdUIKit.ChannelCreationType { get } @@ -5629,7 +5739,7 @@ open class SBUCreateChannelViewModel { public var userListQuery: SendbirdChatSDK.ApplicationUserListQuery? { get } - public init(channelType: SendbirdUIKit.ChannelCreationType = .group, users: [SendbirdUIKit.SBUUser]? = nil, delegate: (any SendbirdUIKit.SBUCreateChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUCreateChannelViewModelDataSource)? = nil) + public init(channelType: SendbirdUIKit.ChannelCreationType = .group, users: [SendbirdUIKit.SBUUser]? = nil, delegate: SendbirdUIKit.SBUCreateChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUCreateChannelViewModelDataSource? = nil) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) public func preLoadNextUserList(indexPath: Foundation.IndexPath) public func resetUserList() @@ -5654,9 +5764,9 @@ open class SBUCreateChannelViewModel { @_Concurrency.MainActor(unsafe) public var imageDownloadTask: Foundation.URLSessionTask? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(urlString: Swift.String, imageSize: CoreFoundation.CGFloat? = SBUMessageProfileView.imageSize) @objc deinit } @@ -5771,9 +5881,9 @@ extension SendbirdUIKit.SBUGroupChannelPushSettingsModule { @_Concurrency.MainActor(unsafe) public var pushTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate)?, dataSource: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource)?, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate?, dataSource: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource?, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil) @@ -5866,7 +5976,7 @@ public protocol SBUGroupChannelListViewModelDelegate : SendbirdUIKit.SBUBaseChan public var channelListQuery: SendbirdChatSDK.GroupChannelListQuery? { get } - public init(delegate: (any SendbirdUIKit.SBUGroupChannelListViewModelDelegate)? = nil, channelListQuery: SendbirdChatSDK.GroupChannelListQuery? = nil) + public init(delegate: SendbirdUIKit.SBUGroupChannelListViewModelDelegate? = nil, channelListQuery: SendbirdChatSDK.GroupChannelListQuery? = nil) @objc deinit override public func initChannelList() override public func loadNextChannelList(reset: Swift.Bool) @@ -6034,7 +6144,8 @@ public class SBUUserMessageCellParams : SendbirdUIKit.SBUBaseMessageCellParams { } final public let useReaction: Swift.Bool final public let withTextView: Swift.Bool - public init(message: SendbirdChatSDK.UserMessage, hideDateView: Swift.Bool, useMessagePosition: Swift.Bool, groupPosition: SendbirdUIKit.MessageGroupPosition = .none, receiptState: SendbirdUIKit.SBUMessageReceiptState = .none, useReaction: Swift.Bool = false, withTextView: Swift.Bool, isThreadMessage: Swift.Bool = false, joinedAt: Swift.Int64 = 0) + final public let shouldHideQuickReply: Swift.Bool + public init(message: SendbirdChatSDK.UserMessage, hideDateView: Swift.Bool, useMessagePosition: Swift.Bool, groupPosition: SendbirdUIKit.MessageGroupPosition = .none, receiptState: SendbirdUIKit.SBUMessageReceiptState = .none, useReaction: Swift.Bool = false, withTextView: Swift.Bool, isThreadMessage: Swift.Bool = false, joinedAt: Swift.Int64 = 0, shouldHideQuickReply: Swift.Bool = true) @objc deinit } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUMessageSearchResultCell : SendbirdUIKit.SBUTableViewCell { @@ -6139,9 +6250,9 @@ extension SendbirdUIKit.SBUBaseSelectUserModule { @_Concurrency.MainActor(unsafe) public var progressTimeLabel: UIKit.UILabel @_Concurrency.MainActor(unsafe) public var statusButton: UIKit.UIButton @_Concurrency.MainActor(unsafe) public var voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo? - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -6420,8 +6531,8 @@ public protocol SBUMessageInputViewDataSource : AnyObject { @_Concurrency.MainActor(unsafe) public var mentionedAttributes: [Foundation.NSAttributedString.Key : Any] { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageInputViewDelegate)? - @_Concurrency.MainActor(unsafe) weak public var datasource: (any SendbirdUIKit.SBUMessageInputViewDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageInputViewDelegate? + @_Concurrency.MainActor(unsafe) weak public var datasource: SendbirdUIKit.SBUMessageInputViewDataSource? @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var overlayTheme: SendbirdUIKit.SBUMessageInputTheme { get set @@ -6438,9 +6549,9 @@ public protocol SBUMessageInputViewDataSource : AnyObject { @_Concurrency.MainActor(unsafe) open func setMode(_ mode: SendbirdUIKit.SBUMessageInputMode, message: SendbirdChatSDK.BaseMessage? = nil) @_Concurrency.MainActor(unsafe) public func startQuoteReplyMode(message: SendbirdChatSDK.BaseMessage) @_Concurrency.MainActor(unsafe) public func endQuoteReplyMode() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @_Concurrency.MainActor(unsafe) public func startEditMode(text: Swift.String) @_Concurrency.MainActor(unsafe) public func endEditMode() @@ -6601,6 +6712,14 @@ extension SendbirdUIKit.SBUChatNotificationChannelModule { @objc @_Concurrency.MainActor(unsafe) public func didSelectRetry() } } +extension SendbirdChatSDK.UserMessage { + public var quickReply: SendbirdUIKit.SBUQuickReplyOptions? { + get + } + public var cardListData: [Swift.String : Any]? { + get + } +} open class SBUCreateOpenChannelModule { public static var HeaderComponent: SendbirdUIKit.SBUCreateOpenChannelModule.Header.Type public static var ProfileInputComponent: SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput.Type @@ -6658,7 +6777,7 @@ open class SBUCreateOpenChannelModule { public var currentRecordAccessStatus: AVFAudio.AVAudioSession.RecordPermission { get } - public func showPermissionAlert(forType permissionType: SendbirdUIKit.SBUPermissionManager.PermissionType, alertViewDelegate: (any SendbirdUIKit.SBUAlertViewDelegate)? = nil, onDismiss: SendbirdUIKit.AlertButtonHandler? = nil) + public func showPermissionAlert(forType permissionType: SendbirdUIKit.SBUPermissionManager.PermissionType, alertViewDelegate: SendbirdUIKit.SBUAlertViewDelegate? = nil, onDismiss: SendbirdUIKit.AlertButtonHandler? = nil) public func requestRecordAcess(onGranted: (() -> Swift.Void)? = nil, onDenied: (() -> Swift.Void)? = nil) public func requestPhotoAccessIfNeeded(completion: @escaping (SendbirdUIKit.SBUPhotoAccessibleStatus) -> Swift.Void) public func requestCameraAccess(for type: AVFoundation.AVMediaType, onGranted: (() -> Swift.Void)? = nil, onDenied: (() -> Swift.Void)? = nil) @@ -6689,6 +6808,30 @@ open class SBUMessageSearchModule { required public init(headerComponent: SendbirdUIKit.SBUMessageSearchModule.Header? = nil, listComponent: SendbirdUIKit.SBUMessageSearchModule.List? = nil) @objc deinit } +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUCardListView : SendbirdUIKit.SBUView { + public struct Metric { + public static var maxWidth: Swift.Double + } + @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView + @_Concurrency.MainActor(unsafe) public var topSpacer: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var items: [SendbirdUIKit.SBUCardViewParams] { + get + } + @_Concurrency.MainActor(unsafe) public var messageId: Swift.Int64? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUCardListViewParams? { + get + } + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUCardListViewParams) + @_Concurrency.MainActor(unsafe) public func createCardViews(items: [SendbirdUIKit.SBUCardViewParams]) -> [SendbirdUIKit.SBUCardView] + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} open class SBUMessageStateViewParams { final public let timestamp: Swift.Int64 final public let sendingState: SendbirdChatSDK.MessageSendingStatus @@ -6717,9 +6860,9 @@ open class SBUMessageStateViewParams { @_Concurrency.MainActor(unsafe) public var timeLabelCustomSize: CoreFoundation.CGSize? @_Concurrency.MainActor(unsafe) public init(sendingState: SendbirdChatSDK.MessageSendingStatus, receiptState: SendbirdUIKit.SBUMessageReceiptState, isQuotedReplyMessage: Swift.Bool = false) @_Concurrency.MainActor(unsafe) public init(isQuotedReplyMessage: Swift.Bool = false) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUMessageStateViewParams) @available(*, deprecated, renamed: "configure(with:)") @_Concurrency.MainActor(unsafe) open func configure(timestamp: Swift.Int64, sendingState: SendbirdChatSDK.MessageSendingStatus, receiptState: SendbirdUIKit.SBUMessageReceiptState?, position: SendbirdUIKit.MessagePosition) @@ -6773,13 +6916,13 @@ extension Foundation.NSArray { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc open func setupViews() - @_Concurrency.MainActor(unsafe) @objc open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func configure(image: UIKit.UIImage?, forMediaType mediaType: Photos.PHAssetMediaType) - @_Concurrency.MainActor(unsafe) @objc open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc open func setupActions() - @_Concurrency.MainActor(unsafe) @objc open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func updateStyles() @objc deinit } open class SBUGroupChannelListModule { @@ -6903,11 +7046,11 @@ public protocol SBURegisterOperatorModuleHeaderDataSource : SendbirdUIKit.SBUBas } extension SendbirdUIKit.SBURegisterOperatorModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource? { get set } @@ -6916,7 +7059,7 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @available(*, unavailable, renamed: "SBURegisterOperatorModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate, dataSource: SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -6965,6 +7108,11 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +public struct SBUCardListData : Swift.Codable where CardData : Swift.Decodable, CardData : Swift.Encodable { + public let recommends: [CardData] + public func encode(to encoder: Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws +} public class SBUUnknownMessageCellParams : SendbirdUIKit.SBUBaseMessageCellParams { public var unknownMessage: SendbirdChatSDK.BaseMessage { get @@ -7003,6 +7151,11 @@ extension SendbirdUIKit.SBUCoverImageView { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +public struct SBUCardListViewParams { + public let messageId: Swift.Int64 + public let items: [SendbirdUIKit.SBUCardViewParams] + public init(messageId: Swift.Int64, items: [SendbirdUIKit.SBUCardViewParams]) +} public protocol SBUBaseChannelModuleHeaderDelegate : SendbirdUIKit.SBUCommonDelegate { func baseChannelModule(_ headerComponent: SendbirdUIKit.SBUBaseChannelModule.Header, didUpdateTitleView titleView: UIKit.UIView?) func baseChannelModule(_ headerComponent: SendbirdUIKit.SBUBaseChannelModule.Header, didUpdateLeftItem leftItem: UIKit.UIBarButtonItem?) @@ -7027,7 +7180,7 @@ extension SendbirdUIKit.SBUBaseChannelModule { } @objc @_Concurrency.MainActor(unsafe) public var titleSpacer: UIKit.UIView @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUBaseChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUBaseChannelModule.Header()") @@ -7054,12 +7207,12 @@ public protocol SBUVoiceMessageInputViewDelegate : AnyObject { } @objc override dynamic public init() @objc deinit - @objc public func setupViews() - @objc public func setupLayouts() - @objc public func updateLayouts() - @objc public func setupStyles() - @objc public func updateStyles() - @objc public func setupActions() + public func setupViews() + public func setupLayouts() + public func updateLayouts() + public func setupStyles() + public func updateStyles() + public func setupActions() } extension SendbirdUIKit.SBUVoiceMessageInputView : SendbirdUIKit.SBUVoiceRecorderDelegate { public func voiceRecorderDidReceiveError(_ recorder: SendbirdUIKit.SBUVoiceRecorder, errorStatus: SendbirdUIKit.VoiceRecorderErrorStatus) @@ -7087,7 +7240,7 @@ public protocol SBUOpenChannelListViewModelDelegate : SendbirdUIKit.SBUBaseChann public var channelListQuery: SendbirdChatSDK.OpenChannelListQuery? { get } - public init(delegate: (any SendbirdUIKit.SBUOpenChannelListViewModelDelegate)?, channelListQuery: SendbirdChatSDK.OpenChannelListQuery?) + public init(delegate: SendbirdUIKit.SBUOpenChannelListViewModelDelegate?, channelListQuery: SendbirdChatSDK.OpenChannelListQuery?) @objc deinit override public func initChannelList() override public func loadNextChannelList(reset: Swift.Bool) @@ -7242,14 +7395,14 @@ extension SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate { } extension SendbirdUIKit.SBUMessageThreadModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelModule.Header, SendbirdUIKit.SBUMessageThreadTitleViewDelegate { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate? { get set } @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? { get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate, parentMessage: SendbirdChatSDK.BaseMessage?, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate, parentMessage: SendbirdChatSDK.BaseMessage?, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -7273,7 +7426,7 @@ extension SendbirdUIKit.SBUActionSheetDelegate { @objc deinit } @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class SBUActionSheet : ObjectiveC.NSObject { - public static func show(items: [SendbirdUIKit.SBUActionSheetItem], cancelItem: SendbirdUIKit.SBUActionSheetItem, identifier: Swift.Int = -1, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, delegate: (any SendbirdUIKit.SBUActionSheetDelegate)? = nil, dismissHandler: (() -> Swift.Void)? = nil) + public static func show(items: [SendbirdUIKit.SBUActionSheetItem], cancelItem: SendbirdUIKit.SBUActionSheetItem, identifier: Swift.Int = -1, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, delegate: SendbirdUIKit.SBUActionSheetDelegate? = nil, dismissHandler: (() -> Swift.Void)? = nil) public static func dismiss() @objc deinit } @@ -7284,11 +7437,11 @@ public protocol SBUGroupChannelPushSettingsViewModelDelegate : SendbirdUIKit.SBU public var currentTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption { get } - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate? = nil) open func changeNotification(_ pushTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption) public func updateChannelPushTriggerOption() @objc deinit @@ -7341,6 +7494,7 @@ public protocol SBUGroupChannelModuleListDelegate : SendbirdUIKit.SBUBaseChannel func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMoreEmojiForCell messageCell: SendbirdUIKit.SBUBaseMessageCell) func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMentionUser user: SendbirdUIKit.SBUUser) func groupChannelModuleDidTapThreadInfoView(_ threadInfoView: SendbirdUIKit.SBUThreadInfoView) + func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didSelectQuickReplyOption text: Swift.String) } public protocol SBUGroupChannelModuleListDataSource : SendbirdUIKit.SBUBaseChannelModuleListDataSource { func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, highlightInfoInTableView tableView: UIKit.UITableView) -> SendbirdUIKit.SBUHighlightMessageInfo? @@ -7366,18 +7520,18 @@ extension SendbirdUIKit.SBUGroupChannelModule { get } @objc @_Concurrency.MainActor(unsafe) public var isHighlightInfoAnimated: Swift.Bool - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelModuleListDataSource? { get set } @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func updateStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme = SBUTheme.componentTheme) @@ -7439,17 +7593,17 @@ extension SendbirdUIKit.SBUGroupChannelModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? + @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? @objc @_Concurrency.MainActor(unsafe) public var mentionManager: SendbirdUIKit.SBUMentionManager? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleInputDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelModuleInputDataSource, mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleInputDelegate, dataSource: SendbirdUIKit.SBUGroupChannelModuleInputDataSource, mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -7615,7 +7769,7 @@ extension SendbirdUIKit.SBUOpenChannelViewController { public protocol SBUBaseChannelListViewModelDelegate : SendbirdUIKit.SBUCommonViewModelDelegate { } @objc open class SBUBaseChannelListViewModel : ObjectiveC.NSObject { - public init(delegate: (any SendbirdUIKit.SBUBaseChannelListViewModelDelegate)?) + public init(delegate: SendbirdUIKit.SBUBaseChannelListViewModelDelegate?) @objc deinit public func initChannelList() public func loadNextChannelList(reset: Swift.Bool) @@ -7695,7 +7849,7 @@ public protocol SBUGroupChannelListModuleHeaderDelegate : SendbirdUIKit.SBUBaseC extension SendbirdUIKit.SBUGroupChannelListModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelListModule.Header { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUGroupChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate? { get set } @@ -7704,7 +7858,7 @@ extension SendbirdUIKit.SBUGroupChannelListModule { @available(*, unavailable, renamed: "SBUGroupChannelListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUGroupChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUGroupChannelListTheme) @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUGroupChannelListTheme? = nil) } } @@ -7805,8 +7959,8 @@ extension Foundation.Date { } @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -7823,9 +7977,9 @@ public typealias SBUNewMessageInfoHandler = () -> Swift.Void @_Concurrency.MainActor(unsafe) public init(type: SendbirdUIKit.NewMessageInfoItemType = .tooltip) @available(*, unavailable, renamed: "SBUNewMessageInfo.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @objc @_Concurrency.MainActor(unsafe) open func onClickNewMessageInfo() @_Concurrency.MainActor(unsafe) open func updateCount(count: Swift.Int, actionHandler: SendbirdUIKit.SBUNewMessageInfoHandler?) @@ -7883,6 +8037,16 @@ open class SBUInviteUserModule { get } @objc @_Concurrency.MainActor(unsafe) public var webView: SendbirdUIKit.SBUMessageWebView + @objc @_Concurrency.MainActor(unsafe) public var shouldHideQuickReply: Swift.Bool { + get + } + @objc @_Concurrency.MainActor(unsafe) public var quickReplyView: SendbirdUIKit.SBUQuickReplyView? { + get + } + @objc @_Concurrency.MainActor(unsafe) public var quickReplySelectHandler: ((_ selectedOptionView: SendbirdUIKit.SBUQuickReplyOptionView) -> Swift.Void)? + @objc @_Concurrency.MainActor(unsafe) public var cardListView: SendbirdUIKit.SBUCardListView? { + get + } @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() @@ -7895,11 +8059,16 @@ open class SBUInviteUserModule { @_Concurrency.MainActor(unsafe) override open func configure(highlightInfo: SendbirdUIKit.SBUHighlightMessageInfo?) @_Concurrency.MainActor(unsafe) @objc override dynamic public func setSelected(_ selected: Swift.Bool, animated: Swift.Bool) @objc @_Concurrency.MainActor(unsafe) open func onTapWebview(sender: UIKit.UITapGestureRecognizer) + @objc @_Concurrency.MainActor(unsafe) public func updateQuickReplyView(with options: [Swift.String]) + @_Concurrency.MainActor(unsafe) public func addCardListView(with items: [SendbirdUIKit.SBUCardViewParams]) @objc @_Concurrency.MainActor(unsafe) open func userMessageTextView(_ textView: SendbirdUIKit.SBUUserMessageTextView, didTapMention user: SendbirdUIKit.SBUUser) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(style: UIKit.UITableViewCell.CellStyle, reuseIdentifier: Swift.String?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +extension SendbirdUIKit.SBUUserMessageCell : SendbirdUIKit.SBUQuickReplyViewDelegate { + @objc @_Concurrency.MainActor(unsafe) dynamic public func quickReplyView(_ view: SendbirdUIKit.SBUQuickReplyView, didSelectOption optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelSettingCell : SendbirdUIKit.SBUBaseChannelSettingCell { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(style: UIKit.UITableViewCell.CellStyle, reuseIdentifier: Swift.String?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @@ -7990,11 +8159,11 @@ public protocol SBUGroupChannelSettingsModuleHeaderDataSource : SendbirdUIKit.SB } extension SendbirdUIKit.SBUGroupChannelSettingsModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelSettingsModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource? { get set } @@ -8003,7 +8172,7 @@ extension SendbirdUIKit.SBUGroupChannelSettingsModule { @available(*, unavailable, renamed: "SBUGroupChannelSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -8097,11 +8266,11 @@ public protocol SBUOpenChannelListModuleListDataSource : SendbirdUIKit.SBUBaseCh extension SendbirdUIKit.SBUOpenChannelListModule { @_inheritsConvenienceInitializers @objc(SBUOpenChannelListModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelListModule.List { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUOpenChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelListModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelListModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelListModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelListModuleListDataSource? { get set } @@ -8113,7 +8282,7 @@ extension SendbirdUIKit.SBUOpenChannelListModule { @available(*, unavailable, renamed: "SBUOpenChannelListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelListModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelListModuleListDataSource, theme: SendbirdUIKit.SBUOpenChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelListModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelListModuleListDataSource, theme: SendbirdUIKit.SBUOpenChannelListTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUOpenChannelListTheme? = nil) } @@ -8141,7 +8310,7 @@ public protocol SBUMentionManagerDataSource : AnyObject { public var defaultTextAttributes: [Foundation.NSAttributedString.Key : Any] public var mentionTextAttributes: [Foundation.NSAttributedString.Key : Any] @objc override dynamic public init() - public func configure(delegate: (any SendbirdUIKit.SBUMentionManagerDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, defaultTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil, mentionTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil) + public func configure(delegate: SendbirdUIKit.SBUMentionManagerDelegate? = nil, dataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, defaultTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil, mentionTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil) @discardableResult public func addMention(at textView: UIKit.UITextView, user: SendbirdUIKit.SBUUser) -> Swift.Bool public func clearMentions(_ mentions: [SendbirdUIKit.SBUMention], with replaceText: Swift.String = "", on textView: UIKit.UITextView, at range: Foundation.NSRange) @@ -8208,7 +8377,7 @@ public protocol SBUMessageThreadViewControllerDelegate : AnyObject { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadViewControllerDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadViewControllerDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public var channel: SendbirdChatSDK.GroupChannel? { @objc get } @@ -8217,7 +8386,7 @@ public protocol SBUMessageThreadViewControllerDelegate : AnyObject { } @available(*, unavailable) @_Concurrency.MainActor(unsafe) required public init(channelURL: Swift.String, startingPoint: Swift.Int64? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil) - @_Concurrency.MainActor(unsafe) required public init(channel: SendbirdChatSDK.GroupChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = nil, delegate: (any SendbirdUIKit.SBUMessageThreadViewControllerDelegate)? = nil, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) + @_Concurrency.MainActor(unsafe) required public init(channel: SendbirdChatSDK.GroupChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = nil, delegate: SendbirdUIKit.SBUMessageThreadViewControllerDelegate? = nil, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarStyle: UIKit.UIStatusBarStyle { @objc get } @@ -8301,7 +8470,7 @@ public protocol SBUFileViewControllerDelegate : AnyObject { @objc set } @objc @_Concurrency.MainActor(unsafe) public var bottomView: UIKit.UIView - @_Concurrency.MainActor(unsafe) required public init(fileMessage: SendbirdChatSDK.FileMessage, delegate: (any SendbirdUIKit.SBUFileViewControllerDelegate)?) + @_Concurrency.MainActor(unsafe) required public init(fileMessage: SendbirdChatSDK.FileMessage, delegate: SendbirdUIKit.SBUFileViewControllerDelegate?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillAppear(_ animated: Swift.Bool) @@ -8387,14 +8556,14 @@ public protocol SBUVoiceRecorderDelegate : AnyObject { public var progressTimer: Foundation.Timer? { get } - public init(delegate: (any SendbirdUIKit.SBUVoiceRecorderDelegate)?) + public init(delegate: SendbirdUIKit.SBUVoiceRecorderDelegate?) @objc deinit @discardableResult public func record() -> Swift.Bool public func stop() public func resetRecorder() @objc public func audioRecorderDidFinishRecording(_ recorder: AVFAudio.AVAudioRecorder, successfully success: Swift.Bool) - @objc public func audioRecorderEncodeErrorDidOccur(_ recorder: AVFAudio.AVAudioRecorder, error: (any Swift.Error)?) + @objc public func audioRecorderEncodeErrorDidOccur(_ recorder: AVFAudio.AVAudioRecorder, error: Swift.Error?) } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUBaseFileContentView : SendbirdUIKit.SBUView { @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme { @@ -8455,9 +8624,9 @@ extension SendbirdUIKit.SBUMessageCellTheme { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "SBUNavigationTitleView.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @_Concurrency.MainActor(unsafe) public func configure(title: Swift.String?) @@ -8504,7 +8673,7 @@ public protocol SBUVoicePlayerDelegate : AnyObject { public var progressTimer: Foundation.Timer? { get } - public init(delegate: (any SendbirdUIKit.SBUVoicePlayerDelegate)?) + public init(delegate: SendbirdUIKit.SBUVoicePlayerDelegate?) public func configure(voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo) @objc deinit public func play(fromTime time: Foundation.TimeInterval = 0) @@ -8512,7 +8681,7 @@ public protocol SBUVoicePlayerDelegate : AnyObject { public func stop() public func resetPlayer() @objc public func audioPlayerDidFinishPlaying(_ player: AVFAudio.AVAudioPlayer, successfully success: Swift.Bool) - @objc public func audioPlayerDecodeErrorDidOccur(_ player: AVFAudio.AVAudioPlayer, error: (any Swift.Error)?) + @objc public func audioPlayerDecodeErrorDidOccur(_ player: AVFAudio.AVAudioPlayer, error: Swift.Error?) } public protocol SBUOpenChannelModuleMediaDelegate : AnyObject { func openChannelModule(_ mediaComponent: SendbirdUIKit.SBUOpenChannelModule.Media, didTapMediaView mediaView: UIKit.UIView) @@ -8521,8 +8690,8 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class Media : UIKit.UIView { @_Concurrency.MainActor(unsafe) public var mediaView: UIKit.UIView @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleMediaDelegate)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleMediaDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleMediaDelegate? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleMediaDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -8544,11 +8713,11 @@ public protocol SBUGroupChannelSettingsModuleListDataSource : SendbirdUIKit.SBUB } extension SendbirdUIKit.SBUGroupChannelSettingsModule { @_inheritsConvenienceInitializers @objc(SBUGroupChannelSettingsModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelSettingsModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource? { get set } @@ -8560,7 +8729,7 @@ extension SendbirdUIKit.SBUGroupChannelSettingsModule { @available(*, unavailable, renamed: "SBUGroupChannelSettingsModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupItems() @_Concurrency.MainActor(unsafe) open func createModerationsItem() -> SendbirdUIKit.SBUChannelSettingItem @@ -8598,13 +8767,13 @@ extension SendbirdUIKit.SBUMessageSearchModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageSearchTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUMessageSearchModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUMessageSearchModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate, theme: SendbirdUIKit.SBUMessageSearchTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate, theme: SendbirdUIKit.SBUMessageSearchTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageSearchTheme? = nil) @@ -8965,7 +9134,7 @@ public class SBUMessageCellTheme { public static var overlay: SendbirdUIKit.SBUMessageCellTheme { get } - public init(backgroundColor: UIKit.UIColor = SBUColorSet.background50, leftBackgroundColor: UIKit.UIColor = SBUColorSet.background100, leftPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary100, rightBackgroundColor: UIKit.UIColor = SBUColorSet.primary300, rightPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary400, openChannelBackgroundColor: UIKit.UIColor = .clear, openChannelPressedBackgroundColor: UIKit.UIColor = SBUColorSet.background100, dateFont: UIKit.UIFont = SBUFontSet.caption1, dateTextColor: UIKit.UIColor = SBUColorSet.ondark01, dateBackgroundColor: UIKit.UIColor = SBUColorSet.overlay02, userPlaceholderBackgroundColor: UIKit.UIColor = SBUColorSet.background300, userPlaceholderTintColor: UIKit.UIColor = SBUColorSet.ondark01, userNameFont: UIKit.UIFont = SBUFontSet.caption1, userNameTextColor: UIKit.UIColor = SBUColorSet.onlight02, currentUserNameTextColor: UIKit.UIColor = SBUColorSet.secondary300, timeFont: UIKit.UIFont = SBUFontSet.caption4, timeTextColor: UIKit.UIColor = SBUColorSet.onlight03, pendingStateColor: UIKit.UIColor = SBUColorSet.primary300, failedStateColor: UIKit.UIColor = SBUColorSet.error300, succeededStateColor: UIKit.UIColor = SBUColorSet.onlight03, readReceiptStateColor: UIKit.UIColor = SBUColorSet.secondary300, deliveryReceiptStateColor: UIKit.UIColor = SBUColorSet.onlight03, userMessageFont: UIKit.UIFont = SBUFontSet.body3, userMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageLeftEditTextColor: UIKit.UIColor = SBUColorSet.onlight02, userMessageLeftHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, userMessageRightEditTextColor: UIKit.UIColor = SBUColorSet.ondark02, userMessageRightHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileIconBackgroundColor: UIKit.UIColor = SBUColorSet.background50, fileImageBackgroundColor: UIKit.UIColor = SBUColorSet.ondark01, fileImageIconColor: UIKit.UIColor = SBUColorSet.onlight02, fileIconColor: UIKit.UIColor = SBUColorSet.primary300, fileMessageNameFont: UIKit.UIFont = SBUFontSet.body3, fileMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, fileMessagePlaceholderColor: UIKit.UIColor = SBUColorSet.onlight02, adminMessageFont: UIKit.UIFont = SBUFontSet.caption2, adminMessageTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescFont: UIKit.UIFont = SBUFontSet.body3, unknownMessageDescLeftTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescRightTextColor: UIKit.UIColor = SBUColorSet.ondark02, ogTitleFont: UIKit.UIFont = SBUFontSet.body2, ogTitleColor: UIKit.UIColor = SBUColorSet.onlight01, ogDescriptionFont: UIKit.UIFont = SBUFontSet.caption2, ogDescriptionColor: UIKit.UIColor = SBUColorSet.onlight01, ogURLAddressFont: UIKit.UIFont = SBUFontSet.caption2, ogURLAddressColor: UIKit.UIColor = SBUColorSet.onlight02, openChannelOGTitleColor: UIKit.UIColor = SBUColorSet.primary300, linkColor: UIKit.UIColor = SBUColorSet.primary300, contentBackgroundColor: UIKit.UIColor = SBUColorSet.background100, pressedContentBackgroundColor: UIKit.UIColor = SBUColorSet.background300, quotedMessageLeftBackgroundColor: UIKit.UIColor = SBUColorSet.background100.withAlphaComponent(0.5), quotedMessageRightBackgroundColor: UIKit.UIColor = SBUColorSet.background100, quotedFileMessageThumbnailColor: UIKit.UIColor = SBUColorSet.onlight02, quotedMessageTextColor: UIKit.UIColor = SBUColorSet.onlight03, quotedMessageTextFont: UIKit.UIFont = SBUFontSet.body3, repliedIconColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextFont: UIKit.UIFont = SBUFontSet.caption1, repliedCountTextColor: UIKit.UIColor = SBUColorSet.primary300, repliedCountTextFont: UIKit.UIFont = SBUFontSet.caption3, repliedUsersMoreIconBackgroundColor: UIKit.UIColor = SBUColorSet.background700.withAlphaComponent(0.64), repliedUsersMoreIconTintColor: UIKit.UIColor = SBUColorSet.ondark01, mentionTextFont: UIKit.UIFont = SBUFontSet.body4, mentionLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, mentionRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, mentionLeftTextBackgroundColor: UIKit.UIColor = .clear, mentionRightTextBackgroundColor: UIKit.UIColor = .clear, buttonBackgroundColor: UIKit.UIColor = SBUColorSet.background200, buttonTitleColor: UIKit.UIColor = SBUColorSet.primary300, sideButtonIconColor: UIKit.UIColor = SBUColorSet.onlight03, newMessageBadgeColor: UIKit.UIColor = SBUColorSet.secondary300, parentInfoBackgroundColor: UIKit.UIColor = SBUColorSet.background50, parentInfoUserNameTextFont: UIKit.UIFont = SBUFontSet.h3, parentInfoUserNameTextColor: UIKit.UIColor = SBUColorSet.onlight01, parentInfoDateFont: UIKit.UIFont = SBUFontSet.caption2, parentInfoDateTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoMoreButtonTintColor: UIKit.UIColor = SBUColorSet.onlight02, parentInfoSeparateBarColor: UIKit.UIColor = SBUColorSet.onlight04, parentInfoReplyCountTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoReplyCountTextFont: UIKit.UIFont = SBUFontSet.body3, parentInfoProgressBackgroundColor: UIKit.UIColor = SBUColorSet.background100, progressTrackTintColor: UIKit.UIColor = SBUColorSet.onlight03, progressTimeFont: UIKit.UIFont = SBUFontSet.body3, progressTimeRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, progressTimeLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, statusButtonBackgroundColor: UIKit.UIColor = SBUColorSet.background50, loadingButtonTintColor: UIKit.UIColor = SBUColorSet.primary200, playButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, pauseButtonTintColor: UIKit.UIColor = SBUColorSet.primary300) + public init(backgroundColor: UIKit.UIColor = SBUColorSet.background50, leftBackgroundColor: UIKit.UIColor = SBUColorSet.background100, leftPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary100, rightBackgroundColor: UIKit.UIColor = SBUColorSet.primary300, rightPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary400, openChannelBackgroundColor: UIKit.UIColor = .clear, openChannelPressedBackgroundColor: UIKit.UIColor = SBUColorSet.background100, dateFont: UIKit.UIFont = SBUFontSet.caption1, dateTextColor: UIKit.UIColor = SBUColorSet.ondark01, dateBackgroundColor: UIKit.UIColor = SBUColorSet.overlay02, userPlaceholderBackgroundColor: UIKit.UIColor = SBUColorSet.background300, userPlaceholderTintColor: UIKit.UIColor = SBUColorSet.ondark01, userNameFont: UIKit.UIFont = SBUFontSet.caption1, userNameTextColor: UIKit.UIColor = SBUColorSet.onlight02, currentUserNameTextColor: UIKit.UIColor = SBUColorSet.secondary300, timeFont: UIKit.UIFont = SBUFontSet.caption4, timeTextColor: UIKit.UIColor = SBUColorSet.onlight03, pendingStateColor: UIKit.UIColor = SBUColorSet.primary300, failedStateColor: UIKit.UIColor = SBUColorSet.error300, succeededStateColor: UIKit.UIColor = SBUColorSet.onlight03, readReceiptStateColor: UIKit.UIColor = SBUColorSet.secondary300, deliveryReceiptStateColor: UIKit.UIColor = SBUColorSet.onlight03, userMessageFont: UIKit.UIFont = SBUFontSet.body3, userMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageLeftEditTextColor: UIKit.UIColor = SBUColorSet.onlight02, userMessageLeftHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, userMessageRightEditTextColor: UIKit.UIColor = SBUColorSet.ondark02, userMessageRightHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileIconBackgroundColor: UIKit.UIColor = SBUColorSet.background50, fileImageBackgroundColor: UIKit.UIColor = SBUColorSet.ondark01, fileImageIconColor: UIKit.UIColor = SBUColorSet.onlight02, fileIconColor: UIKit.UIColor = SBUColorSet.primary300, fileMessageNameFont: UIKit.UIFont = SBUFontSet.body3, fileMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, fileMessagePlaceholderColor: UIKit.UIColor = SBUColorSet.onlight02, adminMessageFont: UIKit.UIFont = SBUFontSet.caption2, adminMessageTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescFont: UIKit.UIFont = SBUFontSet.body3, unknownMessageDescLeftTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescRightTextColor: UIKit.UIColor = SBUColorSet.ondark02, ogTitleFont: UIKit.UIFont = SBUFontSet.body2, ogTitleColor: UIKit.UIColor = SBUColorSet.onlight01, ogDescriptionFont: UIKit.UIFont = SBUFontSet.caption2, ogDescriptionColor: UIKit.UIColor = SBUColorSet.onlight01, ogURLAddressFont: UIKit.UIFont = SBUFontSet.caption2, ogURLAddressColor: UIKit.UIColor = SBUColorSet.onlight02, openChannelOGTitleColor: UIKit.UIColor = SBUColorSet.primary300, linkColor: UIKit.UIColor = SBUColorSet.primary300, contentBackgroundColor: UIKit.UIColor = SBUColorSet.background100, pressedContentBackgroundColor: UIKit.UIColor = SBUColorSet.background300, quotedMessageLeftBackgroundColor: UIKit.UIColor = SBUColorSet.background100.withAlphaComponent(0.5), quotedMessageRightBackgroundColor: UIKit.UIColor = SBUColorSet.background100, quotedFileMessageThumbnailColor: UIKit.UIColor = SBUColorSet.onlight02, quotedMessageTextColor: UIKit.UIColor = SBUColorSet.onlight03, quotedMessageTextFont: UIKit.UIFont = SBUFontSet.body3, repliedIconColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextFont: UIKit.UIFont = SBUFontSet.caption1, repliedCountTextColor: UIKit.UIColor = SBUColorSet.primary300, repliedCountTextFont: UIKit.UIFont = SBUFontSet.caption3, repliedUsersMoreIconBackgroundColor: UIKit.UIColor = SBUColorSet.background700.withAlphaComponent(0.64), repliedUsersMoreIconTintColor: UIKit.UIColor = SBUColorSet.ondark01, mentionTextFont: UIKit.UIFont = SBUFontSet.body4, mentionLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, mentionRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, mentionLeftTextBackgroundColor: UIKit.UIColor = .clear, mentionRightTextBackgroundColor: UIKit.UIColor = .clear, buttonBackgroundColor: UIKit.UIColor = SBUColorSet.background200, buttonTitleColor: UIKit.UIColor = SBUColorSet.primary300, sideButtonIconColor: UIKit.UIColor = SBUColorSet.onlight03, newMessageBadgeColor: UIKit.UIColor = SBUColorSet.secondary300, parentInfoBackgroundColor: UIKit.UIColor = SBUColorSet.background50, parentInfoUserNameTextFont: UIKit.UIFont = SBUFontSet.h3, parentInfoUserNameTextColor: UIKit.UIColor = SBUColorSet.onlight01, parentInfoDateFont: UIKit.UIFont = SBUFontSet.caption2, parentInfoDateTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoMoreButtonTintColor: UIKit.UIColor = SBUColorSet.onlight02, parentInfoSeparateBarColor: UIKit.UIColor = SBUColorSet.onlight04, parentInfoReplyCountTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoReplyCountTextFont: UIKit.UIFont = SBUFontSet.body3, parentInfoProgressBackgroundColor: UIKit.UIColor = SBUColorSet.background100, progressTrackTintColor: UIKit.UIColor = SBUColorSet.onlight03, progressTimeFont: UIKit.UIFont = SBUFontSet.body3, progressTimeRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, progressTimeLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, statusButtonBackgroundColor: UIKit.UIColor = SBUColorSet.background50, loadingButtonTintColor: UIKit.UIColor = SBUColorSet.primary200, playButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, pauseButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, selectableTitleFont: UIKit.UIFont = SBUFontSet.button2) public var backgroundColor: UIKit.UIColor public var leftBackgroundColor: UIKit.UIColor public var leftPressedBackgroundColor: UIKit.UIColor @@ -9062,6 +9231,7 @@ public class SBUMessageCellTheme { public var playerLoadingButtonTintColor: UIKit.UIColor public var playerPlayButtonTintColor: UIKit.UIColor public var playerPauseButtonTintColor: UIKit.UIColor + public var selectableTitleFont: UIKit.UIFont @objc deinit } public class SBUUserListTheme { @@ -9405,8 +9575,8 @@ public class SBUMessageTemplateTheme { @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var widthConstraint: UIKit.NSLayoutConstraint! @_Concurrency.MainActor(unsafe) public var heightConstraint: UIKit.NSLayoutConstraint! - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupSizeContraint() @_Concurrency.MainActor(unsafe) override open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition) @_Concurrency.MainActor(unsafe) public func setImage(_ image: UIKit.UIImage?, size: CoreFoundation.CGSize? = nil) @@ -9500,14 +9670,14 @@ public protocol SBUUserMessageTextViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) public var needsToRemoveMargin: Swift.Bool { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserMessageTextViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserMessageTextViewDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) public init(channelType: SendbirdChatSDK.ChannelType = .group, removeMargin: Swift.Bool = false) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateSideConstraint() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(model: SendbirdUIKit.SBUUserMessageTextViewModel) @objc deinit } @@ -9535,13 +9705,13 @@ extension SendbirdUIKit.SBUModerationsModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUModerationsModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUModerationsModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUModerationsModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUModerationsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUModerationsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUModerationsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil) @@ -9733,8 +9903,8 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { } @_Concurrency.MainActor(unsafe) public var channelNameInputField: SendbirdUIKit.SBUUnderLineTextField @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUCreateOpenChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate)?, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate?, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUCreateOpenChannelTheme? = nil) @@ -9868,11 +10038,11 @@ public protocol SBUMessageThreadViewModelDelegate : SendbirdUIKit.SBUBaseChannel func messageThreadViewModelShouldDismissMessageThread(_ viewModel: SendbirdUIKit.SBUMessageThreadViewModel) } @objc open class SBUMessageThreadViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUMessageThreadViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUMessageThreadViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUMessageThreadViewModelDataSource? { get set } @@ -9882,7 +10052,7 @@ public protocol SBUMessageThreadViewModelDelegate : SendbirdUIKit.SBUBaseChannel public var threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = 0, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: (any SendbirdUIKit.SBUMessageThreadViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUMessageThreadViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = 0, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: SendbirdUIKit.SBUMessageThreadViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUMessageThreadViewModelDataSource? = nil) @objc deinit public func loadChannelAndMessages(channelURL: Swift.String?) override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) @@ -9956,7 +10126,7 @@ extension SendbirdUIKit.SBUUserListModule { } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserListModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserListModuleHeaderDelegate? @objc @_Concurrency.MainActor(unsafe) public var channelType: SendbirdChatSDK.ChannelType @_Concurrency.MainActor(unsafe) public var userListType: SendbirdUIKit.ChannelUserListType { get @@ -9966,7 +10136,7 @@ extension SendbirdUIKit.SBUUserListModule { @available(*, unavailable, renamed: "SBUUserListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUUserListModuleHeaderDelegate, userListType: SendbirdUIKit.ChannelUserListType, channelType: SendbirdChatSDK.ChannelType = .group, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUUserListModuleHeaderDelegate, userListType: SendbirdUIKit.ChannelUserListType, channelType: SendbirdChatSDK.ChannelType = .group, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUUserListTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -10096,7 +10266,7 @@ public enum SBUReplyType : Swift.Int, Swift.Codable { public var filterValue: SendbirdChatSDK.ReplyType { get } - public init(from decoder: any Swift.Decoder) throws + public init(from decoder: Swift.Decoder) throws public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { @@ -10107,13 +10277,18 @@ public enum SBUThreadReplySelectType : Swift.Int, Swift.Codable { case none case parent case thread - public init(from decoder: any Swift.Decoder) throws + public init(from decoder: Swift.Decoder) throws public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } +public struct SBUQuickReplyOptions : Swift.Codable { + public let options: [Swift.String] + public func encode(to encoder: Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws +} public protocol SBUGroupChannelViewModelDataSource : SendbirdUIKit.SBUBaseChannelViewModelDataSource { func groupChannelViewModel(_ viewModel: SendbirdUIKit.SBUGroupChannelViewModel, startingPointIndexPathsForChannel channel: SendbirdChatSDK.GroupChannel?) -> [Foundation.IndexPath]? } @@ -10121,15 +10296,15 @@ public protocol SBUGroupChannelViewModelDelegate : SendbirdUIKit.SBUBaseChannelV func groupChannelViewModel(_ viewModel: SendbirdUIKit.SBUGroupChannelViewModel, didReceiveSuggestedMentions members: [SendbirdUIKit.SBUUser]?) } @objc open class SBUGroupChannelViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUGroupChannelViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: (any SendbirdUIKit.SBUGroupChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUGroupChannelViewModelDataSource)? = nil, displaysLocalCachedListFirst: Swift.Bool = false) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: SendbirdUIKit.SBUGroupChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUGroupChannelViewModelDataSource? = nil, displaysLocalCachedListFirst: Swift.Bool = false) @objc deinit override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) override public func refreshChannel() @@ -10235,10 +10410,10 @@ extension SendbirdUIKit.SBUGroupChannelViewModel : SendbirdChatSDK.GroupChannelD } @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUQuoteMessageInputViewParams) public enum Edge : Swift.Int { case vertical @@ -10261,7 +10436,7 @@ public protocol SBUOpenChannelSettingsModuleHeaderDelegate : SendbirdUIKit.SBUBa } extension SendbirdUIKit.SBUOpenChannelSettingsModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelSettingsModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate? { get set } @@ -10270,7 +10445,7 @@ extension SendbirdUIKit.SBUOpenChannelSettingsModule { @available(*, unavailable, renamed: "SBUOpenChannelSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @_Concurrency.MainActor(unsafe) @objc public func didUpdateRightItem() @@ -10327,11 +10502,11 @@ public protocol SBUCreateChannelModuleListDataSource : SendbirdUIKit.SBUBaseSele } extension SendbirdUIKit.SBUCreateChannelModule { @_inheritsConvenienceInitializers @objc(SBUCreateChannelModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUCreateChannelModuleListDataSource? { get set } @@ -10340,7 +10515,7 @@ extension SendbirdUIKit.SBUCreateChannelModule { @available(*, unavailable, renamed: "SBUCreateChannelModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUCreateChannelModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUCreateChannelModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index 72313de06..fabda2557 100644 Binary files a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index af0f65451..f3097eddf 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) +// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) // swift-module-flags: -target x86_64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name SendbirdUIKit // swift-module-flags-ignorable: -enable-bare-slash-regex import AVFAudio @@ -83,9 +83,9 @@ import simd @_Concurrency.MainActor(unsafe) public var stackView: SendbirdUIKit.SBUStackView @_Concurrency.MainActor(unsafe) public var fileImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var fileNameLabel: UIKit.UILabel - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with fileType: Swift.String, fileName: Swift.String, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) open func configure(with messageFileType: SendbirdUIKit.SBUMessageFileType, fileName: Swift.String, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) open func addHighlight(keyword: Swift.String, toAttributedString attributedString: Foundation.NSMutableAttributedString, highlightTextColor: UIKit.UIColor) @@ -134,8 +134,8 @@ extension SendbirdUIKit.SBUBaseChannelModule { @objc @_Concurrency.MainActor(unsafe) public var newMessageInfoView: UIKit.UIView? @objc @_Concurrency.MainActor(unsafe) public var scrollBottomView: UIKit.UIView? @objc @_Concurrency.MainActor(unsafe) public var userProfileView: UIKit.UIView? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelModuleListDataSource? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get @@ -206,8 +206,8 @@ extension SendbirdUIKit.SBUConfig { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } @objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUBaseMessageCell : SendbirdUIKit.SBUTableViewCell, SendbirdUIKit.SBUMessageCellProtocol { @@ -251,7 +251,7 @@ public protocol SBUOpenChannelListModuleHeaderDelegate : SendbirdUIKit.SBUBaseCh extension SendbirdUIKit.SBUOpenChannelListModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelListModule.Header { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUOpenChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate? { get set } @@ -260,7 +260,7 @@ extension SendbirdUIKit.SBUOpenChannelListModule { @available(*, unavailable, renamed: "SBUOpenChannelListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUOpenChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUOpenChannelListTheme) @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUOpenChannelListTheme? = nil) } } @@ -273,7 +273,7 @@ public protocol SBUCommonDelegate : AnyObject { @objc deinit } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUParentMessageInfoReactionView : SendbirdUIKit.SBUMessageReactionView { - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(maxWidth: CoreFoundation.CGFloat, useReaction: Swift.Bool, reactions: [SendbirdChatSDK.Reaction]) @_Concurrency.MainActor(unsafe) override open func getCellSize(count: Swift.Int) -> CoreFoundation.CGSize @_Concurrency.MainActor(unsafe) @objc override open func collectionView(_ collectionView: UIKit.UICollectionView, numberOfItemsInSection section: Swift.Int) -> Swift.Int @@ -299,8 +299,8 @@ extension SendbirdUIKit.SBUMessageSearchModule { } @objc @_Concurrency.MainActor(unsafe) public var resultCell: SendbirdUIKit.SBUMessageSearchResultCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageSearchTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageSearchModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageSearchModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageSearchModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageSearchModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var resultList: [SendbirdChatSDK.BaseMessage] { @objc get } @@ -309,7 +309,7 @@ extension SendbirdUIKit.SBUMessageSearchModule { @available(*, unavailable, renamed: "SBUMessageSearchModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageSearchModuleListDelegate, dataSource: any SendbirdUIKit.SBUMessageSearchModuleListDataSource, theme: SendbirdUIKit.SBUMessageSearchTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageSearchModuleListDelegate, dataSource: SendbirdUIKit.SBUMessageSearchModuleListDataSource, theme: SendbirdUIKit.SBUMessageSearchTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageSearchTheme? = nil) @@ -349,18 +349,18 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageThreadModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? + @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? @objc @_Concurrency.MainActor(unsafe) public var mentionManager: SendbirdUIKit.SBUMentionManager? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleInputDelegate, dataSource: any SendbirdUIKit.SBUMessageThreadModuleInputDataSource, parentMessage: SendbirdChatSDK.BaseMessage?, mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleInputDelegate, dataSource: SendbirdUIKit.SBUMessageThreadModuleInputDataSource, parentMessage: SendbirdChatSDK.BaseMessage?, mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -407,11 +407,11 @@ public protocol SBUGroupChannelModuleHeaderDelegate : SendbirdUIKit.SBUBaseChann } extension SendbirdUIKit.SBUGroupChannelModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func onTapLeftBarButton() @_Concurrency.MainActor(unsafe) @objc override open func onTapRightBarButton() @@ -557,11 +557,11 @@ public protocol SBUGroupChannelSettingsViewModelDelegate : SendbirdUIKit.SBUBase @available(*, deprecated, renamed: "SBUGroupChannelSettingsViewModel") public typealias SBUChannelSettingsViewModel = SendbirdUIKit.SBUGroupChannelSettingsViewModel @objc open class SBUGroupChannelSettingsViewModel : SendbirdUIKit.SBUBaseChannelSettingsViewModel { - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUGroupChannelSettingsViewModelDelegate? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String?) override public func updateChannel(channelName: Swift.String? = nil, coverImage: UIKit.UIImage? = nil) @@ -594,15 +594,15 @@ public protocol SBURegisterOperatorViewModelDelegate : SendbirdUIKit.SBUBaseSele public protocol SBURegisterOperatorViewModelDataSource : SendbirdUIKit.SBUBaseSelectUserViewModelDataSource { } @objc open class SBURegisterOperatorViewModel : SendbirdUIKit.SBUBaseSelectUserViewModel { - weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBURegisterOperatorViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBURegisterOperatorViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: (any SendbirdUIKit.SBURegisterOperatorViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBURegisterOperatorViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: SendbirdUIKit.SBURegisterOperatorViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBURegisterOperatorViewModelDataSource? = nil) public func registerAsOperators() public func registerAsOperators(users: [SendbirdUIKit.SBUUser]) public func registerAsOperators(userIds: [Swift.String]) @@ -635,15 +635,15 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.OpenChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleInputDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelModuleInputDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleInputDelegate, dataSource: SendbirdUIKit.SBUOpenChannelModuleInputDataSource, theme: SendbirdUIKit.SBUChannelTheme) @objc @_Concurrency.MainActor(unsafe) open func updateStyles(overlaid: Swift.Bool = false) @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @_Concurrency.MainActor(unsafe) @objc override open func pickVideoFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -677,8 +677,8 @@ extension SendbirdUIKit.SBUBaseSelectUserModule { } @objc @_Concurrency.MainActor(unsafe) public var userCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseSelectUserModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseSelectUserModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseSelectUserModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseSelectUserModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var userList: [SendbirdUIKit.SBUUser]? { @objc get } @@ -713,15 +713,15 @@ public protocol SBUInviteUserViewModelDelegate : SendbirdUIKit.SBUBaseSelectUser public protocol SBUInviteUserViewModelDataSource : SendbirdUIKit.SBUBaseSelectUserViewModelDataSource { } @objc open class SBUInviteUserViewModel : SendbirdUIKit.SBUBaseSelectUserViewModel { - weak public var delegate: (any SendbirdUIKit.SBUInviteUserViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUInviteUserViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUInviteUserViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUInviteUserViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: (any SendbirdUIKit.SBUInviteUserViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUInviteUserViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, delegate: SendbirdUIKit.SBUInviteUserViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUInviteUserViewModelDataSource? = nil) public func inviteUsers() public func invite(users: [SendbirdUIKit.SBUUser]) public func invite(userIds: [Swift.String]) @@ -737,9 +737,9 @@ public protocol SBUInviteUserViewModelDataSource : SendbirdUIKit.SBUBaseSelectUs get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(timestamp: Swift.Int64) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -754,11 +754,11 @@ public protocol SBURegisterOperatorModuleListDataSource : SendbirdUIKit.SBUBaseS } extension SendbirdUIKit.SBURegisterOperatorModule { @_inheritsConvenienceInitializers @objc(SBURegisterOperatorModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBURegisterOperatorModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBURegisterOperatorModuleListDataSource? { get set } @@ -767,7 +767,7 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @available(*, unavailable, renamed: "SBURegisterOperatorModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBURegisterOperatorModuleListDelegate, dataSource: any SendbirdUIKit.SBURegisterOperatorModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBURegisterOperatorModuleListDelegate, dataSource: SendbirdUIKit.SBURegisterOperatorModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } @@ -791,29 +791,27 @@ open class SBUModerationsViewModel { public var channelType: SendbirdChatSDK.ChannelType { get } - public init(channel: SendbirdChatSDK.BaseChannel, delegate: (any SendbirdUIKit.SBUModerationsViewModelDelegate)? = nil) - public init(channelURL: Swift.String, channelType: SendbirdChatSDK.ChannelType, delegate: (any SendbirdUIKit.SBUModerationsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel, delegate: SendbirdUIKit.SBUModerationsViewModelDelegate? = nil) + public init(channelURL: Swift.String, channelType: SendbirdChatSDK.ChannelType, delegate: SendbirdUIKit.SBUModerationsViewModelDelegate? = nil) public func loadChannel(channelURL: Swift.String) public func freezeChannel(_ completionHandler: ((Swift.Bool) -> Swift.Void)? = nil) public func unfreezeChannel(_ completionHandler: ((Swift.Bool) -> Swift.Void)? = nil) @objc deinit } -@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUView : UIKit.UIView { +@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) open class SBUView : UIKit.UIView, SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) @objc dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "init(frame:)") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() @objc deinit } -extension SendbirdUIKit.SBUView : SendbirdUIKit.SBUViewLifeCycle { - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupActions() -} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUMessageReactionView : SendbirdUIKit.SBUView, UIKit.UICollectionViewDelegate, UIKit.UICollectionViewDataSource, UIKit.UICollectionViewDelegateFlowLayout { @_Concurrency.MainActor(unsafe) public var collectionView: UIKit.UICollectionView { get @@ -839,9 +837,9 @@ extension SendbirdUIKit.SBUView : SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "MessageReactionView()") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func hasMoreEmoji(at indexPath: Foundation.IndexPath) -> Swift.Bool @_Concurrency.MainActor(unsafe) open func configure(maxWidth: CoreFoundation.CGFloat, useReaction: Swift.Bool, reactions: [SendbirdChatSDK.Reaction]) @_Concurrency.MainActor(unsafe) open func getCellSize(count: Swift.Int) -> CoreFoundation.CGSize @@ -926,11 +924,11 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var fileMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? @objc @_Concurrency.MainActor(unsafe) public var unknownMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? @objc @_Concurrency.MainActor(unsafe) public var customMessageCell: SendbirdUIKit.SBUOpenChannelBaseMessageCell? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelModuleListDataSource? { get set } @@ -940,7 +938,7 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_Concurrency.MainActor(unsafe) public var isOverlaid: Swift.Bool { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @objc @_Concurrency.MainActor(unsafe) open func updateLayouts() @@ -996,9 +994,9 @@ extension SendbirdUIKit.SBUOpenChannelModule { get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?) @objc deinit @@ -1021,8 +1019,8 @@ extension SendbirdUIKit.SBUBaseChannelListModule { } @objc @_Concurrency.MainActor(unsafe) public var channelCell: SendbirdUIKit.SBUBaseChannelCell? @objc @_Concurrency.MainActor(unsafe) public var customCell: SendbirdUIKit.SBUBaseChannelCell? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelListModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelListModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelListModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelListModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannelList: [SendbirdChatSDK.BaseChannel]? { @objc get } @@ -1120,11 +1118,11 @@ public protocol SBUCreateChannelModuleHeaderDataSource : SendbirdUIKit.SBUBaseSe } extension SendbirdUIKit.SBUCreateChannelModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource? { get set } @@ -1133,7 +1131,7 @@ extension SendbirdUIKit.SBUCreateChannelModule { @available(*, unavailable, renamed: "SBUCreateChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateChannelModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUCreateChannelModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -1147,7 +1145,7 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUEmptyView : SendbirdUIKit.SBUView { @_Concurrency.MainActor(unsafe) public var type: SendbirdUIKit.EmptyViewType - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUEmptyViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUEmptyViewDelegate? @_Concurrency.MainActor(unsafe) public var statusImageView: UIKit.UIImageView { get set @@ -1173,10 +1171,10 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { @available(*, unavailable, renamed: "SBUEmptyView.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateTopAnchorConstraint(constant: CoreFoundation.CGFloat) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func reloadData(_ type: SendbirdUIKit.EmptyViewType) @_Concurrency.MainActor(unsafe) open func updateViews() @objc @_Concurrency.MainActor(unsafe) open func onClickRetry(_ sender: Any) @@ -1188,8 +1186,8 @@ public protocol SBUEmptyViewDelegate : ObjectiveC.NSObjectProtocol { public var openChannel: SendbirdUIKit.SBUConfig.OpenChannel @objc override dynamic public init() @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } open class SBUGroupChannelSettingsModule { public static var HeaderComponent: SendbirdUIKit.SBUGroupChannelSettingsModule.Header.Type @@ -1243,13 +1241,13 @@ extension SendbirdUIKit.SBUChannelInfoHeaderViewDelegate { set _modify } - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUChannelInfoHeaderViewDelegate)?) + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUChannelInfoHeaderViewDelegate?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "SBUChannelInfoHeaderView()") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func setupInfoButtonStyle() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?, description: Swift.String?) @@ -1283,15 +1281,62 @@ public class SBUChatNotificationChannelModule { @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView @_Concurrency.MainActor(unsafe) public var fileImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var fileNameLabel: UIKit.UILabel - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) public func addHighlight(keyword: Swift.String, toAttributedString attributedString: Foundation.NSMutableAttributedString, highlightTextColor: UIKit.UIColor) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit } +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUCardView : SendbirdUIKit.SBUView { + public struct Metric { + public static var maxWidth: Swift.Double + public static var textMinWidth: Swift.Double + public static var imageSize: Swift.Double + } + @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme + @_Concurrency.MainActor(unsafe) public var imageURL: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var title: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var subtitle: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var text: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var link: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUCardViewParams? { + get + } + @_Concurrency.MainActor(unsafe) public var contentStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var mainInfoStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var titleStackView: SendbirdUIKit.SBUStackView + @_Concurrency.MainActor(unsafe) public var titleLabel: UIKit.UILabel + @_Concurrency.MainActor(unsafe) public var subtitleLabel: UIKit.UILabel + @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView { + get + set + } + @_Concurrency.MainActor(unsafe) public var descriptionTextView: UIKit.UITextView + @_Concurrency.MainActor(unsafe) public var textLeftConstraint: UIKit.NSLayoutConstraint? + @_Concurrency.MainActor(unsafe) public var textRightConstraint: UIKit.NSLayoutConstraint? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupActions() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUCardViewParams) + @objc @_Concurrency.MainActor(unsafe) public func openURL() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @_hasMissingDesignatedInitializers public class SBUColorSet { public static var primary100: UIKit.UIColor public static var primary200: UIKit.UIColor @@ -1521,8 +1566,8 @@ extension SendbirdUIKit.SBUConfig { public var camera: SendbirdUIKit.SBUConfig.BaseInput.Camera public var gallery: SendbirdUIKit.SBUConfig.BaseInput.Gallery @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.BaseInput { @@ -1538,8 +1583,8 @@ extension SendbirdUIKit.SBUConfig.BaseInput { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.BaseInput { @@ -1555,8 +1600,8 @@ extension SendbirdUIKit.SBUConfig.BaseInput { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } open class SBUGroupChannelModule { @@ -1598,11 +1643,11 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -2053,13 +2098,13 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUCreateOpenChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUCreateOpenChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUCreateOpenChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateOpenChannelModuleHeaderDelegate, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUCreateOpenChannelTheme? = nil) @@ -2085,10 +2130,10 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { } @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupSizeContraint() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) open func setImage(_ image: UIKit.UIImage?, size: CoreFoundation.CGSize? = nil) @_Concurrency.MainActor(unsafe) open func setFileIcon() @@ -2117,12 +2162,12 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc open func setupViews() - @_Concurrency.MainActor(unsafe) @objc open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc open func setupActions() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() @_Concurrency.MainActor(unsafe) open func configure(model: SendbirdUIKit.SBUMessageWebViewModel) @objc deinit } @@ -2305,7 +2350,7 @@ open class SBUMessageSearchViewModel { public var messageSearchQuery: SendbirdChatSDK.MessageSearchQuery? { get } - public init(channel: SendbirdChatSDK.BaseChannel, params: SendbirdChatSDK.MessageSearchQueryParams? = nil, delegate: (any SendbirdUIKit.SBUMessageSearchViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel, params: SendbirdChatSDK.MessageSearchQueryParams? = nil, delegate: SendbirdUIKit.SBUMessageSearchViewModelDelegate? = nil) open func search(keyword: Swift.String) public func search(keyword: Swift.String, query: SendbirdChatSDK.MessageSearchQuery) public func loadMore() @@ -2463,13 +2508,13 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule { @objc @_Concurrency.MainActor(unsafe) open func inviteUserViewModel(_ viewModel: SendbirdUIKit.SBUInviteUserViewModel, didInviteUserIds userIds: [Swift.String]) @_Concurrency.MainActor(unsafe) @objc override open func baseSelectedUserViewModel(_ viewModel: SendbirdUIKit.SBUBaseSelectUserViewModel, didUpdateSelectedUsers selectedUsers: [SendbirdUIKit.SBUUser]?) } -@objc public protocol SBUViewLifeCycle { - @objc func setupViews() - @objc func setupStyles() - @objc func updateStyles() - @objc func setupLayouts() - @objc func updateLayouts() - @objc func setupActions() +public protocol SBUViewLifeCycle { + func setupViews() + func setupStyles() + func updateStyles() + func setupLayouts() + func updateLayouts() + func setupActions() } public typealias SBUNewNotificationInfoHandler = () -> Swift.Void extension SendbirdUIKit.SBUBaseChannelViewController { @@ -2550,11 +2595,11 @@ public protocol SBUOpenChannelSettingsModuleListDataSource : SendbirdUIKit.SBUBa } extension SendbirdUIKit.SBUOpenChannelSettingsModule { @_inheritsConvenienceInitializers @objc(SBUOpenChannelSettingsModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelSettingsModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource? { get set } @@ -2566,7 +2611,7 @@ extension SendbirdUIKit.SBUOpenChannelSettingsModule { @available(*, unavailable, renamed: "SBUOpenChannelSettingsModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupItems() @_Concurrency.MainActor(unsafe) open func createModerationsItem() -> SendbirdUIKit.SBUChannelSettingItem @@ -2632,13 +2677,13 @@ extension SendbirdUIKit.SBUGroupChannelPushSettingsModule { } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUGroupChannelPushSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUGroupChannelPushSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -2671,7 +2716,7 @@ extension SendbirdUIKit.SBUSelectablePhotoViewDelegate { set _modify } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUSelectablePhotoViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUSelectablePhotoViewDelegate? @objc @_Concurrency.MainActor(unsafe) public var fetchResult: Photos.PHFetchResult @objc @_Concurrency.MainActor(unsafe) public var columnSize: CoreFoundation.CGSize { @objc get @@ -2704,11 +2749,11 @@ public protocol SBUOpenChannelSettingsViewModelDelegate : SendbirdUIKit.SBUBaseC func openChannelSettingsViewModel(_ viewModel: SendbirdUIKit.SBUOpenChannelSettingsViewModel, didDeleteChannel channel: SendbirdChatSDK.OpenChannel) } @objc open class SBUOpenChannelSettingsViewModel : SendbirdUIKit.SBUBaseChannelSettingsViewModel { - weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUOpenChannelSettingsViewModelDelegate? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String?) override public func updateChannel(channelName: Swift.String? = nil, coverImage: UIKit.UIImage? = nil) @@ -2747,8 +2792,8 @@ extension SendbirdUIKit.SBUOpenChannelSettingsViewModel : SendbirdChatSDK.OpenCh set } public init(wrappedValue: T) - public init(from decoder: any Swift.Decoder) throws - public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws } public protocol SBUQuoteMessageInputViewProtocol : SendbirdUIKit.SBUViewLifeCycle { func configure(with configuration: SendbirdUIKit.SBUQuoteMessageInputViewParams) @@ -2856,9 +2901,9 @@ extension SendbirdUIKit.SBUBaseChannelViewModel : SendbirdChatSDK.BaseChannelDel public static var descBottomMargin: CoreFoundation.CGFloat public static var stackSpacing: CoreFoundation.CGFloat } - @_Concurrency.MainActor(unsafe) @objc override open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func configure(model: SendbirdUIKit.SBUMessageWebViewModel) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init(coder: Foundation.NSCoder) @@ -2871,12 +2916,12 @@ extension SendbirdUIKit.SBUBaseChannelViewModel : SendbirdChatSDK.BaseChannelDel @objc deinit } extension SendbirdUIKit.SBUTableViewCell : SendbirdUIKit.SBUViewLifeCycle { - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc dynamic open func setupActions() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupViews() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupLayouts() + @objc @_Concurrency.MainActor(unsafe) dynamic open func updateLayouts() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupStyles() + @objc @_Concurrency.MainActor(unsafe) dynamic open func updateStyles() + @objc @_Concurrency.MainActor(unsafe) dynamic open func setupActions() } public protocol SBUMessageCellProtocol { func configure(with configuration: SendbirdUIKit.SBUBaseMessageCellParams) @@ -2992,6 +3037,7 @@ public protocol SBUMessageCellProtocol { @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapQuotedMessageView quotedMessageView: SendbirdUIKit.SBUQuotedBaseMessageView) @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMentionUser user: SendbirdUIKit.SBUUser) @objc @_Concurrency.MainActor(unsafe) open func groupChannelModuleDidTapThreadInfoView(_ threadInfoView: SendbirdUIKit.SBUThreadInfoView) + @objc @_Concurrency.MainActor(unsafe) open func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didSelectQuickReplyOption text: Swift.String) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModule(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, didTapVoiceMessage fileMessage: SendbirdChatSDK.FileMessage, cell: UIKit.UITableViewCell, forRowAt indexPath: Foundation.IndexPath) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModuleDidTapScrollToButton(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override open func baseChannelModule(_ listComponent: SendbirdUIKit.SBUBaseChannelModule.List, didScroll scrollView: UIKit.UIScrollView) @@ -3015,8 +3061,8 @@ public protocol SBUMessageCellProtocol { @objc @_Concurrency.MainActor(unsafe) open func voiceMessageInputView(_ inputView: SendbirdUIKit.SBUVoiceMessageInputView, didTapSend voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo) } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelCommonContentView : SendbirdUIKit.SBUCommonContentView { - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, highlightKeyword: Swift.String?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -3138,11 +3184,11 @@ public protocol SBUGroupChannelListModuleListDataSource : SendbirdUIKit.SBUBaseC extension SendbirdUIKit.SBUGroupChannelListModule { @_inheritsConvenienceInitializers @objc(SBUGroupChannelListModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelListModule.List { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUGroupChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelListModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelListModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelListModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelListModuleListDataSource? { get set } @@ -3154,7 +3200,7 @@ extension SendbirdUIKit.SBUGroupChannelListModule { @available(*, unavailable, renamed: "SBUGroupChannelListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelListModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelListModuleListDataSource, theme: SendbirdUIKit.SBUGroupChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelListModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelListModuleListDataSource, theme: SendbirdUIKit.SBUGroupChannelListTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUGroupChannelListTheme? = nil) @objc @_Concurrency.MainActor(unsafe) public func leaveContextualAction(with indexPath: Foundation.IndexPath) -> UIKit.UIContextualAction? @@ -3190,7 +3236,7 @@ public class SBUAlertButtonItem { @objc deinit } @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class SBUAlertView : ObjectiveC.NSObject { - public static func show(title: Swift.String, message: Swift.String? = nil, needInputField: Swift.Bool = false, placeHolder: Swift.String? = "", centerYRatio: CoreFoundation.CGFloat? = 1.0, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, confirmButtonItem: SendbirdUIKit.SBUAlertButtonItem, cancelButtonItem: SendbirdUIKit.SBUAlertButtonItem?, delegate: (any SendbirdUIKit.SBUAlertViewDelegate)? = nil, dismissHandler: (() -> Swift.Void)? = nil) + public static func show(title: Swift.String, message: Swift.String? = nil, needInputField: Swift.Bool = false, placeHolder: Swift.String? = "", centerYRatio: CoreFoundation.CGFloat? = 1.0, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, confirmButtonItem: SendbirdUIKit.SBUAlertButtonItem, cancelButtonItem: SendbirdUIKit.SBUAlertButtonItem?, delegate: SendbirdUIKit.SBUAlertViewDelegate? = nil, dismissHandler: (() -> Swift.Void)? = nil) public static func dismiss() @objc deinit } @@ -3234,7 +3280,7 @@ public protocol SBUBaseSelectUserViewModelDataSource : AnyObject { public var joinedUserIds: Swift.Set { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, inviteListType: SendbirdUIKit.ChannelInviteListType, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: (any SendbirdUIKit.SBUBaseSelectUserViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUBaseSelectUserViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, inviteListType: SendbirdUIKit.ChannelInviteListType, userListQuery: SendbirdChatSDK.ApplicationUserListQuery? = nil, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: SendbirdUIKit.SBUBaseSelectUserViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUBaseSelectUserViewModelDataSource? = nil) public func loadChannel(channelURL: Swift.String, type: SendbirdChatSDK.ChannelType) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) public func preLoadNextUserList(indexPath: Foundation.IndexPath) @@ -3296,8 +3342,8 @@ extension SendbirdUIKit.SBUBaseChannelModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleInputDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelModuleInputDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleInputDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelModuleInputDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -3344,9 +3390,9 @@ extension SendbirdUIKit.SBUBaseChannelModule { @_Concurrency.MainActor(unsafe) public var position: SendbirdUIKit.MessagePosition @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() @_Concurrency.MainActor(unsafe) public func setAxis(_ axis: UIKit.NSLayoutConstraint.Axis) @_Concurrency.MainActor(unsafe) public func addArrangedSubview(_ view: UIKit.UIView) @_Concurrency.MainActor(unsafe) public func removeArrangedSubview(_ view: UIKit.UIView) @@ -3430,9 +3476,9 @@ extension SendbirdUIKit.SBUBaseChannelModule { get set } - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) override open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -3493,8 +3539,8 @@ extension SendbirdUIKit.SBUConfig { public var channel: SendbirdUIKit.SBUConfig.OpenChannel.Channel @objc override dynamic public init() @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.OpenChannel { @@ -3506,13 +3552,13 @@ extension SendbirdUIKit.SBUConfig.OpenChannel { } public var input: SendbirdUIKit.SBUConfig.OpenChannel.Channel.Input @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.OpenChannel.Channel { @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class Input : SendbirdUIKit.SBUConfig.BaseInput { - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } } @@ -3531,16 +3577,16 @@ public protocol SBUSuggestedMentionListDelegate : AnyObject { get } @_Concurrency.MainActor(unsafe) public var isLimitGuideEnabled: Swift.Bool - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUSuggestedMentionListDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUSuggestedMentionListDelegate? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme @_Concurrency.MainActor(unsafe) public var showsUserId: Swift.Bool { get set } @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) public func register(userCell: UIKit.UITableViewCell, nib: UIKit.UINib? = nil) @_Concurrency.MainActor(unsafe) public func register(limitGuideCell: UIKit.UITableViewCell, nib: UIKit.UINib? = nil) @_Concurrency.MainActor(unsafe) @objc open func tableView(_ tableView: UIKit.UITableView, numberOfRowsInSection section: Swift.Int) -> Swift.Int @@ -3563,8 +3609,8 @@ extension SendbirdUIKit.SBUConfig { public var channelList: SendbirdUIKit.SBUConfig.GroupChannel.ChannelList public var setting: SendbirdUIKit.SBUConfig.GroupChannel.Setting @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3604,8 +3650,8 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { } public var input: SendbirdUIKit.SBUConfig.GroupChannel.Channel.Input @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3621,8 +3667,8 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel { @@ -3633,13 +3679,13 @@ extension SendbirdUIKit.SBUConfig.GroupChannel { _modify } @objc deinit - public func encode(to encoder: any Swift.Encoder) throws - required public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: Swift.Encoder) throws + required public init(from decoder: Swift.Decoder) throws } } extension SendbirdUIKit.SBUConfig.GroupChannel.Channel { @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class Input : SendbirdUIKit.SBUConfig.BaseInput { - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } } @@ -3654,7 +3700,7 @@ extension SendbirdUIKit.SBUConfig.GroupChannel.Channel { final public let type: SendbirdUIKit.SBUMessageTemplate.ActionType final public let data: Swift.String final public let alterData: Swift.String? - required public init(from decoder: any Swift.Decoder) throws + required public init(from decoder: Swift.Decoder) throws @objc deinit } public enum ActionType : Swift.String, Swift.Decodable { @@ -3700,11 +3746,11 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var customMessageCell: SendbirdUIKit.SBUBaseMessageCell? { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUMessageThreadModuleListDataSource? { get set } @@ -3714,7 +3760,7 @@ extension SendbirdUIKit.SBUMessageThreadModule { @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleListDelegate, dataSource: any SendbirdUIKit.SBUMessageThreadModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleListDelegate, dataSource: SendbirdUIKit.SBUMessageThreadModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -3840,11 +3886,11 @@ public protocol SBUInviteUserModuleHeaderDataSource : SendbirdUIKit.SBUBaseSelec } extension SendbirdUIKit.SBUInviteUserModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUInviteUserModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUInviteUserModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUInviteUserModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUInviteUserModuleHeaderDataSource? { get set } @@ -3853,7 +3899,7 @@ extension SendbirdUIKit.SBUInviteUserModule { @available(*, unavailable, renamed: "SBUInviteUserModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUInviteUserModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUInviteUserModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUInviteUserModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUInviteUserModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -4102,6 +4148,32 @@ extension SendbirdUIKit.SBUInviteUserModule { public static func restoreDefaultIcons() @objc deinit } +public protocol SBUQuickReplyViewDelegate : AnyObject { + func quickReplyView(_ view: SendbirdUIKit.SBUQuickReplyView, didSelectOption optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} +@objc @_inheritsConvenienceInitializers @IBDesignable @_Concurrency.MainActor(unsafe) public class SBUQuickReplyView : SendbirdUIKit.SBUView, SendbirdUIKit.SBUQuickReplyOptionViewDelegate { + @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView + @_Concurrency.MainActor(unsafe) public var topSpacer: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var options: [Swift.String] { + get + } + @_Concurrency.MainActor(unsafe) public var messageId: Swift.Int64? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUQuickReplyViewParams? { + get + } + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuickReplyViewDelegate? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUQuickReplyViewParams, delegate: SendbirdUIKit.SBUQuickReplyViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) public func createQuickReplyOptionViews(options: [Swift.String]) -> [SendbirdUIKit.SBUQuickReplyOptionView] + @_Concurrency.MainActor(unsafe) public func quickReplyOptionViewDidSelect(_ optionView: SendbirdUIKit.SBUQuickReplyOptionView) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelContentBaseMessageCell : SendbirdUIKit.SBUOpenChannelBaseMessageCell { @objc @_Concurrency.MainActor(unsafe) public var baseStackView: UIKit.UIStackView { @objc get @@ -4163,8 +4235,8 @@ public protocol SBUUserListViewModelDataSource : AnyObject { func userListViewModel(_ viewModel: SendbirdUIKit.SBUUserListViewModel, nextUserListForChannel channel: SendbirdChatSDK.BaseChannel?) -> [SendbirdUIKit.SBUUser]? } @objc open class SBUUserListViewModel : ObjectiveC.NSObject { - weak public var delegate: (any SendbirdUIKit.SBUUserListViewModelDelegate)? - weak public var dataSource: (any SendbirdUIKit.SBUUserListViewModelDataSource)? + weak public var delegate: SendbirdUIKit.SBUUserListViewModelDelegate? + weak public var dataSource: SendbirdUIKit.SBUUserListViewModelDataSource? public var channel: SendbirdChatSDK.BaseChannel? { get } @@ -4186,7 +4258,7 @@ public protocol SBUUserListViewModelDataSource : AnyObject { public var userListType: SendbirdUIKit.ChannelUserListType { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListType: SendbirdUIKit.ChannelUserListType, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, operatorListQuery: SendbirdChatSDK.OperatorListQuery? = nil, mutedMemberListQuery: SendbirdChatSDK.MemberListQuery? = nil, mutedParticipantListQuery: SendbirdChatSDK.MutedUserListQuery? = nil, bannedUserListQuery: SendbirdChatSDK.BannedUserListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: (any SendbirdUIKit.SBUUserListViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUUserListViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, channelType: SendbirdChatSDK.ChannelType = .group, users: [SendbirdUIKit.SBUUser]? = nil, userListType: SendbirdUIKit.ChannelUserListType, memberListQuery: SendbirdChatSDK.MemberListQuery? = nil, operatorListQuery: SendbirdChatSDK.OperatorListQuery? = nil, mutedMemberListQuery: SendbirdChatSDK.MemberListQuery? = nil, mutedParticipantListQuery: SendbirdChatSDK.MutedUserListQuery? = nil, bannedUserListQuery: SendbirdChatSDK.BannedUserListQuery? = nil, participantListQuery: SendbirdChatSDK.ParticipantListQuery? = nil, delegate: SendbirdUIKit.SBUUserListViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUUserListViewModelDataSource? = nil) @objc deinit public func loadChannel(channelURL: Swift.String, type: SendbirdChatSDK.ChannelType) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) @@ -4238,7 +4310,7 @@ extension SendbirdUIKit.SBUBaseChannelListModule { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelListModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelListModuleHeaderDelegate? @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @objc @_Concurrency.MainActor(unsafe) open func onTapLeftBarButton() @@ -4324,7 +4396,7 @@ public protocol SBUThreadInfoViewProtocol : SendbirdUIKit.SBUViewLifeCycle { set _modify } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUThreadInfoViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUThreadInfoViewDelegate? @_Concurrency.MainActor(unsafe) public var threadInfo: SendbirdChatSDK.ThreadInfo? { get } @@ -4339,11 +4411,11 @@ public protocol SBUThreadInfoViewProtocol : SendbirdUIKit.SBUViewLifeCycle { @_Concurrency.MainActor(unsafe) final public let repliedUserLimit: Swift.Int @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageCellTheme) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupActions() @_Concurrency.MainActor(unsafe) open func configure(with message: SendbirdChatSDK.BaseMessage, messagePosition: SendbirdUIKit.MessagePosition) @_Concurrency.MainActor(unsafe) open func setupRepliedUsers() @objc @_Concurrency.MainActor(unsafe) open func onTapThreadInfo(sender: UIKit.UITapGestureRecognizer) @@ -4367,7 +4439,7 @@ public protocol SBUMessageThreadTitleViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadTitleViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadTitleViewDelegate? @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme { get set @@ -4377,10 +4449,10 @@ public protocol SBUMessageThreadTitleViewDelegate : AnyObject { get } @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUMessageThreadTitleViewDelegate)? = nil) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUMessageThreadTitleViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() @objc @_Concurrency.MainActor(unsafe) open func onTapChannelName(sender: UIKit.UITapGestureRecognizer) @_Concurrency.MainActor(unsafe) open func configure(channel: SendbirdChatSDK.BaseChannel?, title: Swift.String?) @@ -4514,11 +4586,11 @@ public protocol SBUCreateChannelTypeSelectorProtocol { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "CreateChannelTypeSelectView.init(delegate:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) public init(delegate: (any SendbirdUIKit.SBUCreateChannelTypeSelectorDelegate)?) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) public init(delegate: SendbirdUIKit.SBUCreateChannelTypeSelectorDelegate?) + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func updateStyles() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func show() @_Concurrency.MainActor(unsafe) open func dismiss() @objc @_Concurrency.MainActor(unsafe) open func onClickClose() @@ -4693,8 +4765,8 @@ public enum UserListType : Swift.Hashable { case mutedMembers @available(*, unavailable, renamed: "banned") case bannedMembers - public static func == (a: SendbirdUIKit.UserListType, b: SendbirdUIKit.UserListType) -> Swift.Bool public func hash(into hasher: inout Swift.Hasher) + public static func == (a: SendbirdUIKit.UserListType, b: SendbirdUIKit.UserListType) -> Swift.Bool public var hashValue: Swift.Int { get } @@ -4931,7 +5003,7 @@ public protocol SBUParentMessageInfoViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles() - @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.BaseMessage?, delegate: (any SendbirdUIKit.SBUParentMessageInfoViewDelegate)?, useReaction: Swift.Bool = false, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) + @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.BaseMessage?, delegate: SendbirdUIKit.SBUParentMessageInfoViewDelegate?, useReaction: Swift.Bool = false, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) @_Concurrency.MainActor(unsafe) open func setupActions() @objc @_Concurrency.MainActor(unsafe) open func onTapUserProfileView(sender: UIKit.UITapGestureRecognizer) @objc @_Concurrency.MainActor(unsafe) open func onTapContentView(sender: UIKit.UITapGestureRecognizer) @@ -4950,13 +5022,14 @@ public protocol SBUParentMessageInfoViewDelegate : AnyObject { public static var fileMessageParamsSendBuilder: ((_ params: SendbirdChatSDK.FileMessageCreateParams?) -> Swift.Void)? public static var voiceFileMessageParamsSendBuilder: ((_ params: SendbirdChatSDK.FileMessageCreateParams?) -> Swift.Void)? public static var messageListParamsBuilder: ((_ params: SendbirdChatSDK.MessageListParams?) -> Swift.Void)? + public static var cardViewParamsCollectionBuilder: ((_ messageData: Swift.String) throws -> [SendbirdUIKit.SBUCardViewParams])? @objc deinit } public protocol SBUCreateOpenChannelViewModelDelegate : SendbirdUIKit.SBUCommonViewModelDelegate { func createOpenChannelViewModel(_ viewModel: SendbirdUIKit.SBUCreateOpenChannelViewModel, didCreateChannel channel: SendbirdChatSDK.BaseChannel?) } open class SBUCreateOpenChannelViewModel { - public init(delegate: (any SendbirdUIKit.SBUCreateOpenChannelViewModelDelegate)?) + public init(delegate: SendbirdUIKit.SBUCreateOpenChannelViewModelDelegate?) public func createChannel(channelName: Swift.String, coverImage: UIKit.UIImage?) public func createChannel(params: SendbirdChatSDK.OpenChannelCreateParams) @objc deinit @@ -4967,6 +5040,27 @@ extension SendbirdUIKit.SBUView { @available(*, unavailable, renamed: "updateLayouts()") @_Concurrency.MainActor(unsafe) public func updateAutolayout() } +public protocol SBUQuickReplyOptionViewDelegate : AnyObject { + func quickReplyOptionViewDidSelect(_ optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUQuickReplyOptionView : SendbirdUIKit.SBUView { + @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme + @_Concurrency.MainActor(unsafe) public var selectableStackView: SendbirdUIKit.SBUSelectableStackView + @_Concurrency.MainActor(unsafe) public var textView: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var text: Swift.String? { + get + } + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuickReplyOptionViewDelegate? + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupActions() + @objc @_Concurrency.MainActor(unsafe) public func onSelectOption() + @_Concurrency.MainActor(unsafe) public func configure(with optionText: Swift.String, delegate: SendbirdUIKit.SBUQuickReplyOptionViewDelegate? = nil) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} @objc public protocol SBUQuotedMessageViewDelegate { @objc func didTapQuotedMessageView(_ quotedMessageView: SendbirdUIKit.SBUQuotedBaseMessageView) } @@ -5011,13 +5105,13 @@ extension SendbirdUIKit.SBUView { set } @_Concurrency.MainActor(unsafe) public var mainContainerView: SendbirdUIKit.SBUSelectableStackView - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUQuotedMessageViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUQuotedMessageViewDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupActions() @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @objc @_Concurrency.MainActor(unsafe) open func didTapQuotedMessageView(sender: UIKit.UITapGestureRecognizer) @objc deinit @@ -5066,7 +5160,7 @@ extension UIKit.UIImage { @objc get @objc set } - @_Concurrency.MainActor(unsafe) public var quotedMessageView: (any UIKit.UIView & SendbirdUIKit.SBUQuotedMessageViewProtocol)? { + @_Concurrency.MainActor(unsafe) public var quotedMessageView: (UIKit.UIView & SendbirdUIKit.SBUQuotedMessageViewProtocol)? { get set } @@ -5077,7 +5171,7 @@ extension UIKit.UIImage { @objc @_Concurrency.MainActor(unsafe) public var threadInfoSpacing: UIKit.UIView { @objc get } - @_Concurrency.MainActor(unsafe) public var threadInfoView: (any UIKit.UIView & SendbirdUIKit.SBUThreadInfoViewProtocol)? { + @_Concurrency.MainActor(unsafe) public var threadInfoView: (UIKit.UIView & SendbirdUIKit.SBUThreadInfoViewProtocol)? { get set } @@ -5130,12 +5224,12 @@ extension SendbirdUIKit.SBUModerationsModule { @objc @_Concurrency.MainActor(unsafe) public var tableView: UIKit.UITableView @objc @_Concurrency.MainActor(unsafe) public var moderationCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUModerationsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUModerationsModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUModerationsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUModerationsModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUModerationsModuleListDelegate, dataSource: any SendbirdUIKit.SBUModerationsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUModerationsModuleListDelegate, dataSource: SendbirdUIKit.SBUModerationsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc deinit @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @@ -5165,15 +5259,15 @@ extension SendbirdUIKit.SBUOpenChannelViewModelDelegate { public func openChannelViewModel(_ viewModel: SendbirdUIKit.SBUOpenChannelViewModel, userDidExit user: SendbirdChatSDK.User, forChannel channel: SendbirdChatSDK.OpenChannel) } @objc open class SBUOpenChannelViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUOpenChannelViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUOpenChannelViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUOpenChannelViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = nil, delegate: (any SendbirdUIKit.SBUOpenChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUOpenChannelViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = nil, delegate: SendbirdUIKit.SBUOpenChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUOpenChannelViewModelDataSource? = nil) @objc deinit override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) override public func refreshChannel() @@ -5277,6 +5371,17 @@ extension SendbirdUIKit.SBUGroupChannelViewController { get } } +public struct SBUCardViewParams { + public let imageURL: Swift.String? + public let title: Swift.String? + public let subtitle: Swift.String? + public let description: Swift.String? + public let link: Swift.String? + public var hasLink: Swift.Bool { + get + } + public init(imageURL: Swift.String? = nil, title: Swift.String? = nil, subtitle: Swift.String? = nil, description: Swift.String? = nil, link: Swift.String? = nil) +} public protocol SBUUserListModuleListDelegate : SendbirdUIKit.SBUCommonDelegate { func userListModule(_ listComponent: SendbirdUIKit.SBUUserListModule.List, didSelectRowAt indexPath: Foundation.IndexPath) func userListModule(_ listComponent: SendbirdUIKit.SBUUserListModule.List, didDetectPreloadingPosition indexPath: Foundation.IndexPath) @@ -5298,8 +5403,8 @@ extension SendbirdUIKit.SBUUserListModule { @objc @_Concurrency.MainActor(unsafe) public var userCell: UIKit.UITableViewCell? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserListModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUUserListModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserListModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUUserListModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -5312,7 +5417,7 @@ extension SendbirdUIKit.SBUUserListModule { @available(*, unavailable, renamed: "SBUUserListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUUserListModuleListDelegate, dataSource: any SendbirdUIKit.SBUUserListModuleListDataSource, userListType: SendbirdUIKit.ChannelUserListType, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUUserListModuleListDelegate, dataSource: SendbirdUIKit.SBUUserListModuleListDataSource, userListType: SendbirdUIKit.ChannelUserListType, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUUserListTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -5344,11 +5449,11 @@ public protocol SBUInviteUserModuleListDataSource : SendbirdUIKit.SBUBaseSelectU } extension SendbirdUIKit.SBUInviteUserModule { @_inheritsConvenienceInitializers @objc(SBUInviteUserModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUInviteUserModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUInviteUserModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUInviteUserModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUInviteUserModuleListDataSource? { get set } @@ -5357,7 +5462,7 @@ extension SendbirdUIKit.SBUInviteUserModule { @available(*, unavailable, renamed: "SBUInviteUserModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUInviteUserModuleListDelegate, dataSource: any SendbirdUIKit.SBUInviteUserModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUInviteUserModuleListDelegate, dataSource: SendbirdUIKit.SBUInviteUserModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } @@ -5397,11 +5502,11 @@ extension UIKit.UIStackView { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "UserNameView(username:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func updateStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func updateLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func updateStyles() @_Concurrency.MainActor(unsafe) open func configure(username: Swift.String, isOverlay: Swift.Bool = false) @_Concurrency.MainActor(unsafe) public func setUsernameColor(_ color: UIKit.UIColor) @objc deinit @@ -5460,6 +5565,11 @@ extension SendbirdUIKit.SBUModerationsViewController { public static func loadAllEmojis(completionHandler: @escaping (_ container: SendbirdChatSDK.EmojiContainer?, _ error: SendbirdChatSDK.SBError?) -> Swift.Void) @objc deinit } +public struct SBUQuickReplyViewParams { + public let messageId: Swift.Int64 + public let replyOptions: [Swift.String] + public init(messageId: Swift.Int64, replyOptions: [Swift.String]) +} open class SBUOpenChannelSettingsModule { public static var HeaderComponent: SendbirdUIKit.SBUOpenChannelSettingsModule.Header.Type public static var ListComponent: SendbirdUIKit.SBUOpenChannelSettingsModule.List.Type @@ -5488,8 +5598,8 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule { @objc @_Concurrency.MainActor(unsafe) public var tableView: UIKit.UITableView @objc @_Concurrency.MainActor(unsafe) public var channelInfoView: UIKit.UIView? @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelSettingsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var baseDataSource: (any SendbirdUIKit.SBUBaseChannelSettingsModuleListDataSource)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelSettingsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var baseDataSource: SendbirdUIKit.SBUBaseChannelSettingsModuleListDataSource? @objc @_Concurrency.MainActor(unsafe) public var baseChannel: SendbirdChatSDK.BaseChannel? { @objc get } @@ -5569,7 +5679,7 @@ extension SendbirdUIKit.SBUBaseChannelSettingsModule.List : UIKit.UITableViewDat @_Concurrency.MainActor(unsafe) required public init(channelURL: Swift.String, startingPoint: Swift.Int64? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillAppear(_ animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillTransition(to size: CoreFoundation.CGSize, with coordinator: any UIKit.UIViewControllerTransitionCoordinator) + @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillTransition(to size: CoreFoundation.CGSize, with coordinator: UIKit.UIViewControllerTransitionCoordinator) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillDisappear(_ animated: Swift.Bool) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLayoutSubviews() @objc deinit @@ -5615,8 +5725,8 @@ public protocol SBUCreateChannelViewModelDataSource : AnyObject { func createChannelViewModel(_ viewModel: SendbirdUIKit.SBUCreateChannelViewModel, nextUserListForChannelType channelType: SendbirdUIKit.ChannelCreationType) -> [SendbirdUIKit.SBUUser]? } open class SBUCreateChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUCreateChannelViewModelDelegate)? - weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelViewModelDataSource)? + weak public var delegate: SendbirdUIKit.SBUCreateChannelViewModelDelegate? + weak public var dataSource: SendbirdUIKit.SBUCreateChannelViewModelDataSource? public var channelType: SendbirdUIKit.ChannelCreationType { get } @@ -5629,7 +5739,7 @@ open class SBUCreateChannelViewModel { public var userListQuery: SendbirdChatSDK.ApplicationUserListQuery? { get } - public init(channelType: SendbirdUIKit.ChannelCreationType = .group, users: [SendbirdUIKit.SBUUser]? = nil, delegate: (any SendbirdUIKit.SBUCreateChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUCreateChannelViewModelDataSource)? = nil) + public init(channelType: SendbirdUIKit.ChannelCreationType = .group, users: [SendbirdUIKit.SBUUser]? = nil, delegate: SendbirdUIKit.SBUCreateChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUCreateChannelViewModelDataSource? = nil) public func loadNextUserList(reset: Swift.Bool, users: [SendbirdUIKit.SBUUser]? = nil) public func preLoadNextUserList(indexPath: Foundation.IndexPath) public func resetUserList() @@ -5654,9 +5764,9 @@ open class SBUCreateChannelViewModel { @_Concurrency.MainActor(unsafe) public var imageDownloadTask: Foundation.URLSessionTask? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(urlString: Swift.String, imageSize: CoreFoundation.CGFloat? = SBUMessageProfileView.imageSize) @objc deinit } @@ -5771,9 +5881,9 @@ extension SendbirdUIKit.SBUGroupChannelPushSettingsModule { @_Concurrency.MainActor(unsafe) public var pushTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate)? - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate)?, dataSource: (any SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource)?, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate? + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDelegate?, dataSource: SendbirdUIKit.SBUGroupChannelPushSettingsModuleListDataSource?, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil) @@ -5866,7 +5976,7 @@ public protocol SBUGroupChannelListViewModelDelegate : SendbirdUIKit.SBUBaseChan public var channelListQuery: SendbirdChatSDK.GroupChannelListQuery? { get } - public init(delegate: (any SendbirdUIKit.SBUGroupChannelListViewModelDelegate)? = nil, channelListQuery: SendbirdChatSDK.GroupChannelListQuery? = nil) + public init(delegate: SendbirdUIKit.SBUGroupChannelListViewModelDelegate? = nil, channelListQuery: SendbirdChatSDK.GroupChannelListQuery? = nil) @objc deinit override public func initChannelList() override public func loadNextChannelList(reset: Swift.Bool) @@ -6034,7 +6144,8 @@ public class SBUUserMessageCellParams : SendbirdUIKit.SBUBaseMessageCellParams { } final public let useReaction: Swift.Bool final public let withTextView: Swift.Bool - public init(message: SendbirdChatSDK.UserMessage, hideDateView: Swift.Bool, useMessagePosition: Swift.Bool, groupPosition: SendbirdUIKit.MessageGroupPosition = .none, receiptState: SendbirdUIKit.SBUMessageReceiptState = .none, useReaction: Swift.Bool = false, withTextView: Swift.Bool, isThreadMessage: Swift.Bool = false, joinedAt: Swift.Int64 = 0) + final public let shouldHideQuickReply: Swift.Bool + public init(message: SendbirdChatSDK.UserMessage, hideDateView: Swift.Bool, useMessagePosition: Swift.Bool, groupPosition: SendbirdUIKit.MessageGroupPosition = .none, receiptState: SendbirdUIKit.SBUMessageReceiptState = .none, useReaction: Swift.Bool = false, withTextView: Swift.Bool, isThreadMessage: Swift.Bool = false, joinedAt: Swift.Int64 = 0, shouldHideQuickReply: Swift.Bool = true) @objc deinit } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUMessageSearchResultCell : SendbirdUIKit.SBUTableViewCell { @@ -6139,9 +6250,9 @@ extension SendbirdUIKit.SBUBaseSelectUserModule { @_Concurrency.MainActor(unsafe) public var progressTimeLabel: UIKit.UILabel @_Concurrency.MainActor(unsafe) public var statusButton: UIKit.UIButton @_Concurrency.MainActor(unsafe) public var voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo? - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition, voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo?) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -6420,8 +6531,8 @@ public protocol SBUMessageInputViewDataSource : AnyObject { @_Concurrency.MainActor(unsafe) public var mentionedAttributes: [Foundation.NSAttributedString.Key : Any] { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageInputViewDelegate)? - @_Concurrency.MainActor(unsafe) weak public var datasource: (any SendbirdUIKit.SBUMessageInputViewDataSource)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageInputViewDelegate? + @_Concurrency.MainActor(unsafe) weak public var datasource: SendbirdUIKit.SBUMessageInputViewDataSource? @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var overlayTheme: SendbirdUIKit.SBUMessageInputTheme { get set @@ -6438,9 +6549,9 @@ public protocol SBUMessageInputViewDataSource : AnyObject { @_Concurrency.MainActor(unsafe) open func setMode(_ mode: SendbirdUIKit.SBUMessageInputMode, message: SendbirdChatSDK.BaseMessage? = nil) @_Concurrency.MainActor(unsafe) public func startQuoteReplyMode(message: SendbirdChatSDK.BaseMessage) @_Concurrency.MainActor(unsafe) public func endQuoteReplyMode() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @_Concurrency.MainActor(unsafe) public func startEditMode(text: Swift.String) @_Concurrency.MainActor(unsafe) public func endEditMode() @@ -6601,6 +6712,14 @@ extension SendbirdUIKit.SBUChatNotificationChannelModule { @objc @_Concurrency.MainActor(unsafe) public func didSelectRetry() } } +extension SendbirdChatSDK.UserMessage { + public var quickReply: SendbirdUIKit.SBUQuickReplyOptions? { + get + } + public var cardListData: [Swift.String : Any]? { + get + } +} open class SBUCreateOpenChannelModule { public static var HeaderComponent: SendbirdUIKit.SBUCreateOpenChannelModule.Header.Type public static var ProfileInputComponent: SendbirdUIKit.SBUCreateOpenChannelModule.ProfileInput.Type @@ -6658,7 +6777,7 @@ open class SBUCreateOpenChannelModule { public var currentRecordAccessStatus: AVFAudio.AVAudioSession.RecordPermission { get } - public func showPermissionAlert(forType permissionType: SendbirdUIKit.SBUPermissionManager.PermissionType, alertViewDelegate: (any SendbirdUIKit.SBUAlertViewDelegate)? = nil, onDismiss: SendbirdUIKit.AlertButtonHandler? = nil) + public func showPermissionAlert(forType permissionType: SendbirdUIKit.SBUPermissionManager.PermissionType, alertViewDelegate: SendbirdUIKit.SBUAlertViewDelegate? = nil, onDismiss: SendbirdUIKit.AlertButtonHandler? = nil) public func requestRecordAcess(onGranted: (() -> Swift.Void)? = nil, onDenied: (() -> Swift.Void)? = nil) public func requestPhotoAccessIfNeeded(completion: @escaping (SendbirdUIKit.SBUPhotoAccessibleStatus) -> Swift.Void) public func requestCameraAccess(for type: AVFoundation.AVMediaType, onGranted: (() -> Swift.Void)? = nil, onDenied: (() -> Swift.Void)? = nil) @@ -6689,6 +6808,30 @@ open class SBUMessageSearchModule { required public init(headerComponent: SendbirdUIKit.SBUMessageSearchModule.Header? = nil, listComponent: SendbirdUIKit.SBUMessageSearchModule.List? = nil) @objc deinit } +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class SBUCardListView : SendbirdUIKit.SBUView { + public struct Metric { + public static var maxWidth: Swift.Double + } + @_Concurrency.MainActor(unsafe) public var stackView: UIKit.UIStackView + @_Concurrency.MainActor(unsafe) public var topSpacer: UIKit.UIView + @_Concurrency.MainActor(unsafe) public var items: [SendbirdUIKit.SBUCardViewParams] { + get + } + @_Concurrency.MainActor(unsafe) public var messageId: Swift.Int64? { + get + } + @_Concurrency.MainActor(unsafe) public var params: SendbirdUIKit.SBUCardListViewParams? { + get + } + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() + @_Concurrency.MainActor(unsafe) public func configure(with configuration: SendbirdUIKit.SBUCardListViewParams) + @_Concurrency.MainActor(unsafe) public func createCardViews(items: [SendbirdUIKit.SBUCardViewParams]) -> [SendbirdUIKit.SBUCardView] + @_Concurrency.MainActor(unsafe) @objc override dynamic public init() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @objc deinit +} open class SBUMessageStateViewParams { final public let timestamp: Swift.Int64 final public let sendingState: SendbirdChatSDK.MessageSendingStatus @@ -6717,9 +6860,9 @@ open class SBUMessageStateViewParams { @_Concurrency.MainActor(unsafe) public var timeLabelCustomSize: CoreFoundation.CGSize? @_Concurrency.MainActor(unsafe) public init(sendingState: SendbirdChatSDK.MessageSendingStatus, receiptState: SendbirdUIKit.SBUMessageReceiptState, isQuotedReplyMessage: Swift.Bool = false) @_Concurrency.MainActor(unsafe) public init(isQuotedReplyMessage: Swift.Bool = false) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUMessageStateViewParams) @available(*, deprecated, renamed: "configure(with:)") @_Concurrency.MainActor(unsafe) open func configure(timestamp: Swift.Int64, sendingState: SendbirdChatSDK.MessageSendingStatus, receiptState: SendbirdUIKit.SBUMessageReceiptState?, position: SendbirdUIKit.MessagePosition) @@ -6773,13 +6916,13 @@ extension Foundation.NSArray { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc open func setupViews() - @_Concurrency.MainActor(unsafe) @objc open func setupLayouts() + @_Concurrency.MainActor(unsafe) open func setupViews() + @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func configure(image: UIKit.UIImage?, forMediaType mediaType: Photos.PHAssetMediaType) - @_Concurrency.MainActor(unsafe) @objc open func setupStyles() - @_Concurrency.MainActor(unsafe) @objc open func setupActions() - @_Concurrency.MainActor(unsafe) @objc open func updateLayouts() - @_Concurrency.MainActor(unsafe) @objc open func updateStyles() + @_Concurrency.MainActor(unsafe) open func setupStyles() + @_Concurrency.MainActor(unsafe) open func setupActions() + @_Concurrency.MainActor(unsafe) open func updateLayouts() + @_Concurrency.MainActor(unsafe) open func updateStyles() @objc deinit } open class SBUGroupChannelListModule { @@ -6903,11 +7046,11 @@ public protocol SBURegisterOperatorModuleHeaderDataSource : SendbirdUIKit.SBUBas } extension SendbirdUIKit.SBURegisterOperatorModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseSelectUserModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource? { get set } @@ -6916,7 +7059,7 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @available(*, unavailable, renamed: "SBURegisterOperatorModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBURegisterOperatorModuleHeaderDelegate, dataSource: SendbirdUIKit.SBURegisterOperatorModuleHeaderDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func updateRightBarButton() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -6965,6 +7108,11 @@ extension SendbirdUIKit.SBURegisterOperatorModule { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +public struct SBUCardListData : Swift.Codable where CardData : Swift.Decodable, CardData : Swift.Encodable { + public let recommends: [CardData] + public func encode(to encoder: Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws +} public class SBUUnknownMessageCellParams : SendbirdUIKit.SBUBaseMessageCellParams { public var unknownMessage: SendbirdChatSDK.BaseMessage { get @@ -7003,6 +7151,11 @@ extension SendbirdUIKit.SBUCoverImageView { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +public struct SBUCardListViewParams { + public let messageId: Swift.Int64 + public let items: [SendbirdUIKit.SBUCardViewParams] + public init(messageId: Swift.Int64, items: [SendbirdUIKit.SBUCardViewParams]) +} public protocol SBUBaseChannelModuleHeaderDelegate : SendbirdUIKit.SBUCommonDelegate { func baseChannelModule(_ headerComponent: SendbirdUIKit.SBUBaseChannelModule.Header, didUpdateTitleView titleView: UIKit.UIView?) func baseChannelModule(_ headerComponent: SendbirdUIKit.SBUBaseChannelModule.Header, didUpdateLeftItem leftItem: UIKit.UIBarButtonItem?) @@ -7027,7 +7180,7 @@ extension SendbirdUIKit.SBUBaseChannelModule { } @objc @_Concurrency.MainActor(unsafe) public var titleSpacer: UIKit.UIView @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var baseDelegate: (any SendbirdUIKit.SBUBaseChannelModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var baseDelegate: SendbirdUIKit.SBUBaseChannelModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUBaseChannelModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUBaseChannelModule.Header()") @@ -7054,12 +7207,12 @@ public protocol SBUVoiceMessageInputViewDelegate : AnyObject { } @objc override dynamic public init() @objc deinit - @objc public func setupViews() - @objc public func setupLayouts() - @objc public func updateLayouts() - @objc public func setupStyles() - @objc public func updateStyles() - @objc public func setupActions() + public func setupViews() + public func setupLayouts() + public func updateLayouts() + public func setupStyles() + public func updateStyles() + public func setupActions() } extension SendbirdUIKit.SBUVoiceMessageInputView : SendbirdUIKit.SBUVoiceRecorderDelegate { public func voiceRecorderDidReceiveError(_ recorder: SendbirdUIKit.SBUVoiceRecorder, errorStatus: SendbirdUIKit.VoiceRecorderErrorStatus) @@ -7087,7 +7240,7 @@ public protocol SBUOpenChannelListViewModelDelegate : SendbirdUIKit.SBUBaseChann public var channelListQuery: SendbirdChatSDK.OpenChannelListQuery? { get } - public init(delegate: (any SendbirdUIKit.SBUOpenChannelListViewModelDelegate)?, channelListQuery: SendbirdChatSDK.OpenChannelListQuery?) + public init(delegate: SendbirdUIKit.SBUOpenChannelListViewModelDelegate?, channelListQuery: SendbirdChatSDK.OpenChannelListQuery?) @objc deinit override public func initChannelList() override public func loadNextChannelList(reset: Swift.Bool) @@ -7242,14 +7395,14 @@ extension SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate { } extension SendbirdUIKit.SBUMessageThreadModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelModule.Header, SendbirdUIKit.SBUMessageThreadTitleViewDelegate { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate? { get set } @objc @_Concurrency.MainActor(unsafe) public var parentMessage: SendbirdChatSDK.BaseMessage? { get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate, parentMessage: SendbirdChatSDK.BaseMessage?, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageThreadModuleHeaderDelegate, parentMessage: SendbirdChatSDK.BaseMessage?, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -7273,7 +7426,7 @@ extension SendbirdUIKit.SBUActionSheetDelegate { @objc deinit } @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class SBUActionSheet : ObjectiveC.NSObject { - public static func show(items: [SendbirdUIKit.SBUActionSheetItem], cancelItem: SendbirdUIKit.SBUActionSheetItem, identifier: Swift.Int = -1, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, delegate: (any SendbirdUIKit.SBUActionSheetDelegate)? = nil, dismissHandler: (() -> Swift.Void)? = nil) + public static func show(items: [SendbirdUIKit.SBUActionSheetItem], cancelItem: SendbirdUIKit.SBUActionSheetItem, identifier: Swift.Int = -1, oneTimetheme: SendbirdUIKit.SBUComponentTheme? = nil, delegate: SendbirdUIKit.SBUActionSheetDelegate? = nil, dismissHandler: (() -> Swift.Void)? = nil) public static func dismiss() @objc deinit } @@ -7284,11 +7437,11 @@ public protocol SBUGroupChannelPushSettingsViewModelDelegate : SendbirdUIKit.SBU public var currentTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption { get } - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: (any SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, delegate: SendbirdUIKit.SBUGroupChannelPushSettingsViewModelDelegate? = nil) open func changeNotification(_ pushTriggerOption: SendbirdChatSDK.GroupChannelPushTriggerOption) public func updateChannelPushTriggerOption() @objc deinit @@ -7341,6 +7494,7 @@ public protocol SBUGroupChannelModuleListDelegate : SendbirdUIKit.SBUBaseChannel func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMoreEmojiForCell messageCell: SendbirdUIKit.SBUBaseMessageCell) func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didTapMentionUser user: SendbirdUIKit.SBUUser) func groupChannelModuleDidTapThreadInfoView(_ threadInfoView: SendbirdUIKit.SBUThreadInfoView) + func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, didSelectQuickReplyOption text: Swift.String) } public protocol SBUGroupChannelModuleListDataSource : SendbirdUIKit.SBUBaseChannelModuleListDataSource { func groupChannelModule(_ listComponent: SendbirdUIKit.SBUGroupChannelModule.List, highlightInfoInTableView tableView: UIKit.UITableView) -> SendbirdUIKit.SBUHighlightMessageInfo? @@ -7366,18 +7520,18 @@ extension SendbirdUIKit.SBUGroupChannelModule { get } @objc @_Concurrency.MainActor(unsafe) public var isHighlightInfoAnimated: Swift.Bool - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelModuleListDataSource? { get set } @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelModuleListDataSource, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func updateStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme = SBUTheme.componentTheme) @@ -7439,17 +7593,17 @@ extension SendbirdUIKit.SBUGroupChannelModule { @objc @_Concurrency.MainActor(unsafe) public var channel: SendbirdChatSDK.GroupChannel? { @objc get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelModuleInputDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelModuleInputDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelModuleInputDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelModuleInputDataSource? { get set } - @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? + @_Concurrency.MainActor(unsafe) weak public var mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? @objc @_Concurrency.MainActor(unsafe) public var mentionManager: SendbirdUIKit.SBUMentionManager? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelModuleInputDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelModuleInputDataSource, mentionManagerDataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelModuleInputDelegate, dataSource: SendbirdUIKit.SBUGroupChannelModuleInputDataSource, mentionManagerDataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override open func pickImageFile(info: [UIKit.UIImagePickerController.InfoKey : Any]) @@ -7615,7 +7769,7 @@ extension SendbirdUIKit.SBUOpenChannelViewController { public protocol SBUBaseChannelListViewModelDelegate : SendbirdUIKit.SBUCommonViewModelDelegate { } @objc open class SBUBaseChannelListViewModel : ObjectiveC.NSObject { - public init(delegate: (any SendbirdUIKit.SBUBaseChannelListViewModelDelegate)?) + public init(delegate: SendbirdUIKit.SBUBaseChannelListViewModelDelegate?) @objc deinit public func initChannelList() public func loadNextChannelList(reset: Swift.Bool) @@ -7695,7 +7849,7 @@ public protocol SBUGroupChannelListModuleHeaderDelegate : SendbirdUIKit.SBUBaseC extension SendbirdUIKit.SBUGroupChannelListModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelListModule.Header { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUGroupChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate? { get set } @@ -7704,7 +7858,7 @@ extension SendbirdUIKit.SBUGroupChannelListModule { @available(*, unavailable, renamed: "SBUGroupChannelListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUGroupChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelListModuleHeaderDelegate, theme: SendbirdUIKit.SBUGroupChannelListTheme) @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUGroupChannelListTheme? = nil) } } @@ -7805,8 +7959,8 @@ extension Foundation.Date { } @_Concurrency.MainActor(unsafe) public var imageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) override open func configure(with configuration: SendbirdUIKit.SBUQuotedBaseMessageViewParams) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @@ -7823,9 +7977,9 @@ public typealias SBUNewMessageInfoHandler = () -> Swift.Void @_Concurrency.MainActor(unsafe) public init(type: SendbirdUIKit.NewMessageInfoItemType = .tooltip) @available(*, unavailable, renamed: "SBUNewMessageInfo.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @objc @_Concurrency.MainActor(unsafe) open func onClickNewMessageInfo() @_Concurrency.MainActor(unsafe) open func updateCount(count: Swift.Int, actionHandler: SendbirdUIKit.SBUNewMessageInfoHandler?) @@ -7883,6 +8037,16 @@ open class SBUInviteUserModule { get } @objc @_Concurrency.MainActor(unsafe) public var webView: SendbirdUIKit.SBUMessageWebView + @objc @_Concurrency.MainActor(unsafe) public var shouldHideQuickReply: Swift.Bool { + get + } + @objc @_Concurrency.MainActor(unsafe) public var quickReplyView: SendbirdUIKit.SBUQuickReplyView? { + get + } + @objc @_Concurrency.MainActor(unsafe) public var quickReplySelectHandler: ((_ selectedOptionView: SendbirdUIKit.SBUQuickReplyOptionView) -> Swift.Void)? + @objc @_Concurrency.MainActor(unsafe) public var cardListView: SendbirdUIKit.SBUCardListView? { + get + } @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() @@ -7895,11 +8059,16 @@ open class SBUInviteUserModule { @_Concurrency.MainActor(unsafe) override open func configure(highlightInfo: SendbirdUIKit.SBUHighlightMessageInfo?) @_Concurrency.MainActor(unsafe) @objc override dynamic public func setSelected(_ selected: Swift.Bool, animated: Swift.Bool) @objc @_Concurrency.MainActor(unsafe) open func onTapWebview(sender: UIKit.UITapGestureRecognizer) + @objc @_Concurrency.MainActor(unsafe) public func updateQuickReplyView(with options: [Swift.String]) + @_Concurrency.MainActor(unsafe) public func addCardListView(with items: [SendbirdUIKit.SBUCardViewParams]) @objc @_Concurrency.MainActor(unsafe) open func userMessageTextView(_ textView: SendbirdUIKit.SBUUserMessageTextView, didTapMention user: SendbirdUIKit.SBUUser) @_Concurrency.MainActor(unsafe) @objc override dynamic public init(style: UIKit.UITableViewCell.CellStyle, reuseIdentifier: Swift.String?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } +extension SendbirdUIKit.SBUUserMessageCell : SendbirdUIKit.SBUQuickReplyViewDelegate { + @objc @_Concurrency.MainActor(unsafe) dynamic public func quickReplyView(_ view: SendbirdUIKit.SBUQuickReplyView, didSelectOption optionView: SendbirdUIKit.SBUQuickReplyOptionView) +} @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUOpenChannelSettingCell : SendbirdUIKit.SBUBaseChannelSettingCell { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(style: UIKit.UITableViewCell.CellStyle, reuseIdentifier: Swift.String?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @@ -7990,11 +8159,11 @@ public protocol SBUGroupChannelSettingsModuleHeaderDataSource : SendbirdUIKit.SB } extension SendbirdUIKit.SBUGroupChannelSettingsModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelSettingsModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource? { get set } @@ -8003,7 +8172,7 @@ extension SendbirdUIKit.SBUGroupChannelSettingsModule { @available(*, unavailable, renamed: "SBUGroupChannelSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDelegate, dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleHeaderDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @@ -8097,11 +8266,11 @@ public protocol SBUOpenChannelListModuleListDataSource : SendbirdUIKit.SBUBaseCh extension SendbirdUIKit.SBUOpenChannelListModule { @_inheritsConvenienceInitializers @objc(SBUOpenChannelListModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelListModule.List { @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUOpenChannelListTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelListModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelListModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUOpenChannelListModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUOpenChannelListModuleListDataSource? { get set } @@ -8113,7 +8282,7 @@ extension SendbirdUIKit.SBUOpenChannelListModule { @available(*, unavailable, renamed: "SBUOpenChannelListModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelListModuleListDelegate, dataSource: any SendbirdUIKit.SBUOpenChannelListModuleListDataSource, theme: SendbirdUIKit.SBUOpenChannelListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelListModuleListDelegate, dataSource: SendbirdUIKit.SBUOpenChannelListModuleListDataSource, theme: SendbirdUIKit.SBUOpenChannelListTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUOpenChannelListTheme? = nil) } @@ -8141,7 +8310,7 @@ public protocol SBUMentionManagerDataSource : AnyObject { public var defaultTextAttributes: [Foundation.NSAttributedString.Key : Any] public var mentionTextAttributes: [Foundation.NSAttributedString.Key : Any] @objc override dynamic public init() - public func configure(delegate: (any SendbirdUIKit.SBUMentionManagerDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUMentionManagerDataSource)? = nil, defaultTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil, mentionTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil) + public func configure(delegate: SendbirdUIKit.SBUMentionManagerDelegate? = nil, dataSource: SendbirdUIKit.SBUMentionManagerDataSource? = nil, defaultTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil, mentionTextAttributes: [Foundation.NSAttributedString.Key : Any]? = nil) @discardableResult public func addMention(at textView: UIKit.UITextView, user: SendbirdUIKit.SBUUser) -> Swift.Bool public func clearMentions(_ mentions: [SendbirdUIKit.SBUMention], with replaceText: Swift.String = "", on textView: UIKit.UITextView, at range: Foundation.NSRange) @@ -8208,7 +8377,7 @@ public protocol SBUMessageThreadViewControllerDelegate : AnyObject { @objc get @objc set } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageThreadViewControllerDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageThreadViewControllerDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public var channel: SendbirdChatSDK.GroupChannel? { @objc get } @@ -8217,7 +8386,7 @@ public protocol SBUMessageThreadViewControllerDelegate : AnyObject { } @available(*, unavailable) @_Concurrency.MainActor(unsafe) required public init(channelURL: Swift.String, startingPoint: Swift.Int64? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil) - @_Concurrency.MainActor(unsafe) required public init(channel: SendbirdChatSDK.GroupChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = nil, delegate: (any SendbirdUIKit.SBUMessageThreadViewControllerDelegate)? = nil, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) + @_Concurrency.MainActor(unsafe) required public init(channel: SendbirdChatSDK.GroupChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = nil, delegate: SendbirdUIKit.SBUMessageThreadViewControllerDelegate? = nil, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, voiceFileInfos: [Swift.String : SendbirdUIKit.SBUVoiceFileInfo]? = nil) @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarStyle: UIKit.UIStatusBarStyle { @objc get } @@ -8301,7 +8470,7 @@ public protocol SBUFileViewControllerDelegate : AnyObject { @objc set } @objc @_Concurrency.MainActor(unsafe) public var bottomView: UIKit.UIView - @_Concurrency.MainActor(unsafe) required public init(fileMessage: SendbirdChatSDK.FileMessage, delegate: (any SendbirdUIKit.SBUFileViewControllerDelegate)?) + @_Concurrency.MainActor(unsafe) required public init(fileMessage: SendbirdChatSDK.FileMessage, delegate: SendbirdUIKit.SBUFileViewControllerDelegate?) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillAppear(_ animated: Swift.Bool) @@ -8387,14 +8556,14 @@ public protocol SBUVoiceRecorderDelegate : AnyObject { public var progressTimer: Foundation.Timer? { get } - public init(delegate: (any SendbirdUIKit.SBUVoiceRecorderDelegate)?) + public init(delegate: SendbirdUIKit.SBUVoiceRecorderDelegate?) @objc deinit @discardableResult public func record() -> Swift.Bool public func stop() public func resetRecorder() @objc public func audioRecorderDidFinishRecording(_ recorder: AVFAudio.AVAudioRecorder, successfully success: Swift.Bool) - @objc public func audioRecorderEncodeErrorDidOccur(_ recorder: AVFAudio.AVAudioRecorder, error: (any Swift.Error)?) + @objc public func audioRecorderEncodeErrorDidOccur(_ recorder: AVFAudio.AVAudioRecorder, error: Swift.Error?) } @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class SBUBaseFileContentView : SendbirdUIKit.SBUView { @SendbirdUIKit.SBUThemeWrapper @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageCellTheme { @@ -8455,9 +8624,9 @@ extension SendbirdUIKit.SBUMessageCellTheme { @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @available(*, unavailable, renamed: "SBUNavigationTitleView.init(frame:)") @_Concurrency.MainActor(unsafe) required public init?(coder: Foundation.NSCoder) - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func setupStyles() + @_Concurrency.MainActor(unsafe) override public func setupViews() + @_Concurrency.MainActor(unsafe) override public func setupLayouts() + @_Concurrency.MainActor(unsafe) override public func setupStyles() @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() @_Concurrency.MainActor(unsafe) public func configure(title: Swift.String?) @@ -8504,7 +8673,7 @@ public protocol SBUVoicePlayerDelegate : AnyObject { public var progressTimer: Foundation.Timer? { get } - public init(delegate: (any SendbirdUIKit.SBUVoicePlayerDelegate)?) + public init(delegate: SendbirdUIKit.SBUVoicePlayerDelegate?) public func configure(voiceFileInfo: SendbirdUIKit.SBUVoiceFileInfo) @objc deinit public func play(fromTime time: Foundation.TimeInterval = 0) @@ -8512,7 +8681,7 @@ public protocol SBUVoicePlayerDelegate : AnyObject { public func stop() public func resetPlayer() @objc public func audioPlayerDidFinishPlaying(_ player: AVFAudio.AVAudioPlayer, successfully success: Swift.Bool) - @objc public func audioPlayerDecodeErrorDidOccur(_ player: AVFAudio.AVAudioPlayer, error: (any Swift.Error)?) + @objc public func audioPlayerDecodeErrorDidOccur(_ player: AVFAudio.AVAudioPlayer, error: Swift.Error?) } public protocol SBUOpenChannelModuleMediaDelegate : AnyObject { func openChannelModule(_ mediaComponent: SendbirdUIKit.SBUOpenChannelModule.Media, didTapMediaView mediaView: UIKit.UIView) @@ -8521,8 +8690,8 @@ extension SendbirdUIKit.SBUOpenChannelModule { @objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) open class Media : UIKit.UIView { @_Concurrency.MainActor(unsafe) public var mediaView: UIKit.UIView @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelModuleMediaDelegate)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelModuleMediaDelegate, theme: SendbirdUIKit.SBUChannelTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelModuleMediaDelegate? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelModuleMediaDelegate, theme: SendbirdUIKit.SBUChannelTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelTheme? = nil) @@ -8544,11 +8713,11 @@ public protocol SBUGroupChannelSettingsModuleListDataSource : SendbirdUIKit.SBUB } extension SendbirdUIKit.SBUGroupChannelSettingsModule { @_inheritsConvenienceInitializers @objc(SBUGroupChannelSettingsModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseChannelSettingsModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource? { get set } @@ -8560,7 +8729,7 @@ extension SendbirdUIKit.SBUGroupChannelSettingsModule { @available(*, unavailable, renamed: "SBUGroupChannelSettingsModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate, dataSource: any SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUGroupChannelSettingsModuleListDelegate, dataSource: SendbirdUIKit.SBUGroupChannelSettingsModuleListDataSource, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc override open func setupViews() @_Concurrency.MainActor(unsafe) @objc override open func setupItems() @_Concurrency.MainActor(unsafe) open func createModerationsItem() -> SendbirdUIKit.SBUChannelSettingItem @@ -8598,13 +8767,13 @@ extension SendbirdUIKit.SBUMessageSearchModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUMessageSearchTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUMessageSearchModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUMessageSearchModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate, theme: SendbirdUIKit.SBUMessageSearchTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUMessageSearchModuleHeaderDelegate, theme: SendbirdUIKit.SBUMessageSearchTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUMessageSearchTheme? = nil) @@ -8965,7 +9134,7 @@ public class SBUMessageCellTheme { public static var overlay: SendbirdUIKit.SBUMessageCellTheme { get } - public init(backgroundColor: UIKit.UIColor = SBUColorSet.background50, leftBackgroundColor: UIKit.UIColor = SBUColorSet.background100, leftPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary100, rightBackgroundColor: UIKit.UIColor = SBUColorSet.primary300, rightPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary400, openChannelBackgroundColor: UIKit.UIColor = .clear, openChannelPressedBackgroundColor: UIKit.UIColor = SBUColorSet.background100, dateFont: UIKit.UIFont = SBUFontSet.caption1, dateTextColor: UIKit.UIColor = SBUColorSet.ondark01, dateBackgroundColor: UIKit.UIColor = SBUColorSet.overlay02, userPlaceholderBackgroundColor: UIKit.UIColor = SBUColorSet.background300, userPlaceholderTintColor: UIKit.UIColor = SBUColorSet.ondark01, userNameFont: UIKit.UIFont = SBUFontSet.caption1, userNameTextColor: UIKit.UIColor = SBUColorSet.onlight02, currentUserNameTextColor: UIKit.UIColor = SBUColorSet.secondary300, timeFont: UIKit.UIFont = SBUFontSet.caption4, timeTextColor: UIKit.UIColor = SBUColorSet.onlight03, pendingStateColor: UIKit.UIColor = SBUColorSet.primary300, failedStateColor: UIKit.UIColor = SBUColorSet.error300, succeededStateColor: UIKit.UIColor = SBUColorSet.onlight03, readReceiptStateColor: UIKit.UIColor = SBUColorSet.secondary300, deliveryReceiptStateColor: UIKit.UIColor = SBUColorSet.onlight03, userMessageFont: UIKit.UIFont = SBUFontSet.body3, userMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageLeftEditTextColor: UIKit.UIColor = SBUColorSet.onlight02, userMessageLeftHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, userMessageRightEditTextColor: UIKit.UIColor = SBUColorSet.ondark02, userMessageRightHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileIconBackgroundColor: UIKit.UIColor = SBUColorSet.background50, fileImageBackgroundColor: UIKit.UIColor = SBUColorSet.ondark01, fileImageIconColor: UIKit.UIColor = SBUColorSet.onlight02, fileIconColor: UIKit.UIColor = SBUColorSet.primary300, fileMessageNameFont: UIKit.UIFont = SBUFontSet.body3, fileMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, fileMessagePlaceholderColor: UIKit.UIColor = SBUColorSet.onlight02, adminMessageFont: UIKit.UIFont = SBUFontSet.caption2, adminMessageTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescFont: UIKit.UIFont = SBUFontSet.body3, unknownMessageDescLeftTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescRightTextColor: UIKit.UIColor = SBUColorSet.ondark02, ogTitleFont: UIKit.UIFont = SBUFontSet.body2, ogTitleColor: UIKit.UIColor = SBUColorSet.onlight01, ogDescriptionFont: UIKit.UIFont = SBUFontSet.caption2, ogDescriptionColor: UIKit.UIColor = SBUColorSet.onlight01, ogURLAddressFont: UIKit.UIFont = SBUFontSet.caption2, ogURLAddressColor: UIKit.UIColor = SBUColorSet.onlight02, openChannelOGTitleColor: UIKit.UIColor = SBUColorSet.primary300, linkColor: UIKit.UIColor = SBUColorSet.primary300, contentBackgroundColor: UIKit.UIColor = SBUColorSet.background100, pressedContentBackgroundColor: UIKit.UIColor = SBUColorSet.background300, quotedMessageLeftBackgroundColor: UIKit.UIColor = SBUColorSet.background100.withAlphaComponent(0.5), quotedMessageRightBackgroundColor: UIKit.UIColor = SBUColorSet.background100, quotedFileMessageThumbnailColor: UIKit.UIColor = SBUColorSet.onlight02, quotedMessageTextColor: UIKit.UIColor = SBUColorSet.onlight03, quotedMessageTextFont: UIKit.UIFont = SBUFontSet.body3, repliedIconColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextFont: UIKit.UIFont = SBUFontSet.caption1, repliedCountTextColor: UIKit.UIColor = SBUColorSet.primary300, repliedCountTextFont: UIKit.UIFont = SBUFontSet.caption3, repliedUsersMoreIconBackgroundColor: UIKit.UIColor = SBUColorSet.background700.withAlphaComponent(0.64), repliedUsersMoreIconTintColor: UIKit.UIColor = SBUColorSet.ondark01, mentionTextFont: UIKit.UIFont = SBUFontSet.body4, mentionLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, mentionRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, mentionLeftTextBackgroundColor: UIKit.UIColor = .clear, mentionRightTextBackgroundColor: UIKit.UIColor = .clear, buttonBackgroundColor: UIKit.UIColor = SBUColorSet.background200, buttonTitleColor: UIKit.UIColor = SBUColorSet.primary300, sideButtonIconColor: UIKit.UIColor = SBUColorSet.onlight03, newMessageBadgeColor: UIKit.UIColor = SBUColorSet.secondary300, parentInfoBackgroundColor: UIKit.UIColor = SBUColorSet.background50, parentInfoUserNameTextFont: UIKit.UIFont = SBUFontSet.h3, parentInfoUserNameTextColor: UIKit.UIColor = SBUColorSet.onlight01, parentInfoDateFont: UIKit.UIFont = SBUFontSet.caption2, parentInfoDateTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoMoreButtonTintColor: UIKit.UIColor = SBUColorSet.onlight02, parentInfoSeparateBarColor: UIKit.UIColor = SBUColorSet.onlight04, parentInfoReplyCountTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoReplyCountTextFont: UIKit.UIFont = SBUFontSet.body3, parentInfoProgressBackgroundColor: UIKit.UIColor = SBUColorSet.background100, progressTrackTintColor: UIKit.UIColor = SBUColorSet.onlight03, progressTimeFont: UIKit.UIFont = SBUFontSet.body3, progressTimeRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, progressTimeLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, statusButtonBackgroundColor: UIKit.UIColor = SBUColorSet.background50, loadingButtonTintColor: UIKit.UIColor = SBUColorSet.primary200, playButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, pauseButtonTintColor: UIKit.UIColor = SBUColorSet.primary300) + public init(backgroundColor: UIKit.UIColor = SBUColorSet.background50, leftBackgroundColor: UIKit.UIColor = SBUColorSet.background100, leftPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary100, rightBackgroundColor: UIKit.UIColor = SBUColorSet.primary300, rightPressedBackgroundColor: UIKit.UIColor = SBUColorSet.primary400, openChannelBackgroundColor: UIKit.UIColor = .clear, openChannelPressedBackgroundColor: UIKit.UIColor = SBUColorSet.background100, dateFont: UIKit.UIFont = SBUFontSet.caption1, dateTextColor: UIKit.UIColor = SBUColorSet.ondark01, dateBackgroundColor: UIKit.UIColor = SBUColorSet.overlay02, userPlaceholderBackgroundColor: UIKit.UIColor = SBUColorSet.background300, userPlaceholderTintColor: UIKit.UIColor = SBUColorSet.ondark01, userNameFont: UIKit.UIFont = SBUFontSet.caption1, userNameTextColor: UIKit.UIColor = SBUColorSet.onlight02, currentUserNameTextColor: UIKit.UIColor = SBUColorSet.secondary300, timeFont: UIKit.UIFont = SBUFontSet.caption4, timeTextColor: UIKit.UIColor = SBUColorSet.onlight03, pendingStateColor: UIKit.UIColor = SBUColorSet.primary300, failedStateColor: UIKit.UIColor = SBUColorSet.error300, succeededStateColor: UIKit.UIColor = SBUColorSet.onlight03, readReceiptStateColor: UIKit.UIColor = SBUColorSet.secondary300, deliveryReceiptStateColor: UIKit.UIColor = SBUColorSet.onlight03, userMessageFont: UIKit.UIFont = SBUFontSet.body3, userMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageLeftEditTextColor: UIKit.UIColor = SBUColorSet.onlight02, userMessageLeftHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, userMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, userMessageRightEditTextColor: UIKit.UIColor = SBUColorSet.ondark02, userMessageRightHighlightTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileIconBackgroundColor: UIKit.UIColor = SBUColorSet.background50, fileImageBackgroundColor: UIKit.UIColor = SBUColorSet.ondark01, fileImageIconColor: UIKit.UIColor = SBUColorSet.onlight02, fileIconColor: UIKit.UIColor = SBUColorSet.primary300, fileMessageNameFont: UIKit.UIFont = SBUFontSet.body3, fileMessageLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, fileMessageRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, fileMessagePlaceholderColor: UIKit.UIColor = SBUColorSet.onlight02, adminMessageFont: UIKit.UIFont = SBUFontSet.caption2, adminMessageTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescFont: UIKit.UIFont = SBUFontSet.body3, unknownMessageDescLeftTextColor: UIKit.UIColor = SBUColorSet.onlight02, unknownMessageDescRightTextColor: UIKit.UIColor = SBUColorSet.ondark02, ogTitleFont: UIKit.UIFont = SBUFontSet.body2, ogTitleColor: UIKit.UIColor = SBUColorSet.onlight01, ogDescriptionFont: UIKit.UIFont = SBUFontSet.caption2, ogDescriptionColor: UIKit.UIColor = SBUColorSet.onlight01, ogURLAddressFont: UIKit.UIFont = SBUFontSet.caption2, ogURLAddressColor: UIKit.UIColor = SBUColorSet.onlight02, openChannelOGTitleColor: UIKit.UIColor = SBUColorSet.primary300, linkColor: UIKit.UIColor = SBUColorSet.primary300, contentBackgroundColor: UIKit.UIColor = SBUColorSet.background100, pressedContentBackgroundColor: UIKit.UIColor = SBUColorSet.background300, quotedMessageLeftBackgroundColor: UIKit.UIColor = SBUColorSet.background100.withAlphaComponent(0.5), quotedMessageRightBackgroundColor: UIKit.UIColor = SBUColorSet.background100, quotedFileMessageThumbnailColor: UIKit.UIColor = SBUColorSet.onlight02, quotedMessageTextColor: UIKit.UIColor = SBUColorSet.onlight03, quotedMessageTextFont: UIKit.UIFont = SBUFontSet.body3, repliedIconColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextColor: UIKit.UIColor = SBUColorSet.onlight03, repliedToTextFont: UIKit.UIFont = SBUFontSet.caption1, repliedCountTextColor: UIKit.UIColor = SBUColorSet.primary300, repliedCountTextFont: UIKit.UIFont = SBUFontSet.caption3, repliedUsersMoreIconBackgroundColor: UIKit.UIColor = SBUColorSet.background700.withAlphaComponent(0.64), repliedUsersMoreIconTintColor: UIKit.UIColor = SBUColorSet.ondark01, mentionTextFont: UIKit.UIFont = SBUFontSet.body4, mentionLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, mentionRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, mentionLeftTextBackgroundColor: UIKit.UIColor = .clear, mentionRightTextBackgroundColor: UIKit.UIColor = .clear, buttonBackgroundColor: UIKit.UIColor = SBUColorSet.background200, buttonTitleColor: UIKit.UIColor = SBUColorSet.primary300, sideButtonIconColor: UIKit.UIColor = SBUColorSet.onlight03, newMessageBadgeColor: UIKit.UIColor = SBUColorSet.secondary300, parentInfoBackgroundColor: UIKit.UIColor = SBUColorSet.background50, parentInfoUserNameTextFont: UIKit.UIFont = SBUFontSet.h3, parentInfoUserNameTextColor: UIKit.UIColor = SBUColorSet.onlight01, parentInfoDateFont: UIKit.UIFont = SBUFontSet.caption2, parentInfoDateTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoMoreButtonTintColor: UIKit.UIColor = SBUColorSet.onlight02, parentInfoSeparateBarColor: UIKit.UIColor = SBUColorSet.onlight04, parentInfoReplyCountTextColor: UIKit.UIColor = SBUColorSet.onlight03, parentInfoReplyCountTextFont: UIKit.UIFont = SBUFontSet.body3, parentInfoProgressBackgroundColor: UIKit.UIColor = SBUColorSet.background100, progressTrackTintColor: UIKit.UIColor = SBUColorSet.onlight03, progressTimeFont: UIKit.UIFont = SBUFontSet.body3, progressTimeRightTextColor: UIKit.UIColor = SBUColorSet.ondark01, progressTimeLeftTextColor: UIKit.UIColor = SBUColorSet.onlight01, statusButtonBackgroundColor: UIKit.UIColor = SBUColorSet.background50, loadingButtonTintColor: UIKit.UIColor = SBUColorSet.primary200, playButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, pauseButtonTintColor: UIKit.UIColor = SBUColorSet.primary300, selectableTitleFont: UIKit.UIFont = SBUFontSet.button2) public var backgroundColor: UIKit.UIColor public var leftBackgroundColor: UIKit.UIColor public var leftPressedBackgroundColor: UIKit.UIColor @@ -9062,6 +9231,7 @@ public class SBUMessageCellTheme { public var playerLoadingButtonTintColor: UIKit.UIColor public var playerPlayButtonTintColor: UIKit.UIColor public var playerPauseButtonTintColor: UIKit.UIColor + public var selectableTitleFont: UIKit.UIFont @objc deinit } public class SBUUserListTheme { @@ -9405,8 +9575,8 @@ public class SBUMessageTemplateTheme { @_Concurrency.MainActor(unsafe) public var iconImageView: UIKit.UIImageView @_Concurrency.MainActor(unsafe) public var widthConstraint: UIKit.NSLayoutConstraint! @_Concurrency.MainActor(unsafe) public var heightConstraint: UIKit.NSLayoutConstraint! - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupSizeContraint() @_Concurrency.MainActor(unsafe) override open func configure(message: SendbirdChatSDK.FileMessage, position: SendbirdUIKit.MessagePosition) @_Concurrency.MainActor(unsafe) public func setImage(_ image: UIKit.UIImage?, size: CoreFoundation.CGSize? = nil) @@ -9500,14 +9670,14 @@ public protocol SBUUserMessageTextViewDelegate : AnyObject { @_Concurrency.MainActor(unsafe) public var needsToRemoveMargin: Swift.Bool { get } - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserMessageTextViewDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserMessageTextViewDelegate? @_Concurrency.MainActor(unsafe) @objc override dynamic public init() @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) public init(channelType: SendbirdChatSDK.ChannelType = .group, removeMargin: Swift.Bool = false) - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() @_Concurrency.MainActor(unsafe) open func updateSideConstraint() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(model: SendbirdUIKit.SBUUserMessageTextViewModel) @objc deinit } @@ -9535,13 +9705,13 @@ extension SendbirdUIKit.SBUModerationsModule { @objc set } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUChannelSettingsTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUModerationsModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUModerationsModuleHeaderDelegate? @available(*, unavailable, renamed: "SBUModerationsModule.Header()") @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @available(*, unavailable, renamed: "SBUModerationsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUModerationsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUModerationsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUChannelSettingsTheme? = nil) @@ -9733,8 +9903,8 @@ extension SendbirdUIKit.SBUCreateOpenChannelModule { } @_Concurrency.MainActor(unsafe) public var channelNameInputField: SendbirdUIKit.SBUUnderLineTextField @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUCreateOpenChannelTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate)? - @_Concurrency.MainActor(unsafe) open func configure(delegate: (any SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate)?, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate? + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateOpenChannelModuleProfileInputDelegate?, theme: SendbirdUIKit.SBUCreateOpenChannelTheme) @_Concurrency.MainActor(unsafe) open func setupViews() @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUCreateOpenChannelTheme? = nil) @@ -9868,11 +10038,11 @@ public protocol SBUMessageThreadViewModelDelegate : SendbirdUIKit.SBUBaseChannel func messageThreadViewModelShouldDismissMessageThread(_ viewModel: SendbirdUIKit.SBUMessageThreadViewModel) } @objc open class SBUMessageThreadViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUMessageThreadViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUMessageThreadViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUMessageThreadViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUMessageThreadViewModelDataSource? { get set } @@ -9882,7 +10052,7 @@ public protocol SBUMessageThreadViewModelDelegate : SendbirdUIKit.SBUBaseChannel public var threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams { get } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = 0, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: (any SendbirdUIKit.SBUMessageThreadViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUMessageThreadViewModelDataSource)? = nil) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, parentMessage: SendbirdChatSDK.BaseMessage? = nil, parentMessageId: Swift.Int64? = 0, threadedMessageListParams: SendbirdChatSDK.ThreadedMessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: SendbirdUIKit.SBUMessageThreadViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUMessageThreadViewModelDataSource? = nil) @objc deinit public func loadChannelAndMessages(channelURL: Swift.String?) override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) @@ -9956,7 +10126,7 @@ extension SendbirdUIKit.SBUUserListModule { } @_Concurrency.MainActor(unsafe) public var theme: SendbirdUIKit.SBUUserListTheme? @_Concurrency.MainActor(unsafe) public var componentTheme: SendbirdUIKit.SBUComponentTheme? - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUUserListModuleHeaderDelegate)? + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUUserListModuleHeaderDelegate? @objc @_Concurrency.MainActor(unsafe) public var channelType: SendbirdChatSDK.ChannelType @_Concurrency.MainActor(unsafe) public var userListType: SendbirdUIKit.ChannelUserListType { get @@ -9966,7 +10136,7 @@ extension SendbirdUIKit.SBUUserListModule { @available(*, unavailable, renamed: "SBUUserListModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUUserListModuleHeaderDelegate, userListType: SendbirdUIKit.ChannelUserListType, channelType: SendbirdChatSDK.ChannelType = .group, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUUserListModuleHeaderDelegate, userListType: SendbirdUIKit.ChannelUserListType, channelType: SendbirdChatSDK.ChannelType = .group, theme: SendbirdUIKit.SBUUserListTheme, componentTheme: SendbirdUIKit.SBUComponentTheme) @objc @_Concurrency.MainActor(unsafe) open func setupViews() @objc @_Concurrency.MainActor(unsafe) open func setupLayouts() @_Concurrency.MainActor(unsafe) open func setupStyles(theme: SendbirdUIKit.SBUUserListTheme? = nil, componentTheme: SendbirdUIKit.SBUComponentTheme? = nil) @@ -10096,7 +10266,7 @@ public enum SBUReplyType : Swift.Int, Swift.Codable { public var filterValue: SendbirdChatSDK.ReplyType { get } - public init(from decoder: any Swift.Decoder) throws + public init(from decoder: Swift.Decoder) throws public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { @@ -10107,13 +10277,18 @@ public enum SBUThreadReplySelectType : Swift.Int, Swift.Codable { case none case parent case thread - public init(from decoder: any Swift.Decoder) throws + public init(from decoder: Swift.Decoder) throws public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } +public struct SBUQuickReplyOptions : Swift.Codable { + public let options: [Swift.String] + public func encode(to encoder: Swift.Encoder) throws + public init(from decoder: Swift.Decoder) throws +} public protocol SBUGroupChannelViewModelDataSource : SendbirdUIKit.SBUBaseChannelViewModelDataSource { func groupChannelViewModel(_ viewModel: SendbirdUIKit.SBUGroupChannelViewModel, startingPointIndexPathsForChannel channel: SendbirdChatSDK.GroupChannel?) -> [Foundation.IndexPath]? } @@ -10121,15 +10296,15 @@ public protocol SBUGroupChannelViewModelDelegate : SendbirdUIKit.SBUBaseChannelV func groupChannelViewModel(_ viewModel: SendbirdUIKit.SBUGroupChannelViewModel, didReceiveSuggestedMentions members: [SendbirdUIKit.SBUUser]?) } @objc open class SBUGroupChannelViewModel : SendbirdUIKit.SBUBaseChannelViewModel { - weak public var delegate: (any SendbirdUIKit.SBUGroupChannelViewModelDelegate)? { + weak public var delegate: SendbirdUIKit.SBUGroupChannelViewModelDelegate? { get set } - weak public var dataSource: (any SendbirdUIKit.SBUGroupChannelViewModelDataSource)? { + weak public var dataSource: SendbirdUIKit.SBUGroupChannelViewModelDataSource? { get set } - public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: (any SendbirdUIKit.SBUGroupChannelViewModelDelegate)? = nil, dataSource: (any SendbirdUIKit.SBUGroupChannelViewModelDataSource)? = nil, displaysLocalCachedListFirst: Swift.Bool = false) + public init(channel: SendbirdChatSDK.BaseChannel? = nil, channelURL: Swift.String? = nil, messageListParams: SendbirdChatSDK.MessageListParams? = nil, startingPoint: Swift.Int64? = .max, delegate: SendbirdUIKit.SBUGroupChannelViewModelDelegate? = nil, dataSource: SendbirdUIKit.SBUGroupChannelViewModelDataSource? = nil, displaysLocalCachedListFirst: Swift.Bool = false) @objc deinit override public func loadChannel(channelURL: Swift.String, messageListParams: SendbirdChatSDK.MessageListParams? = nil, completionHandler: ((SendbirdChatSDK.BaseChannel?, SendbirdChatSDK.SBError?) -> Swift.Void)? = nil) override public func refreshChannel() @@ -10235,10 +10410,10 @@ extension SendbirdUIKit.SBUGroupChannelViewModel : SendbirdChatSDK.GroupChannelD } @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupViews() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupLayouts() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupActions() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func setupStyles() + @_Concurrency.MainActor(unsafe) override open func setupViews() + @_Concurrency.MainActor(unsafe) override open func setupLayouts() + @_Concurrency.MainActor(unsafe) override open func setupActions() + @_Concurrency.MainActor(unsafe) override open func setupStyles() @_Concurrency.MainActor(unsafe) open func configure(with configuration: SendbirdUIKit.SBUQuoteMessageInputViewParams) public enum Edge : Swift.Int { case vertical @@ -10261,7 +10436,7 @@ public protocol SBUOpenChannelSettingsModuleHeaderDelegate : SendbirdUIKit.SBUBa } extension SendbirdUIKit.SBUOpenChannelSettingsModule { @objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class Header : SendbirdUIKit.SBUBaseChannelSettingsModule.Header { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate? { get set } @@ -10270,7 +10445,7 @@ extension SendbirdUIKit.SBUOpenChannelSettingsModule { @available(*, unavailable, renamed: "SBUOpenChannelSettingsModule.Header()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUOpenChannelSettingsModuleHeaderDelegate, theme: SendbirdUIKit.SBUChannelSettingsTheme) @_Concurrency.MainActor(unsafe) @objc public func didUpdateTitleView() @_Concurrency.MainActor(unsafe) @objc public func didUpdateLeftItem() @_Concurrency.MainActor(unsafe) @objc public func didUpdateRightItem() @@ -10327,11 +10502,11 @@ public protocol SBUCreateChannelModuleListDataSource : SendbirdUIKit.SBUBaseSele } extension SendbirdUIKit.SBUCreateChannelModule { @_inheritsConvenienceInitializers @objc(SBUCreateChannelModuleList) @objcMembers @_Concurrency.MainActor(unsafe) open class List : SendbirdUIKit.SBUBaseSelectUserModule.List { - @_Concurrency.MainActor(unsafe) weak public var delegate: (any SendbirdUIKit.SBUCreateChannelModuleListDelegate)? { + @_Concurrency.MainActor(unsafe) weak public var delegate: SendbirdUIKit.SBUCreateChannelModuleListDelegate? { get set } - @_Concurrency.MainActor(unsafe) weak public var dataSource: (any SendbirdUIKit.SBUCreateChannelModuleListDataSource)? { + @_Concurrency.MainActor(unsafe) weak public var dataSource: SendbirdUIKit.SBUCreateChannelModuleListDataSource? { get set } @@ -10340,7 +10515,7 @@ extension SendbirdUIKit.SBUCreateChannelModule { @available(*, unavailable, renamed: "SBUCreateChannelModule.List()") @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @objc deinit - @_Concurrency.MainActor(unsafe) open func configure(delegate: any SendbirdUIKit.SBUCreateChannelModuleListDelegate, dataSource: any SendbirdUIKit.SBUCreateChannelModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) + @_Concurrency.MainActor(unsafe) open func configure(delegate: SendbirdUIKit.SBUCreateChannelModuleListDelegate, dataSource: SendbirdUIKit.SBUCreateChannelModuleListDataSource, theme: SendbirdUIKit.SBUUserListTheme) @_Concurrency.MainActor(unsafe) @objc override open func configureCell(_ cell: UIKit.UITableViewCell?, indexPath: Foundation.IndexPath) } } diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/SendbirdUIKit b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/SendbirdUIKit index c3099c0d7..74326a529 100755 Binary files a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/SendbirdUIKit and b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/SendbirdUIKit differ diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/_CodeSignature/CodeResources b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/_CodeSignature/CodeResources index 367904ba1..f06852b4a 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/_CodeSignature/CodeResources +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/SendbirdUIKit.framework/_CodeSignature/CodeResources @@ -6,11 +6,11 @@ Assets.car - zLif5njaheFXLJXfycB4wkmYcxo= + Pa/JoihXWB6QTu+wUsphlYtejho= Base.xcconfig - oPehnrXhL1+LVmu45DN/mQ7/MRo= + 3wU24nLP/aMTu4m/+naedHoxtGA= Debug.xcconfig @@ -18,51 +18,51 @@ Headers/SendbirdUIKit-Swift.h - RaITSOTlocdPxko3G+TheCYoJRQ= + T5YDc3Hfvl5pQdlJCL2jDsVcbpc= Info.plist - B/BTBKEWUxtU48coPcal3WFY94c= + TN3OZ5ulKtCUfByWJm7rXv27itA= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.abi.json - uptGpnQiN2hPpJ2FlqM1W59EPu8= + wWY72h7GaRsSXvQj3+i+VTKKdH4= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - oP1PXevSIqXIX5g9tINBsDw/grQ= + sW1m6gUz4njMld99hWA4uf3+964= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc - x3ikXQi+7VnVKnWaAFNSzhRHZyY= + wXh0qJTVb0tjFqnsKHjf7KFh4bg= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface - oP1PXevSIqXIX5g9tINBsDw/grQ= + sW1m6gUz4njMld99hWA4uf3+964= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule - XsyxeFoa5JPtZGxEb0e96Vws5i8= + VtoUw13mQNPWv6aH//ly1DkIqfs= Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.abi.json - uptGpnQiN2hPpJ2FlqM1W59EPu8= + wWY72h7GaRsSXvQj3+i+VTKKdH4= Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - G97YwpjRdA3dGGc9vPM4QMCuFqM= + YeeWLRwyDqNEQlL0YqnHqyJMBbU= Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - qe3QfXVTPwQ9m2evRuUX7F/Z014= + 9uhY1KwTYJTU1fLklo+eLPs2GrA= Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - G97YwpjRdA3dGGc9vPM4QMCuFqM= + YeeWLRwyDqNEQlL0YqnHqyJMBbU= Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - cBnYI1xJzL6SQ4rirJJMUykknag= + EaEMnXHQmcKq6O5qZxMCX0ueH6s= Modules/module.modulemap @@ -91,14 +91,14 @@ hash2 - GqqFNVvRCZMWOgKRio8rFwu7mpr7BgObmW5lbb9x7n4= + iCkd44zGOcs+XOb49Jkv9HSjFaHSAX3WepYp24kBi80= Base.xcconfig hash2 - vAhM12n3Ni/d5+HH6gX9WBcJb6+2YgRBqpEzlPDKIP4= + 4gu7DLeaNf4TessB6+fnqU7mVrHAIl1L95V11D6kZy0= Debug.xcconfig @@ -112,77 +112,77 @@ hash2 - bxdumIzcfMNqWEzrSzjDdZV+SxyR90/4e2hp4pt7S7w= + guFGWzWwx33q2SnqTBDsTCbIBQpRyMQtKZ0feovSCAA= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.abi.json hash2 - 3yhdrgtTCg4tSY3KZzvYE3nKhxgDoOCK0WE6psZld7M= + gw3r96CGubNCZZdW9erW6jWwM+0AuN/qJgWHf74F3Zg= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface hash2 - Ruc1JRFyfYBYWUVin6oUkHNZqhVrcBLjumYqcLG34I0= + ENSJdZ9pPc/12e4iwAsIHiJC/ZPXdGtx1qq1tK5FzGU= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash2 - i/tZRFHo+SM/+Io9gEsaZYJKWk1mhSvTE6z/KTGS/cQ= + S/mZVffz7ujlbQdFEoAfAgKM3thZSC4sQB1EBUVtUNQ= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash2 - Ruc1JRFyfYBYWUVin6oUkHNZqhVrcBLjumYqcLG34I0= + ENSJdZ9pPc/12e4iwAsIHiJC/ZPXdGtx1qq1tK5FzGU= Modules/SendbirdUIKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - loJdBCn971kHXrjIj3gs4HwVUyUKgzBMBipV86lYBcQ= + dR6n3vUyAleMyC1DmZkapM0bpQG0HdpxX7Y6NSk6g8Y= Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.abi.json hash2 - 3yhdrgtTCg4tSY3KZzvYE3nKhxgDoOCK0WE6psZld7M= + gw3r96CGubNCZZdW9erW6jWwM+0AuN/qJgWHf74F3Zg= Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface hash2 - lzDQiJqUF0qDvi+8/P7MYOF+zSuUR8l0KNvg+6GOGbM= + SeGLKEC0xdaCaL22TzEG6ta0ATCFVL9XYnJ0GtO9w4g= Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash2 - 0N4AtWPfAtcJcX9Ui0L3V1svBgA5VduDMjNRKSOoFe8= + sB0y9Jdg7lMmhOLAKJl2hNjq7m3v/rAe5Y5Rf9kPVFI= Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash2 - lzDQiJqUF0qDvi+8/P7MYOF+zSuUR8l0KNvg+6GOGbM= + SeGLKEC0xdaCaL22TzEG6ta0ATCFVL9XYnJ0GtO9w4g= Modules/SendbirdUIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - 6yO1/QHw47aTQRr8Ys052uT3K6QJ9X0dKoCauPWohv0= + xkFojFxYQk/Ghe2bGMxFEHuOiiHuUxnWKBRq9Iu28qQ= Modules/module.modulemap diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Info.plist b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Info.plist index 8f0ff3b26..b3c05c898 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Info.plist +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Info.plist @@ -13,7 +13,7 @@ CFBundleSignature ???? CFBundleShortVersionString - 3.6.2 + 3.7.0 CFBundleVersion 1 diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/DWARF/SendbirdUIKit b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/DWARF/SendbirdUIKit index bd1fd82a7..9dcbab176 100644 Binary files a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/DWARF/SendbirdUIKit and b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/DWARF/SendbirdUIKit differ diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/Swift/aarch64/SendbirdChatSDK.swiftinterface b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/Swift/aarch64/SendbirdChatSDK.swiftinterface index 7fe72647a..b822d29b7 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/Swift/aarch64/SendbirdChatSDK.swiftinterface +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/Swift/aarch64/SendbirdChatSDK.swiftinterface @@ -515,6 +515,7 @@ extension SendbirdChatSDK.PreviousMessageListQuery { @objc final public let isActive: Swift.Bool @objc final public let friendDiscoveryKey: Swift.String? @objc final public let friendName: Swift.String? + @objc final public let isBot: Swift.Bool @objc open var preferredLanguages: [Swift.String]? { get } @@ -1563,7 +1564,7 @@ extension SendbirdChatSDK.PollRetrievalParams : Swift.Encodable { get } @objc public var uploadSizeLimit: Swift.Int64 { - get + @objc get } @objc public var premiumFeatureList: [Swift.String]? { get diff --git a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/Swift/x86_64/SendbirdChatSDK.swiftinterface b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/Swift/x86_64/SendbirdChatSDK.swiftinterface index e7716ecda..4462db5be 100644 --- a/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/Swift/x86_64/SendbirdChatSDK.swiftinterface +++ b/Framework/SendbirdUIKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/SendbirdUIKit.framework.dSYM/Contents/Resources/Swift/x86_64/SendbirdChatSDK.swiftinterface @@ -515,6 +515,7 @@ extension SendbirdChatSDK.PreviousMessageListQuery { @objc final public let isActive: Swift.Bool @objc final public let friendDiscoveryKey: Swift.String? @objc final public let friendName: Swift.String? + @objc final public let isBot: Swift.Bool @objc open var preferredLanguages: [Swift.String]? { get } @@ -1563,7 +1564,7 @@ extension SendbirdChatSDK.PollRetrievalParams : Swift.Encodable { get } @objc public var uploadSizeLimit: Swift.Int64 { - get + @objc get } @objc public var premiumFeatureList: [Swift.String]? { get diff --git a/Sample/QuickStart.xcodeproj/project.pbxproj b/Sample/QuickStart.xcodeproj/project.pbxproj index cf9fbbcae..b2429b273 100644 --- a/Sample/QuickStart.xcodeproj/project.pbxproj +++ b/Sample/QuickStart.xcodeproj/project.pbxproj @@ -7,211 +7,208 @@ objects = { /* Begin PBXBuildFile section */ - 00663CC3076276F4FEBC2BE4 /* SBUMessageSearchModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F6B34837ECDC59E6C211931 /* SBUMessageSearchModule.List.swift */; }; - 009713E8973B2EA585486B24 /* MessageTemplateTestViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C2D59AD85338E7EE6A08F93 /* MessageTemplateTestViewController.swift */; }; - 00CACD90764D4B9C0F004B5B /* SBUOpenChannelUserMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A608337D7185D3739BDD2E16 /* SBUOpenChannelUserMessageCell.swift */; }; - 00FEFEAADF755E7A7EECC55D /* SBUBaseSelectUserViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B72235A8215E743479BC0B6 /* SBUBaseSelectUserViewController.Deprecated.swift */; }; - 011661A1D0F455EFA08AC19E /* SBUChannelInfoHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C22F775EDC16A612E2DE772C /* SBUChannelInfoHeaderView.swift */; }; - 01C18B8DBC483130C368C4F2 /* SBUVoiceContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0052C497CCD121328271A0CC /* SBUVoiceContentView.swift */; }; - 036BA25756C0051ACB937028 /* SBUEmptyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B210056B6B1EE32EFD674B69 /* SBUEmptyView.swift */; }; - 0481881EAC2E40146C3826F9 /* SBUParentMessageInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECCB5E0BE740839D9069F7F9 /* SBUParentMessageInfoView.swift */; }; - 04B6FCC8BAD95506B544EA74 /* SBUBaseChannelModule.Input.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34EEEBFD71E85A2574E0E422 /* SBUBaseChannelModule.Input.swift */; }; - 054870BE3A71BFC002F59223 /* SBUTheme.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC96D8B89932D1AC0FCFCE3 /* SBUTheme.Deprecated.swift */; }; - 0570B359788C26CD44FBED4C /* NSObject+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CB24B4E4F94EFF4F3A78C33 /* NSObject+SBUIKit.swift */; }; - 059438527C4939CDCFD3B481 /* SBUBaseMessageCellParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32633C045C5228038285EA41 /* SBUBaseMessageCellParams.swift */; }; - 0647CB80C85AAB29D3E9630C /* SBURegisterOperatorModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = A281C6B4D10CD53B6A394C09 /* SBURegisterOperatorModule.Header.swift */; }; - 07038DC679B3C2A63AA27E40 /* SBUGroupChannelModule.Input.swift in Sources */ = {isa = PBXBuildFile; fileRef = 548040194B736EA02AA25CCF /* SBUGroupChannelModule.Input.swift */; }; - 087B5B0DA35646F6FD9642FB /* SBUGroupChannelListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9BF9A023D9C63F2AF5A74B7 /* SBUGroupChannelListViewController.swift */; }; - 092AE4173D1954A080C3E367 /* SBUIconSetType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D3FBA15AFA6B0FC450BECFA /* SBUIconSetType.swift */; }; - 0A15A0374FB0BE5413302BF3 /* SBUImageContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECF834BA2F347DC82CAC8127 /* SBUImageContentView.swift */; }; - 0B9CEB30532D20896B465D6E /* SBUGroupChannelSettingsModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7306B8417B4BC6AA22C46BC /* SBUGroupChannelSettingsModule.List.swift */; }; - 0C454D1E48781E6DC0D26DB2 /* SBUInviteUserViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7552D9C76567F65E4BF30A6C /* SBUInviteUserViewModel.swift */; }; - 0D441CE2FF2FDE8C5FC8A7D8 /* SBUFileViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2800C578594DF8D51CCF2358 /* SBUFileViewController.swift */; }; - 0DEE8185FE807B5093454057 /* SBUQuotedMessageViewProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47E88E362FAD792F98F2A78F /* SBUQuotedMessageViewProtocol.swift */; }; - 100B7305B7C5A55A5C12D831 /* SBUOpenChannelModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F6A102674F66FFD92F6B5F1 /* SBUOpenChannelModule.Header.swift */; }; - 10D805486A6177AD4C5218D9 /* UIImage+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = B81F436DE5CD010E6B8A7358 /* UIImage+SBUIKit.swift */; }; - 1170729BF0413D2AA38C8B7C /* SBUModuleSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D8A2605B1CF33AC9B6D337E /* SBUModuleSet.swift */; }; - 129DFF4DF0E55B7C4753DAF9 /* SBUStackView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1D7EEAE7EB8554E6F7CC264 /* SBUStackView.swift */; }; - 12ADAA683404B03C5B26E4EE /* SBUMenuCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 55C045397CABC01200AFB0C2 /* SBUMenuCell.xib */; }; - 13A5944057F16C3DAA81C72A /* SBUBaseViewController.Unavailable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4461DE456B85C22AA99A29E7 /* SBUBaseViewController.Unavailable.swift */; }; - 14254D7C5CA6903A624BEBA1 /* SBUView.Unavaliable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D349A851AFBCFE62F1A86E1B /* SBUView.Unavaliable.swift */; }; - 1467751B060FA467945AE12D /* SBUTheme.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5C41544D4A7B3F7784E1D7F /* SBUTheme.swift */; }; - 14A6F806F49B123AEA9CFD72 /* SBUPermissionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 246418A4F88F9F47AC0156B8 /* SBUPermissionManager.swift */; }; - 164D1C842DEE08B67F88D6E4 /* SBUBaseChannelSettingsViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96134C5985795B294F985505 /* SBUBaseChannelSettingsViewController.Deprecated.swift */; }; - 16599332CDD6B9121E271738 /* QuotedFileCommonContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5F73F77DA3F3EC73CA4C76A /* QuotedFileCommonContentView.swift */; }; - 1756F77B2ACB6BFDFFC5976E /* SBUGroupChannelCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD2EC18E17D95D8C9DE00BE1 /* SBUGroupChannelCell.swift */; }; - 1759E88619492814B7EFB7E6 /* SBUEmojiManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = D92157DCAD9B8A91EDFFE3A6 /* SBUEmojiManager.swift */; }; - 187E1DA04C9161FCAE1A357C /* SBUMessageSearchViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 170A323DADC4CC14D07B75F8 /* SBUMessageSearchViewController.Deprecated.swift */; }; - 18898F2968BDB7333ACFE928 /* SBUQuotedBaseMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8730C302A20C6AB04C8E3CE /* SBUQuotedBaseMessageView.swift */; }; - 1931318040E00D7FE988773F /* SBUGroupChannelSettingsModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = B064373F96C7EE1E19C5F4C9 /* SBUGroupChannelSettingsModule.swift */; }; - 19365B5FB787324D639C7333 /* SBUConfig.Base.swift in Sources */ = {isa = PBXBuildFile; fileRef = 999F96211E71DCA11024EDC6 /* SBUConfig.Base.swift */; }; - 1A79BA8C9A9E34C2635FF75E /* SBUConfig.Common.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9212466A3D47B284C595BD5B /* SBUConfig.Common.swift */; }; - 1A933245EAE1D6663380DA3A /* SBUFeedNotificationChannelModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC04424C7F33DCE60A159DBE /* SBUFeedNotificationChannelModule.List.swift */; }; - 1ECEDDF3EFDDFF767B15B284 /* SBUChatNotificationChannelModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAECD08778DB45A5C7236BD7 /* SBUChatNotificationChannelModule.swift */; }; - 218A4B0A4DCD9A8C3A18AD31 /* MessageTemplateRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 358BF3E05BC5E1A012FB3FA9 /* MessageTemplateRenderer.swift */; }; - 228AD06D369AD2DE3E15FDE7 /* SBUInviteUserModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = E43BC1FFC1B63917B6C19C66 /* SBUInviteUserModule.Header.swift */; }; - 2496FB07618DD4773674506E /* SBUMemberListViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8BAB85BDF95D5E887C31E11 /* SBUMemberListViewController.Deprecated.swift */; }; - 24D91363CE2FBBA13D826F0A /* SBUNotificationChannelManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E4CF2D41B22F0A3A6BD3C8F /* SBUNotificationChannelManager.swift */; }; - 279211430FF7A2CD3E0B30D0 /* SBUMessageInputMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC02E78F4CE2F80F9545487F /* SBUMessageInputMode.swift */; }; - 27F111D939220AEB06C62BB2 /* SBULogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 565A6A767F38D2AF55DB6BE9 /* SBULogger.swift */; }; - 288A6678C8BC67995BB75A8C /* SBUOpenChannelListModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 622DCF37B78F8F22A3F670A9 /* SBUOpenChannelListModule.swift */; }; - 2A1CE81F18C8F7C508668B8C /* SBUGroupChannelPushSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F600DA6889F613ABC24585CC /* SBUGroupChannelPushSettingsViewModel.swift */; }; - 2A7C88272E737A9BBEC54823 /* SBUUserMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3F82FDCCD32A9269A190F63 /* SBUUserMessageCell.swift */; }; - 2AC13BE53AC2F78E3ACBEB1A /* SBURegisterOperatorModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1163BFF7A52C73C8A3AE5F09 /* SBURegisterOperatorModule.swift */; }; - 2CE121B833C166CFDC1B2825 /* UIViewController+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0A29C1C9DE43ACB9DC04967 /* UIViewController+SBUIKit.swift */; }; - 2D83F1B4E9D432E58DDFC5C6 /* SBUAdminMessageCellParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E5352BBB4A3D5D6A7303BE /* SBUAdminMessageCellParams.swift */; }; - 2D9CFC52B32425A1645E429C /* SBUBaseChannelSettingsModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = C06E5A2910D60CD5ACFFE801 /* SBUBaseChannelSettingsModule.swift */; }; - 2F18362D77AB0A8E6B48FC12 /* SBUStringSet.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 600654ADC5C1AD03B949A989 /* SBUStringSet.Deprecated.swift */; }; - 30548D597ACF6B6B3E53C651 /* SBUSuggestedMentionList.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52BE4003625B0B9497157D4F /* SBUSuggestedMentionList.swift */; }; - 321B8AD2040FFECFC1A61C2E /* SBUUnderLineTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70FF5914C321DA41EC891ECC /* SBUUnderLineTextField.swift */; }; - 3274818673F2ABCDAEE14FEE /* SBUMessageStateView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B758EA77426C5CF5D9199193 /* SBUMessageStateView.swift */; }; - 33A62FB2116A7C09D7320F57 /* SBUParentMessageInfoReactionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B35BD47F4D81087250EBB1E /* SBUParentMessageInfoReactionView.swift */; }; - 33DC44900B7E0BB33FDA5A04 /* SBUUserListModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93955B67C13C0FF243E516A8 /* SBUUserListModule.swift */; }; - 3485ABC6A240FFD3105FA276 /* SBUUnknownMessageCellParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57151216E7EB4714BF6237B5 /* SBUUnknownMessageCellParams.swift */; }; - 3572E18220CF0810F49C8EA3 /* SBUOpenChannelModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = E92EE181BCEBEFD719968688 /* SBUOpenChannelModule.swift */; }; - 35E97A78ADB8728CC1CC335C /* SBUCacheManager.Template.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5798ACEEC28445D6BB0DED9 /* SBUCacheManager.Template.swift */; }; - 367431FF601B17098932AB65 /* SBUMessageThreadViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88619A0779C35F1F7FA3800F /* SBUMessageThreadViewModel.swift */; }; - 379CA0680EB94EEB851646C0 /* SBUNotificationNavigationTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FC0679799A9487D098BEE2E /* SBUNotificationNavigationTitleView.swift */; }; - 37AD72298B14A77EF4E1FC0F /* SBUCreateChannelModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBC7C99FF0EF09B1CEBD1811 /* SBUCreateChannelModule.Header.swift */; }; - 3AB8E0FDBE6C80F19CB95F05 /* SBUModerationCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B2D7A7DDF74835A7BB1094A /* SBUModerationCell.swift */; }; - 3B3BEDA110458D6CA727521C /* SBUView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA32A6610187C40542720C42 /* SBUView.swift */; }; - 3ED1EF76459BCC1DFC0A9CB2 /* SBUMessageSearchModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AAA62FFF785C4E155B0E93A /* SBUMessageSearchModule.Header.swift */; }; - 3EFA1456F3339A63B98BF47B /* SBUCollectionViewFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B90D692651580FC135F2078 /* SBUCollectionViewFlowLayout.swift */; }; - 3F1CD10E555563C6155DC8F5 /* SBUConfigManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AD1A0635E34629A38F6BA07 /* SBUConfigManager.swift */; }; - 3F2441D99BCE8B7BD328C82E /* SBUChannelPushSettingCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A44E8BACD0AB0059437754E7 /* SBUChannelPushSettingCell.swift */; }; - 3F37F75F51C53D74C589C408 /* Base.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 6335031FE81A51E28535ECAE /* Base.xcconfig */; }; - 400748702E1EC0DBCBFB0649 /* SBUVoiceMessageInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31777FAB460FAA0599216989 /* SBUVoiceMessageInputView.swift */; }; - 416F16EAC92F6A65B45A066D /* SBUAlertView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F3F525F474074DC040A812E /* SBUAlertView.swift */; }; - 41F03F33F920C6954F81F973 /* SBUBaseChannelViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CACF979FBE591D818219313 /* SBUBaseChannelViewModel.swift */; }; - 434905A9845265319CFBC3BB /* SBUPhotoCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95981CA2FE730F675313EF5B /* SBUPhotoCollectionViewCell.swift */; }; - 43DB5DCD98A8E743D48B163C /* SBUPendingMessageManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B4BC7FCE76A9D397CFF8942 /* SBUPendingMessageManager.swift */; }; - 44BBD8F94234CF769D61E297 /* SBUOpenChannelAdminMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 621C767B4E4974F6CF8FFC1C /* SBUOpenChannelAdminMessageCell.swift */; }; - 46341B282B83E685C9AAD83D /* SBULoading.swift in Sources */ = {isa = PBXBuildFile; fileRef = C922BA5D005F72781C50318A /* SBULoading.swift */; }; - 472389AA0507C7DE3BC0E63F /* SBUBaseMessageCellParams.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B94C0B246A1E21F447B2430 /* SBUBaseMessageCellParams.Deprecated.swift */; }; - 47BB9F0DFF1A09E2FFD8F641 /* SBUGroupChannelSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E4C9B6E5B0890EC3EA46099 /* SBUGroupChannelSettingsViewModel.swift */; }; - 488A1FB0E2272E5A24A7C8F7 /* SBUUserMessageCellParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5137C0ECDFE897169AD23E1E /* SBUUserMessageCellParams.swift */; }; - 48E081A7234A3CB920E9DD14 /* SBUBaseSelectUserViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37CF1AD3DE002B76FB7B4950 /* SBUBaseSelectUserViewController.swift */; }; - 4AACFAFD23131C45541971D8 /* SBUOpenChannelListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA159DABC79F04BBCB1B491D /* SBUOpenChannelListViewController.swift */; }; - 4BAD1CF3680F1EEDAD736FBB /* SBUChannelSettingsChannelInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0508C8B9790B2461890BCD56 /* SBUChannelSettingsChannelInfoView.swift */; }; - 4D1E854F6D658754ECA13636 /* VoiceMessageStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37B480E51573F8FB9A8D70E3 /* VoiceMessageStatus.swift */; }; - 4D585EB42DA342F4867C913C /* SBUGroupChannelPushSettingsModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A1E5B618E676836BB2C165C /* SBUGroupChannelPushSettingsModule.List.swift */; }; - 4DD644534E3DBA9D6F8F2A57 /* SBUColorSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D41D8C41E15F268991B400E /* SBUColorSet.swift */; }; - 4E84AA35DC194E4F47E48229 /* SBUMessageSearchViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 035E8FEA91B95E5C54F5DD6C /* SBUMessageSearchViewController.swift */; }; - 4ECE0DB1B01D994710DBAAA6 /* SBUMessageSearchModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 851B9B6F54F5C83ADC47FE15 /* SBUMessageSearchModule.swift */; }; - 4F36177BDA09856DE1D6649A /* SBUCreateOpenChannelModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2376FC612D9880767AD54B72 /* SBUCreateOpenChannelModule.swift */; }; - 4FC5148CB1F7D80369E615D7 /* SBUUserListModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = F61F6A17CFAA1C5E0AA59931 /* SBUUserListModule.Header.swift */; }; - 5010329DB1CC8137B98C0216 /* SBUMessageThreadModule.Input.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCB15FCCDCFB629D3A138681 /* SBUMessageThreadModule.Input.swift */; }; - 50BFBC8D61228F02E8270851 /* SBUMessageReactionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37223FEDAC6037846C10D6A1 /* SBUMessageReactionView.swift */; }; - 51F4BAA84FBB19A7D998D61B /* SBUOpenChannelCommonContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E14AF74B1309E8538984518 /* SBUOpenChannelCommonContentView.swift */; }; - 527DE16C9DE65424A72A4F64 /* SBUBaseChannelViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = A34E7B141CBF2FCC81D1E924 /* SBUBaseChannelViewController.Deprecated.swift */; }; - 52EE90CF001CE30EEC33C505 /* SBUQuotedBaseMessageViewParams.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F65CFF37E53BCAAA50406AE /* SBUQuotedBaseMessageViewParams.Deprecated.swift */; }; - 540D05E0103210250964AFDB /* SBUBaseSelectUserModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = B316160D5B1AB6B80189E7E4 /* SBUBaseSelectUserModule.List.swift */; }; - 544397B4753B767BD0511715 /* UIColor+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 112861C0A1E3436555A2B95C /* UIColor+SBUIKit.swift */; }; - 5879EC5FFD9C40DD6ACF5C94 /* SBUCacheManager.Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = C791015E5D1561D9F6CCFE3D /* SBUCacheManager.Image.swift */; }; - 58A8B6DE6270D704E1BAB419 /* SBUQuoteMessageInputViewParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = 487265ECD21AB6C507428924 /* SBUQuoteMessageInputViewParams.swift */; }; - 58E661DC5A226B6A6BA8F772 /* SBUConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9EB748CD2CBF02EF66BCF78 /* SBUConfig.swift */; }; - 5911594130AA8FE6F1F3ACFB /* SBUCoverImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 377E6909811CC367981B0E8C /* SBUCoverImageView.swift */; }; - 5924487D5F2E9B88409B1DDD /* SBUUserMessageTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2735235C943965230632AE28 /* SBUUserMessageTextView.swift */; }; - 596436965191BA331DB5D197 /* SBUDashboardConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = F40EA1102B93ACE2F0BEB2A0 /* SBUDashboardConfig.swift */; }; - 5A45569F0A42529372ACFD8E /* SBUCreateOpenChannelViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 952478D52785A1D36726D91F /* SBUCreateOpenChannelViewModel.swift */; }; - 5B76328B54650F20160C79BE /* SBUOpenChannelCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23279CEC36E9640FC3CDBFBF /* SBUOpenChannelCell.swift */; }; - 5B8250D81ACAA88D2FD362EB /* SBUGroupChannelViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C447D3DEE9C6EC06AF37E9BA /* SBUGroupChannelViewModel.swift */; }; - 5C1FADE2150C64C65B850044 /* SBUGlobals.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = E84E49240B02B4FE176C0ACF /* SBUGlobals.Deprecated.swift */; }; - 5D19C7911A1C991F7B9291CD /* SBUCommonViewControllerSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF9B38CF91C898EDE89C0F82 /* SBUCommonViewControllerSet.swift */; }; - 5D5D977B380EBCAFB4B7FCDE /* SBUOpenChannelSettingsModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0A49C3FE86E811FF8445624 /* SBUOpenChannelSettingsModule.Header.swift */; }; - 5D66B45F3BFED8ADA6E0213B /* SBUQuotedFileMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 675E801AD68AEDC93B404365 /* SBUQuotedFileMessageView.swift */; }; - 5DAFED97AF6189F7AA679D01 /* SBUPhotoAccess.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05058743F65FD4376B7E87FB /* SBUPhotoAccess.swift */; }; - 5EAB9B0078D89372B0C5F438 /* SBUGroupChannelSettingsModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1FFF2B87A362D9DBA83BC95 /* SBUGroupChannelSettingsModule.Header.swift */; }; - 5EDC41B31670F02C6E560118 /* SBUActionSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4F04043A876059D24139F3B /* SBUActionSheet.swift */; }; - 5FBEA976A53BBEC21FE04E6A /* SBUBaseChannelSettingsModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19961799941C4A5BE7C36C06 /* SBUBaseChannelSettingsModule.List.swift */; }; - 608DB8199504538695D87C02 /* Formatter+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB86164252E98E2983E75F37 /* Formatter+SBUIKit.swift */; }; - 616D588BD28B6C18DA775E00 /* SBUMarginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 613670ACFECCD688E08DF403 /* SBUMarginView.swift */; }; - 61EA8BE17583BFCC1A241F5E /* SBUCreateChannelViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4EC209279A5BAC175A23A021 /* SBUCreateChannelViewModel.swift */; }; - 61EC982CFD64138F34027F0B /* SBUUser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A5C7231AE05F022FA044D2B /* SBUUser.swift */; }; - 622BB8CD3214724778645CA3 /* SBUOpenChannelSettingCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9E4BC1A6D7BF534BD6FEF63 /* SBUOpenChannelSettingCell.swift */; }; - 6325BF62478F9E31A1D5E340 /* SBUGroupChannelListModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = C79E59683CD0F4CD44CEA213 /* SBUGroupChannelListModule.List.swift */; }; - 6326B5865D51B304B9C21A8E /* SBUBaseChannelCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79504BB5C9B981AC830C391C /* SBUBaseChannelCell.swift */; }; - 63609EEBC614D3AE10FCB8D4 /* SBUNotificationCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A266CC238ED86145A6C668B /* SBUNotificationCell.swift */; }; - 63979C1B0A162B067CB00EC6 /* SBUOpenChannelModule.Input.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9823E7A36CC90FF0309F0659 /* SBUOpenChannelModule.Input.swift */; }; - 64614D2BB4DB3276017DF3A6 /* SBUUserListModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1D17BBEAAB8C6FBF3876423 /* SBUUserListModule.List.swift */; }; - 65C72A928BF91DF9A6805593 /* SBUChannelListViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7299BBEF4BA3589B72FAB0B /* SBUChannelListViewController.Deprecated.swift */; }; - 65F47CF825D3A08A8FDFBCEA /* SBUVoiceFileInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 781830138EF31F2B4A5043B6 /* SBUVoiceFileInfo.swift */; }; - 6690341DFE2BBD486AB426FF /* SBUFeedNotificationChannelModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3A0076CADC48A5F711EF1CB /* SBUFeedNotificationChannelModule.Header.swift */; }; - 67757579D6781AA266010059 /* SBUToastManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47C21272A8FADC719009B031 /* SBUToastManager.swift */; }; - 686C45EA6BFBAD3227ED650C /* Date+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67582C9620E1185355B189D3 /* Date+SBUIKit.swift */; }; - 68E0DB672DBAF1F6271347DF /* SBUVoicePlayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AB9A53070C4D1F77CEDE131 /* SBUVoicePlayer.swift */; }; - 6A002CB5758F89F495CF7409 /* SBULinkClickableTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11D2ADC805854D1A268AFF99 /* SBULinkClickableTextView.swift */; }; - 6AB28609315F93B55E8DCC8C /* SBUOpenChannelListViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E89FF2BFED7E12333AEC2CA /* SBUOpenChannelListViewModel.swift */; }; - 6C30B774588B5176F2190080 /* SBUTheme+Type.swift in Sources */ = {isa = PBXBuildFile; fileRef = 753B1D0857F6A810765645D3 /* SBUTheme+Type.swift */; }; - 6D3E0DED03B5FEA39AC7553B /* SBUChatNotificationChannelModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED724ED3BF021A9EDAC9724D /* SBUChatNotificationChannelModule.List.swift */; }; - 6E0CB1EB1AA2C38EDBCBC54B /* SBUGroupChannelListModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE0539E577070B022D52321F /* SBUGroupChannelListModule.Header.swift */; }; - 6E39AE16167943B32E3EEC85 /* SBUAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F67994C0401225859A40F2F0 /* SBUAnimation.swift */; }; - 6F06B8B7CDE22F0CC7796518 /* SBUOpenChannelViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = E066BD3E4E77927144A2478F /* SBUOpenChannelViewController.Deprecated.swift */; }; - 6F3FACE079B85FCCDE466D71 /* UITextField+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D51474B45780CEA21A5013E /* UITextField+SBUIKit.swift */; }; - 6F6F8707EB35B2A5B26B3E88 /* SBUGroupChannelViewController.Unavailable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4177A1801AF4E23E808E05E /* SBUGroupChannelViewController.Unavailable.swift */; }; - 6FEF859687CD4CE1A9183321 /* SBUOpenChannelModule.Media.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A8BD43643A99212F382A97C /* SBUOpenChannelModule.Media.swift */; }; - 700F4850098EEB43F4CA9582 /* SBUFeedNotificationChannelViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43969DA55E0A647D21D23BBA /* SBUFeedNotificationChannelViewModel.swift */; }; - 704F65F14931D07365F97AF1 /* SBUGroupChannelListViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10B6EC355B1F9FA84C9BE62C /* SBUGroupChannelListViewModel.swift */; }; - 70DB36DBD5A6FA79BA1CDA9F /* SBUBaseSelectUserViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3838C6B01193471668E61D8B /* SBUBaseSelectUserViewModel.swift */; }; - 714512610ED9082C9B9D5FD4 /* SBUModuleSet.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DA64EC168ACFEB42A17C70A /* SBUModuleSet.Deprecated.swift */; }; - 7185616B445D3B6F44CA1DB3 /* String+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98F3AA9693D851ECCC5BB64A /* String+SBUIKit.swift */; }; - 71C7A3BB63B3972D436494D9 /* SBUOpenChannelViewController.Unavailable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43F44C559773C1F1CDF52E89 /* SBUOpenChannelViewController.Unavailable.swift */; }; - 71F2599F5A0D7D137A92AC0D /* SBUMentionLimitGuideCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11CE17442D685AF2F0F3126F /* SBUMentionLimitGuideCell.swift */; }; - 7463F2C63CAF489DA7F7D6EB /* SBUContentBaseMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFEF4310057466FD03756394 /* SBUContentBaseMessageCell.swift */; }; - 74EF28B3A843E005DC43CF31 /* SBUReactionsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0D8778FC8BB0FECDCD3261B /* SBUReactionsViewController.swift */; }; - 75A091A3ABE87F4A0BB5E702 /* SBUFeedNotificationCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F5CC65D0DA87A4C82E0596B /* SBUFeedNotificationCell.swift */; }; - 75D8859A2F12696EFEE635F4 /* SBUMessageWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80DAFB0E7E9BF59D6845304B /* SBUMessageWebView.swift */; }; - 760E0EBC8CF934A7F80E5D49 /* SBUOpenChannelViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89E97777A1F0FB6681778017 /* SBUOpenChannelViewController.swift */; }; - 77460CC4AE77F01E2783203A /* UIView+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F8446A6307248E4512171F6 /* UIView+SBUIKit.swift */; }; - 7764576007FC5DFB201FBA0F /* SBUOpenChannelSettingsModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1227FEAC6FFDA576E56143B4 /* SBUOpenChannelSettingsModule.swift */; }; - 777258EA0136FD36713AD101 /* SBUGroupChannelModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44E0ACF1ED6168F2A221DA56 /* SBUGroupChannelModule.swift */; }; - 77F2800A2FFF6D12E3E13DBB /* SBUMenuCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07A21BCF0A4E53CE588EF51C /* SBUMenuCell.swift */; }; - 781826F57C5A135003EAFF07 /* SBUOpenChannelListModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00501C2494FE5A6D7D16701D /* SBUOpenChannelListModule.Header.swift */; }; - 7906803E612158596182FE48 /* Sequence+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A252659AFE15AF12098C7D64 /* Sequence+SBUIKit.swift */; }; - 79E8AFED5E5A572EF012E0F1 /* SBUConfig.GroupChannel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 192BA41FECD28693B4BB3502 /* SBUConfig.GroupChannel.swift */; }; - 79ED128C7F7884332CC45D45 /* SBUMessageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = F172024CB74D1161310185AE /* SBUMessageCache.swift */; }; - 7ACA1C8CADE79FD1B5553629 /* SBUVoiceRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2ABA8C4CA70B8713D4E8C0E2 /* SBUVoiceRecorder.swift */; }; - 7C4BB4F858EF6EC90689F017 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = CE1AEC3AFF0FC94611681667 /* Assets.xcassets */; }; - 7D09687AEA2EEE20B1CD412D /* SBUModerationsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98E1C9A45886D8736C7FECF4 /* SBUModerationsViewModel.swift */; }; - 7D724AC64E9EE55C13B8F821 /* SBUCreateChannelViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6C4C7A650C4C84BC509FA4F /* SBUCreateChannelViewController.swift */; }; - 7F31CC0072F08EBAA5EC2FEC /* SBUMessageCellConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54B35EBFFCC37FE0D762F1D8 /* SBUMessageCellConfiguration.swift */; }; - 7F509955BA744BB5ABAF1E72 /* SBUOpenChannelModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AB44AEDA04823E0D2638560 /* SBUOpenChannelModule.List.swift */; }; - 7FA009B25A7CDC1E4508650D /* SBUChatNotificationChannelViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00F661E595066B39C1C6128B /* SBUChatNotificationChannelViewModel.swift */; }; - 82A8AE0E750D41A5913F431B /* SBUReplyConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 263D26B5E205CDC6CFA6C802 /* SBUReplyConfiguration.swift */; }; - 82E29388B5BA66C827667748 /* SBUUserProfileView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A34A78A8E359E64DF0023F69 /* SBUUserProfileView.swift */; }; - 8498D5CAC1900A97150EEC3C /* SBUGlobalCustomParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F3719BBE1D2128C2FCBEE3 /* SBUGlobalCustomParams.swift */; }; - 84DFA587AC1B587E29F6F795 /* SBUMessageInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 054ACAF67417362427AC37B3 /* SBUMessageInputView.swift */; }; - 8637BB74495AA4975B9F819A /* SBUPropertyWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4D6A26277621792FB7BF434 /* SBUPropertyWrapper.swift */; }; - 87AAEC65E72FBDD6493FB912 /* SBUFeedNotificationChannelViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F8B39348EFD70EFB2B92ECA /* SBUFeedNotificationChannelViewController.swift */; }; - 884519BA535D31EC22E50151 /* SBUModerationsModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = E66B0824D4290141AA043A92 /* SBUModerationsModule.List.swift */; }; - 887D4FAEA99259C95D1BAE9A /* SBUOpenChannelSettingsModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9471473B5B7A6E9DBDC8E05F /* SBUOpenChannelSettingsModule.List.swift */; }; - 89346179F3FC2CD3B5B73B33 /* SBUModerationsViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38CF300FD04B96579B0C1F06 /* SBUModerationsViewController.Deprecated.swift */; }; - 89EA13A76E7FCCC4B614D374 /* SBUQuoteMessageInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 811175E29B62CC51D08456AF /* SBUQuoteMessageInputView.swift */; }; - 89F576855C4A4C304F837E85 /* SBUCacheManager.Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE1ED28EA391C70A7828E73C /* SBUCacheManager.Config.swift */; }; - 8A4BD70709983ED1646B8CBF /* SBUOpenChannelSettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF925C91938FE084A6BBE723 /* SBUOpenChannelSettingsViewController.swift */; }; - 8AC1C0D2913275B3BE99F2AC /* SBUUserMessageTextViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E1E99C07C642C6A9B1C5EB4 /* SBUUserMessageTextViewModel.swift */; }; - 8AF1981BAC2E860C072117D7 /* SBUBaseChannelListModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D461B2DCB8A1BEDFBC8AC69 /* SBUBaseChannelListModule.swift */; }; - 8B8B5659262415DD655A7A23 /* SBUCommonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C51929570EE2668A2B29D86 /* SBUCommonItem.swift */; }; - 8DA4B6C647A90701542C858D /* SBUBaseChannelSettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE1101168F87535D4961C514 /* SBUBaseChannelSettingsViewController.swift */; }; - 8E7D5E3A56F4F3C4BDE6992A /* SBUReactionCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 31098E1F26A27A6DE4C671E6 /* SBUReactionCollectionViewCell.xib */; }; - 8EA74192A9100F2F97D244C4 /* SBUGroupChannelModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 413F9F17DF82A9C6C5E109F6 /* SBUGroupChannelModule.Header.swift */; }; - 8EC236CE217428FC109F6F59 /* SBUCreateChannelModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A2C66B16A6C3E9FA473932D /* SBUCreateChannelModule.swift */; }; - 8F1DA8219A12BC5F793FF2EC /* SBUMessageSearchResultCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A848ADDAD718074DB17CCBF /* SBUMessageSearchResultCell.swift */; }; - 91E5E3CCF01693B9D92B4B33 /* SBULayoutableButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CA0A271F4390F304577E0B6 /* SBULayoutableButton.swift */; }; - 92247BDFC5B804214FFB4B91 /* SBUMenuSheetViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5501D67CA2EE5205D821CB9B /* SBUMenuSheetViewController.swift */; }; - 9376B72DB1A7C1CEE42199F0 /* SBUUserNameView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4EED70D90E0E015CAAE43F6D /* SBUUserNameView.swift */; }; - 93CA0B625E118700B5ACBE61 /* SBUModerationsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44706646DA26FEB88A7CDA09 /* SBUModerationsViewController.swift */; }; - 95833B78ECB894EE10BFBB12 /* SBUBaseFileContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3AB8C46EE31D9837276A59C /* SBUBaseFileContentView.swift */; }; - 95EF5038E66658C169B88507 /* StringProtocol+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3F33EE259D61404759642AB /* StringProtocol+SBUIKit.swift */; }; - 97DD45C674A05376A5F92FE1 /* SBUChatNotificationChannelModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7787B27E7166DC56485A7ED /* SBUChatNotificationChannelModule.Header.swift */; }; - 9829F3939B53D76E23FC6770 /* SBUMessageProfileView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50CBF397951DFE5EEF62C30C /* SBUMessageProfileView.swift */; }; - 984DC2A9EF8895361819D5AE /* SBUCreateOpenChannelModule.ProfileInput.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C47BB18B53560739C61A709 /* SBUCreateOpenChannelModule.ProfileInput.swift */; }; - 98FA074952D8EE6E1EB0BE17 /* SBUCommonContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B21BF4E95339FAB0D513548 /* SBUCommonContentView.swift */; }; - 9904E96BB95FFFE41048C68A /* SBUBaseChannelViewController.Unavailable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14B90BC4712233622176AA2E /* SBUBaseChannelViewController.Unavailable.swift */; }; - 99315F509095613C8BDC7446 /* SBUMessageSearchViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31059518A200873E3E3C9C83 /* SBUMessageSearchViewModel.swift */; }; - 9A7449826A8944B2ABC114FF /* SBUFontSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F1070DDD483158A02A53D3A /* SBUFontSet.swift */; }; - 9AD7CD2429D42DE005D04EB5 /* SBUBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9C06AE8FDCECD30BAE3867C /* SBUBarButtonItem.swift */; }; - 9BE5978D63794E711F7649EC /* SBUModerationsModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39DB0E1FC09F7BEE3B835C1D /* SBUModerationsModule.Header.swift */; }; + 000CACD01097469ACB2CAEFB /* SBUInviteUserViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = B58C97A1BD425C578AA66DC8 /* SBUInviteUserViewController.swift */; }; + 040AC00D666FEB82F3FFDB40 /* SBUFeedNotificationChannelViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29418D3AF26BFD41B321D228 /* SBUFeedNotificationChannelViewController.swift */; }; + 042C9635081A44EE150A2CF9 /* SBUMenuSheetViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3130C6885B6F03030307296C /* SBUMenuSheetViewController.swift */; }; + 047F4F51DECFF7423BD47185 /* SBUBaseSelectUserModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E012D233A4916004E16FD46 /* SBUBaseSelectUserModule.Header.swift */; }; + 04F9189004FB7585BA47E5B5 /* SBUInviteUserModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DC457DEFD6198D5E8D3007A /* SBUInviteUserModule.Header.swift */; }; + 0545962D8795D49DD7E0336B /* SBUMessageInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8563175FA393EE9F3A03E57 /* SBUMessageInputView.swift */; }; + 0668F46B4893D6933B00F4D4 /* SBUTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C31E1EFE659E5D09CA47308 /* SBUTableViewCell.swift */; }; + 06ECEB7D5487DA195F0D4221 /* SBUOpenChannelUserMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DB1D3EBA4C715846778EC6F /* SBUOpenChannelUserMessageCell.swift */; }; + 073528B58D6C1FEB80F792C2 /* SBUMessageSearchViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52F765480752E5E845D98960 /* SBUMessageSearchViewController.Deprecated.swift */; }; + 07D194B17D376AA739A0C09B /* SBUQuotedFileMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA6F96A3047A27BEF5627452 /* SBUQuotedFileMessageView.swift */; }; + 0853423F7EB8FA80636CE64D /* SBURegisterOperatorModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BF8C4DE66C1A5FD674C9E97 /* SBURegisterOperatorModule.List.swift */; }; + 09EB9C063EBDA52408D4FA85 /* SBUCacheManager.File.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39AC484A4A814FC32054CB20 /* SBUCacheManager.File.swift */; }; + 0A76874314C5EDB5CF27503E /* SBUVoiceRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EE49605A85DA6FDED8BEC26 /* SBUVoiceRecorder.swift */; }; + 0AFB0082B232C63FCB5EAD8D /* SBUBaseChannelListModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = B79CEFAEACC1109FD77E340F /* SBUBaseChannelListModule.List.swift */; }; + 0DE8BACD977927C94C9D39B5 /* SBULoading.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74C6FD2E0756C4D65B85BB9C /* SBULoading.swift */; }; + 0E168BD89AFEE1AB43B551D5 /* SendbirdUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC322E550782BD7ABC5C5A58 /* SendbirdUI.swift */; }; + 0EBC6A2EF7C45FA4396955E9 /* SBUGroupChannelPushSettingsModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 569EED9F8138E48EE1FB3657 /* SBUGroupChannelPushSettingsModule.List.swift */; }; + 0ECEB4811AC08C6EC1C58528 /* UIButton+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 739CBC98741FA24F0A8C9FDD /* UIButton+SBUIKit.swift */; }; + 0EF5C869A39E9A3AB0FE2C7D /* SBUOpenChannelBaseMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 998EAB0A1CA280D46C7A96DE /* SBUOpenChannelBaseMessageCell.swift */; }; + 1083AC925BEBDCC967BBFBBE /* SBUQuotedUserMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C0A32577B5C0825ABAF8501 /* SBUQuotedUserMessageView.swift */; }; + 118C9119DEDDD0780158AF36 /* SBUModerationsModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = E03EB4C8431297CFB91A783C /* SBUModerationsModule.swift */; }; + 11DEF4B427846B6B42CBD489 /* SBULinkClickableTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D8E55F568EC9940CFD10CE3 /* SBULinkClickableTextView.swift */; }; + 124F9411334DD5B04C18CABB /* SBUBaseChannelListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42E9DD64B6C61EBD3C1C191A /* SBUBaseChannelListViewController.swift */; }; + 14D9707E23C9D1C1ABD0F328 /* SBUNotificationCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29D00CF158D63A4A17CE3A65 /* SBUNotificationCell.swift */; }; + 157C7AAF0965F96BFF92381D /* SBUCommonContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 947FA647A04DACCECD392EB9 /* SBUCommonContentView.swift */; }; + 15BAFC3F99DF359792234223 /* SBUCacheManager.Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E86D6B400BB6E8BD5722710 /* SBUCacheManager.Image.swift */; }; + 16E2BBE4C5189D9ED5C7EFF2 /* SBUMention.swift in Sources */ = {isa = PBXBuildFile; fileRef = B24F1F99A1E1A54F02289F24 /* SBUMention.swift */; }; + 18092E5DB401F7BD8F84B979 /* SBUMentionConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32C74D1F14FF4233F090D2C1 /* SBUMentionConfiguration.swift */; }; + 181961AB737738707FF49A17 /* SBUTheme.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3682CA27D369E792CC991916 /* SBUTheme.Deprecated.swift */; }; + 189142FB3B171C806586A3EB /* SBUOpenChannelCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 676FB7EC1C23C565E051E1F0 /* SBUOpenChannelCell.swift */; }; + 1A16645927BDB0FC3506C2FF /* SBUAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3BC8FA6C941BEA7A2B28C89 /* SBUAnimation.swift */; }; + 1A6A4368D78F144C5FE3ADBB /* Sequence+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9ED69F8BD57B20BC0053033 /* Sequence+SBUIKit.swift */; }; + 1AF19CF260897AA8EB457C4D /* SBUMessageThreadModule.Input.swift in Sources */ = {isa = PBXBuildFile; fileRef = 205D0369C7A73E519D8FC874 /* SBUMessageThreadModule.Input.swift */; }; + 1E38327A289906E31C165B2E /* SBUTemplateLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FDF11E883E7BE374B123C07 /* SBUTemplateLabel.swift */; }; + 1FF2063F7BE38ACBAC7F12B0 /* SBUCreateOpenChannelViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = B055EE22F478835A00CA165F /* SBUCreateOpenChannelViewModel.swift */; }; + 20A0F7ED95202731B3B706F1 /* SBUOpenChannelModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20E97065B02C3EF653AA9BFE /* SBUOpenChannelModule.List.swift */; }; + 20FDE641F6D8BD86665AAAFB /* SBUGroupChannelSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = B40B4ED0ED2BCE78D3D67A5B /* SBUGroupChannelSettingsViewModel.swift */; }; + 21248F9B544715399BB59AC8 /* SBUReactionCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = CE39F327CFF82B3D46407736 /* SBUReactionCollectionViewCell.xib */; }; + 22E71F75DE0526CEF408198E /* SBUNavigationTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F259F22451C2635E648DB93C /* SBUNavigationTitleView.swift */; }; + 253D0D993938598848D32AA0 /* SBUQuotedBaseMessageViewParams.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 284F7DC346769776D8EE30DE /* SBUQuotedBaseMessageViewParams.Deprecated.swift */; }; + 2608EBAA49918C3643D0AF9C /* SBUMentionLimitGuideCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67D90A5B64F80F05DFDF149D /* SBUMentionLimitGuideCell.swift */; }; + 26BCF5E0D8307EFF1479A86F /* SBUGroupChannelListModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FBD562FCA8AC842F2A15488 /* SBUGroupChannelListModule.List.swift */; }; + 27685B0AE48C8153E1023439 /* SBUChannelTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4F25300A0550B56CB31D94 /* SBUChannelTitleView.swift */; }; + 28E47774922D4A5DD7F46C87 /* SBUOpenChannelSettingsModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C279AF5AB0BD07E8440EAA6 /* SBUOpenChannelSettingsModule.swift */; }; + 2A3893E35AFAFA3F463186B4 /* SBUCreateChannelViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2817D981E3127812732F6CB8 /* SBUCreateChannelViewModel.swift */; }; + 2B3F901C52D232B9568A3192 /* SBUMessageDateView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C7D209B2820641E5ACCB37D /* SBUMessageDateView.swift */; }; + 2DD6A5A8EDB69E319F1F5193 /* QuotedFileCommonContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEE70322BA0838D4C1B544A3 /* QuotedFileCommonContentView.swift */; }; + 2DDFE4F15167414910410405 /* SBUModerationsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0BE4CD4C3C0C4D2B2386F7E /* SBUModerationsViewModel.swift */; }; + 2E68F8E06E59941129AE5B87 /* SBUCoverImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B50EC08D2D3E676F56B6612 /* SBUCoverImageView.swift */; }; + 2F73D3F2D238614FB89D11F1 /* SBUMessageSearchModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AC43A90FFF9881B02D92292 /* SBUMessageSearchModule.Header.swift */; }; + 2FC9446525D251FBA1F742A3 /* SBUUserListModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56400AFB607A5052FA0BD185 /* SBUUserListModule.swift */; }; + 30392C85DEAF3CE88D548878 /* SBUViewModelDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF0927F43E9500DAD99B1F41 /* SBUViewModelDelegate.swift */; }; + 30BF2919A28ADCE92DEAAA98 /* SBUVoiceMessageConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ACB660983DEA2E33672700B /* SBUVoiceMessageConfiguration.swift */; }; + 30C8B05E1826EA01EC1AEAA6 /* SBUGroupChannelSettingCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC22B1C48269D6887D5C6AC7 /* SBUGroupChannelSettingCell.swift */; }; + 32FEBD22020CD4E292657CA3 /* SBUOpenChannelModule.Input.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6441CB53C5B7F5B43595FDE0 /* SBUOpenChannelModule.Input.swift */; }; + 33C6E7FF06F62A1DF1C67EB5 /* Float+SBUKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A4CDAA5185849CF0B3DE396 /* Float+SBUKit.swift */; }; + 33E6EF1A88D63B34898974D8 /* SBUChatNotificationChannelViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2ED7DEADCFAF2881A348FAC5 /* SBUChatNotificationChannelViewModel.swift */; }; + 33FBA35E96743CA0309E7E73 /* SBUOpenChannelSettingsModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB34A3801FB204563305C2CF /* SBUOpenChannelSettingsModule.Header.swift */; }; + 34A71C63441341FD42C3863C /* SBUGroupChannelSettingsModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF1B9B893196BD000B0374EB /* SBUGroupChannelSettingsModule.Header.swift */; }; + 35C898BA21587009945F7B48 /* SBUBaseChannelModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35DD937013067D14126BD0F9 /* SBUBaseChannelModule.List.swift */; }; + 36551354B7A662BEA62EFEDC /* SBUTheme.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47BA6ABD5DA3E6ADC49A39DA /* SBUTheme.swift */; }; + 36A41030BCC2C122A954D3AE /* SBUCardListData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42B5CF5B20F6251DC7AD977B /* SBUCardListData.swift */; }; + 372298C984F23B5220932E58 /* SBUConfig.GroupChannel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 863134470ACE11D7C93E6849 /* SBUConfig.GroupChannel.swift */; }; + 377CCEE2C0EF4BF2CA1E9136 /* SBUModerationsViewModel.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6FA32E6CC53ADE894C5E3C2 /* SBUModerationsViewModel.Deprecated.swift */; }; + 37B2E3C0B4AA93B4B3CB99C3 /* SBUUser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46CBE3AE048714D2802A7BD3 /* SBUUser.swift */; }; + 38319DC11A86E5B1328E9A18 /* SBUMentionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB7FD2953F4411650379504E /* SBUMentionManager.swift */; }; + 392657B703FD4227B7C7DA01 /* SBUQuotedMessageViewProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B67E99871234741111585AB /* SBUQuotedMessageViewProtocol.swift */; }; + 3970B9B3562C0E7802CEF7EC /* SBUBaseChannelSettingCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE805A930D253FCF60687D45 /* SBUBaseChannelSettingCell.swift */; }; + 3A0D20C2B8AED5D983A6B5F6 /* SBUBaseViewController.Unavailable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0119C93BB5816A74773D5D8F /* SBUBaseViewController.Unavailable.swift */; }; + 3B6231659F40565A993CD51F /* SBUGroupChannelModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AE1D0983A2E41BA92784721 /* SBUGroupChannelModule.swift */; }; + 3C583A45205F13901177F1C2 /* SBUDebouncer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49830EE06BF38AF718203A9A /* SBUDebouncer.swift */; }; + 3D4817ED4CB1A2D71A4D1E3C /* SBUOpenChannelContentBaseMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = E602E52348E231C64311CCD0 /* SBUOpenChannelContentBaseMessageCell.swift */; }; + 3D5BE2677DC8EF2C3E2B2F62 /* SBUNotificationTimelineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9783CDA8931ACFBDD9CC963 /* SBUNotificationTimelineView.swift */; }; + 40BD7DB18A4FECDDF31EA12A /* SBUView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8ABD5E2AED8CE130A331BA62 /* SBUView.swift */; }; + 40BF3A658FCB972817CAFEBE /* SBUQuoteMessageInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB6023DE92499C843C275DA9 /* SBUQuoteMessageInputView.swift */; }; + 41E228FA6BBF9AF58B53C92B /* NSObject+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECC0DFA42EDC52B376BF15C4 /* NSObject+SBUIKit.swift */; }; + 4251991ECE489097D609321B /* SBUFeedNotificationCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16817960D797451C3A427709 /* SBUFeedNotificationCell.swift */; }; + 425F3420D1FB75CD1F84CE04 /* SBUQuoteMessageInputViewParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7BF8C9833FC3A738CA354DA /* SBUQuoteMessageInputViewParams.swift */; }; + 42B00790CD9291DA34A85E85 /* SBUGroupChannelPushSettingsModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = B51FAA8B8207EC8FCD83152F /* SBUGroupChannelPushSettingsModule.Header.swift */; }; + 43BA794B75B76D296E77E067 /* SBUOpenChannelViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1FDEB5C1032B596C9A1E61C /* SBUOpenChannelViewController.Deprecated.swift */; }; + 43C257E0BC1811F69BF7D17B /* SBUMessageProfileView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F62ACD260B8C3CAD82BE2CE3 /* SBUMessageProfileView.swift */; }; + 4494C9C48752F09FB91F781A /* SBUCacheManager.Template.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3CEAD49823EF75C7268A6AA /* SBUCacheManager.Template.swift */; }; + 44D54B69AA4427E6EA6E7CA0 /* SBUToastManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AA06BE8E10B6BD3B4454F74 /* SBUToastManager.swift */; }; + 4537D65D3486E290AF853C6B /* SBUUserListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 059644F1D75A802598A9BDD8 /* SBUUserListViewController.swift */; }; + 459D4ECE7A959AE5164E6AF9 /* SBUMessageThreadModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80CA5C17BDC94350D7BD209B /* SBUMessageThreadModule.Header.swift */; }; + 463736BF64584B26B6422E2D /* SBUOpenChannelModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF54C51E054CA6E5FBCE1B78 /* SBUOpenChannelModule.swift */; }; + 468AE7384E6BDAA08B2C16FB /* CommonProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 878B201A67E39BF122C1A9BD /* CommonProtocols.swift */; }; + 48889795BF90523C6409984A /* SBUBaseChannelViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = D79DC8911F69E0FF96EC8D0A /* SBUBaseChannelViewController.Deprecated.swift */; }; + 49FA6D946C47B10ACD2AC34A /* SBUNotificationNavigationTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12EF0CF39774DF30BA37B0DE /* SBUNotificationNavigationTitleView.swift */; }; + 4A0BB58375B8DA2B278416D2 /* URL+SBUKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 495B34282ADF94161150ADA8 /* URL+SBUKit.swift */; }; + 4A1860FE67031674485212D6 /* SBUOpenChannelListModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC78BFD88CF1649749386DC3 /* SBUOpenChannelListModule.Header.swift */; }; + 4A251932DACAABEBBDD7BE9F /* SBUActionSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00D7327430E43A8DBA0C2A7D /* SBUActionSheet.swift */; }; + 4A76019E77806EABAA2B98F4 /* SBUBaseChannelViewController.Keyboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36D26EF086827A1D7008E4E5 /* SBUBaseChannelViewController.Keyboard.swift */; }; + 4A8B91AD97A07485EF64669C /* SBUSelectableStackView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2B728AE4E9785DEB6BB29C0 /* SBUSelectableStackView.swift */; }; + 4B229D072F1BF04C7951C180 /* SBUMessageThreadViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB65A828D9D6AE25D6CE2E6B /* SBUMessageThreadViewModel.swift */; }; + 4D24D96C0DF7FBEAB1DD8FCE /* SBUCreateOpenChannelModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 006B06B77B5FD1393884CD6E /* SBUCreateOpenChannelModule.Header.swift */; }; + 4DA7E2F08CDCEB82B487979E /* SBUBaseChannelSettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91BDECF3751DFD038B66CB5F /* SBUBaseChannelSettingsViewController.swift */; }; + 4EFE2B98E8607E454CDB8FB7 /* SBUCoverImageView.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 282FEBEB6DECCB7D3CAB883D /* SBUCoverImageView.Deprecated.swift */; }; + 4F2131C9018C06A80BAA7955 /* SBUCreateChannelViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8566F29BC7FCCE36C87AA4B /* SBUCreateChannelViewController.swift */; }; + 4F4B4F5AFE50055AE1C92566 /* SBUOpenChannelViewController.Unavailable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2AC75E26C413053C406605A /* SBUOpenChannelViewController.Unavailable.swift */; }; + 4F5CF97AF96B9478ABAE25BA /* SBUVoiceFileInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 290A3B248A5F7DCC58944BA4 /* SBUVoiceFileInfo.swift */; }; + 4F81C6904916898D1197D2ED /* SBUConfig.CodingKeys.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D8FDE3655125635A2283B4A /* SBUConfig.CodingKeys.swift */; }; + 501BB478942C93F7FFCA4259 /* SBUMessageInputMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D74683E239E77487D1F3EF6 /* SBUMessageInputMode.swift */; }; + 514A2B5407B92EEF8C36F49D /* SBUReplyConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6B64E11A6EC2642D288EE03 /* SBUReplyConfiguration.swift */; }; + 52FDB8D18F3AD7CFFC9E1359 /* String+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BFB229304E65D0A05E99F27 /* String+SBUIKit.swift */; }; + 53E951C4CFB39637D7046C02 /* SBUCacheManager.Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90E3CB818E62FB7E4E0EC75 /* SBUCacheManager.Config.swift */; }; + 549D93BAF313A9B9E0EE5C6A /* SBUMenuCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62BAC5FB8AF1858429E2D1A9 /* SBUMenuCell.swift */; }; + 54A0E27E3729EF49D89B5496 /* SBUNotificationChannelManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96A6DE7DF22D2F20741DAB17 /* SBUNotificationChannelManager.swift */; }; + 59BA55190BFCADC3ABA8D2D6 /* SBUGlobals.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA12137A67566C6A8BA3E7DC /* SBUGlobals.Deprecated.swift */; }; + 5A5AF9D8E52DEDA8773102EF /* SBUOpenChannelModule.Media.swift in Sources */ = {isa = PBXBuildFile; fileRef = B61CC39B41A1B18E23FB3490 /* SBUOpenChannelModule.Media.swift */; }; + 5B4BBC87EB848E478D5FFF03 /* SBUPendingMessageManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 967EBB2B2AE20C3A6F96C4A5 /* SBUPendingMessageManager.swift */; }; + 5B6DD325AB7CC63E76B2C0EE /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 54957F4DA19C8957661E8522 /* Debug.xcconfig */; }; + 5C0B594E63EBCDCB8D5CC574 /* SBUFileMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B993F2E96BC3680EE86BBB /* SBUFileMessageCell.swift */; }; + 5C75BBF75EC702DB93AA63C6 /* Array+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BD9ACDB8B556D7561B46E27 /* Array+SBUIKit.swift */; }; + 5C81A470A71CFA952234DE71 /* SBUBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607F27DD6B7985B07B2748BE /* SBUBarButtonItem.swift */; }; + 5D583A33970D3FC6102CAF43 /* SBUFileViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8B60F5B32A6F17AB90B9332 /* SBUFileViewController.swift */; }; + 5E05158AF5E435510EBFD14F /* SBUParentMessageInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDC364241265D45D3B63E9F6 /* SBUParentMessageInfoView.swift */; }; + 5E94D81C79656476D2CF1065 /* SBUUserCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 340099D46A47C1BCDE1F66BA /* SBUUserCell.swift */; }; + 5FF91091B7575AB61CF27CB2 /* SBUOpenChannelSettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99128649F63B6F02C7BB7D3E /* SBUOpenChannelSettingsViewController.swift */; }; + 60AA894E9A57EAD3764E36BE /* SBUChatNotificationChannelModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B302EFC43477D2B3AB1934B /* SBUChatNotificationChannelModule.Header.swift */; }; + 610C65D08A001E05D8082F0D /* SBUModuleSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 842996646FD071AC3E39C25E /* SBUModuleSet.swift */; }; + 61DF9857A2FC8A3120747C54 /* SBUGroupChannelListModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B84323AFC7847004297D297 /* SBUGroupChannelListModule.swift */; }; + 62497F263AB61382EF74427B /* SBUContentBaseMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F2CC2CD59ADEFE1C47A0587 /* SBUContentBaseMessageCell.swift */; }; + 62684DABBF2AF0E5BA80BEF4 /* SBUGroupChannelViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7816F92501F6FF0E58DE1648 /* SBUGroupChannelViewModel.swift */; }; + 62764E2C277F29C22371B82A /* Date+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0364CA5ABCAC9FB36CFC481F /* Date+SBUIKit.swift */; }; + 629A76C3E133A343D7BD7E18 /* SBUBaseChannelModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD6216D37C4D9FCF994B249 /* SBUBaseChannelModule.Header.swift */; }; + 64BBFBF37B320E4536A9B31B /* SBUOpenChannelAdminMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 803DAAC799F22E51FCC2B586 /* SBUOpenChannelAdminMessageCell.swift */; }; + 64DD1B840C1E92493A392F7C /* SBUChannelSettingsChannelInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 886CD695D193D2A90F58239A /* SBUChannelSettingsChannelInfoView.swift */; }; + 652FE365791594A5C207041C /* SBUDashboardConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9D8A94CAE86D56366A77D39 /* SBUDashboardConfig.swift */; }; + 65E24546CFDEAE843373C9B6 /* SBUUserMessageTextViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 525830066E3E7E9F709999CC /* SBUUserMessageTextViewModel.swift */; }; + 65F33F4A16108B591B5BBC3E /* SBUTheme+Type.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF5F090F8DA3E9A30F950A4A /* SBUTheme+Type.swift */; }; + 66FE3862AA3392E131E6CE34 /* SBUUserMessageCellParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D303F8D1B6979687B61E9CE /* SBUUserMessageCellParams.swift */; }; + 6717F9270C5E972BCE5865B3 /* SBUCreateChannelModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BDA439B4E0DEA464325459D /* SBUCreateChannelModule.swift */; }; + 674DD5B63C8C03550078951B /* SBUUserListModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F0ABCF8C4D0C9E738CCF03B /* SBUUserListModule.Header.swift */; }; + 6836CEE764DF31BA33E6D95D /* SBUGlobalCustomParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75063E61A0E70ABA99BBACD0 /* SBUGlobalCustomParams.swift */; }; + 683F872E80FD02128D7FEDBE /* SBUModerationsViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E53D23CEF9C69F22BF4A33D /* SBUModerationsViewController.Deprecated.swift */; }; + 688B0C5B60294418B9AA1624 /* SBUBaseChannelSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21307B9A4C62110BC9E4FF1A /* SBUBaseChannelSettingsViewModel.swift */; }; + 697202A7FD439E7892A3E98F /* Base.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 10CBDC8B7F93CB027DDF6956 /* Base.xcconfig */; }; + 69B2DC493B67E96852479AC7 /* SBUReactionCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76ADA5DE8B16DA0B5BDBC47F /* SBUReactionCollectionViewCell.swift */; }; + 6A7BE5E64EAAC90D783ADB6D /* Data+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E60C6455A8005E71FA6A071 /* Data+SBUIKit.swift */; }; + 6BE6C6A70BBA87B2675EA1C8 /* UIApplication+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95A2C12F22B584E4CAD12A5F /* UIApplication+SBUIKit.swift */; }; + 6C44C0894E7BE9D28491A344 /* SBUCommonViewControllerSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5213C262952F4E01D4BC34C /* SBUCommonViewControllerSet.swift */; }; + 6D83159F34075B212DAF6F42 /* UIImageView+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = D585FB7AECB9FEF173CB309E /* UIImageView+SBUIKit.swift */; }; + 6E73591FF7FE836B4DE90A60 /* SBUQuickReplyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54D008A6338A957FE7533AE0 /* SBUQuickReplyView.swift */; }; + 6FD86EB779E730E1CF50EF18 /* SBUOpenChannelListModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F1207EA4BDF2AC9D83D5361 /* SBUOpenChannelListModule.swift */; }; + 70E474AF558721E5CE37BCE7 /* SBULogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABA75E67A5E3252B93F5481C /* SBULogger.swift */; }; + 729E7DC45EC8F9120B66754F /* SBUBaseChannelSettingsViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFECD193321E1384EB4D5FD5 /* SBUBaseChannelSettingsViewController.Deprecated.swift */; }; + 733DBE012CBF279427470798 /* SBUBaseChannelSettingsModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F3BF87AC6D4B061EFF48654 /* SBUBaseChannelSettingsModule.swift */; }; + 73AA383CA0E2E41709DFE0A5 /* SBUParentMessageInfoReactionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7DE405EF1C38D347A64CEA3 /* SBUParentMessageInfoReactionView.swift */; }; + 73DDCA9CDFF65BDDFA747FEC /* SBUUnknownMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFBCC2F9E84E4B121C0F3F94 /* SBUUnknownMessageCell.swift */; }; + 74E12E2CC9244692237E46D8 /* SBUGroupChannelSettingsModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17891AFBA0475E8476D8CD24 /* SBUGroupChannelSettingsModule.List.swift */; }; + 77F79A2724CE2000C20B139E /* SBUBaseChannelListModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = A256D76EF1C0017F91AD806D /* SBUBaseChannelListModule.Header.swift */; }; + 7B64210DDD6C1AE3CCC87BED /* SBUNewMessageInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 964BD3A3680997F100F6EF8C /* SBUNewMessageInfo.swift */; }; + 7BC91282F808B902473EA1D3 /* SBUGroupChannelPushSettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11572D2FFDE52AB3029C09A0 /* SBUGroupChannelPushSettingsViewController.swift */; }; + 7C1A53ABC8487F7EE0B3F830 /* SBUPhotoAccess.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4171AA7EE334F21E87D848D2 /* SBUPhotoAccess.swift */; }; + 7DBD585EEF342A21DAF6D16F /* SBUMessageThreadViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1746A9DBA42951921198945D /* SBUMessageThreadViewController.swift */; }; + 7DD98F7DA23AB360DCB708EB /* SBUConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC8E56B3F8660C7BC32121D /* SBUConfig.swift */; }; + 7DF2D3D5F4651D2EAFEFD14F /* MessageTemplateRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62500E55CD643BFCE52788C6 /* MessageTemplateRenderer.swift */; }; + 7E0061099FA15E4F09C70DC7 /* SBUIconSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2759679D7C60BE88C8FC058C /* SBUIconSet.swift */; }; + 7E252D4FAF2F74ACABEAF8C9 /* SBUNewNotificationInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = E45F58205CE0771546E15364 /* SBUNewNotificationInfo.swift */; }; + 7F09704A2781D4A09347D0FD /* SBUConstant.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEF370AEF4C4B288DAE946B4 /* SBUConstant.swift */; }; + 7F8A068071140B3AC49B138D /* SBUPermissionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 143457A990EED0E3D1728475 /* SBUPermissionManager.swift */; }; + 80944E51C3343E6EFE341FE9 /* SBUAdminMessageCellParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = 356EA68A1B4B5838CBCA214A /* SBUAdminMessageCellParams.swift */; }; + 81D144689E2E0D4D38334D4A /* SBUModerationsModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C92B51A543BE0A90923D5EB /* SBUModerationsModule.List.swift */; }; + 83FE42EE9BC4C0A221701797 /* SBUGroupChannelListViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE300172AE54080E1B71226B /* SBUGroupChannelListViewModel.swift */; }; + 848BC59A0055CD406B104199 /* SBUConfig.Common.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03509DD13C216C73EEA96E76 /* SBUConfig.Common.swift */; }; + 8525A13D478D47DD84F45A25 /* SBUGroupChannelSettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4423B75C435CE393B7A3719 /* SBUGroupChannelSettingsViewController.swift */; }; + 85B31192167BCDC93FEC88B1 /* Release.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = C4965DAD4F7AE10C891037CE /* Release.xcconfig */; }; + 865410ABAD61A0AB3A5BE060 /* CGSize+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8738E119A036EA61AF4DDB3 /* CGSize+SBUIKit.swift */; }; + 869B5D0C4393E15436626D11 /* SBURegisterOperatorModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA921895742D477C03285410 /* SBURegisterOperatorModule.swift */; }; + 86AB7D1D9541661027D3FD0A /* SBUEnums.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6843194E27B667E8E28E0BA /* SBUEnums.swift */; }; + 86C448E4C3945343102F034A /* SBUBaseChannelViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A17C41AA0B127D231588700 /* SBUBaseChannelViewModel.swift */; }; + 87BCFBFEDF6B024DA2016870 /* StringProtocol+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75D12C0907D566904D9C519A /* StringProtocol+SBUIKit.swift */; }; + 8958060EE5118E0AC0B7DF13 /* SBUOpenChannelSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F9BDEA7D15345561095A1E6 /* SBUOpenChannelSettingsViewModel.swift */; }; + 8A1FC468C6EBB58DEFE1928A /* SBUUserMessageTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBEAD59718531A5136B5F777 /* SBUUserMessageTextView.swift */; }; + 8A5032533CD26E8898AA8B1E /* SBUGroupChannelViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = F55CF87153DF8E68989C6E5C /* SBUGroupChannelViewController.Deprecated.swift */; }; + 8B2F74C8A7F82CAD6CF4C813 /* SBUGroupChannelSettingsModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 352A9863F61A2790C87F88B5 /* SBUGroupChannelSettingsModule.swift */; }; + 8B91BCDB0055429AF9E05CC0 /* SBUUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 786FDEE6E500050CB8615F41 /* SBUUtils.swift */; }; + 8BBD05314A9A1ABC32B87F51 /* SBUBaseChannelViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFB39820FD59D283F6F24B2A /* SBUBaseChannelViewController.swift */; }; + 8D347B2C7CDBC98F1ADBD48B /* SBUAdminMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF23F8D9A4BEECD7166746C8 /* SBUAdminMessageCell.swift */; }; + 8DAA47EA36788D2C97D01A95 /* SBUVoicePlayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 614BB93926D5D70FC0E58976 /* SBUVoicePlayer.swift */; }; + 8EC57258DFEFDEAD965504B4 /* SBUCreateOpenChannelViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0F2F1CCFFC507D9526BF8AC /* SBUCreateOpenChannelViewController.swift */; }; + 8F39DDDF4AF900D2B72F822C /* SBUOpenChannelViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82E581E6B59E82A41AB918CE /* SBUOpenChannelViewModel.swift */; }; + 8FA2500DCCB283E2F75BDE44 /* SBUMessageSearchModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 368CE9BFF196247B5D1E3AD8 /* SBUMessageSearchModule.swift */; }; + 90036F9C88EB982C894056B6 /* SBUModerationsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A78CA74082BCE0BF78707F0 /* SBUModerationsViewController.swift */; }; + 904ACA3583B5C738EB64B16B /* SBUCommonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E5019034DBEDB9BDDE37851 /* SBUCommonItem.swift */; }; + 91CBB45E5C3A7D9F6A8D5315 /* MessageTemplateParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49DC53532B8EF75EEDD53CFF /* MessageTemplateParser.swift */; }; + 91F470EAA269360C2C57DA59 /* SBUStringSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35555F2C406CCFE6E5612D58 /* SBUStringSet.swift */; }; + 91F8F344608EF48FB10D02FE /* SBUCreateChannelViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5294F8454186C2623207EF2 /* SBUCreateChannelViewController.Deprecated.swift */; }; + 92FD51959EFB9735A3243541 /* SBUOpenChannelListViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A573341603D1272B5BBEA9D0 /* SBUOpenChannelListViewModel.swift */; }; + 9495618A76EFD99F02BAFC82 /* SBUBaseSelectUserViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ADE52523AC0CA4484EE6A1B /* SBUBaseSelectUserViewModel.swift */; }; + 9552CD72D86F06D4189166EE /* SBUBaseSelectUserViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CF834D3E9056FDB3CB27320 /* SBUBaseSelectUserViewController.swift */; }; + 9579216D3C35A1B9E61B58C9 /* SBUMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C71EE0DCA4B5108CED79395 /* SBUMenuView.swift */; }; + 9610D00DCAA1B0FC51087E3B /* UIStackView.SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D028BDC8A47AAA486573102 /* UIStackView.SBUIKit.swift */; }; + 96859F6F4ACCAC5131E38CD2 /* SBUSuggestedMentionList.swift in Sources */ = {isa = PBXBuildFile; fileRef = B53AEE3091EA5ACDDB661ADE /* SBUSuggestedMentionList.swift */; }; + 96DEF3BF271E994351EEE328 /* SBUViewLifeCycle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9782FEF03E2E566FD885B135 /* SBUViewLifeCycle.swift */; }; + 977953D54CBEF25B57973CF5 /* SBUQuickReplyOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2FA38DBE0FC75FDB570EF67 /* SBUQuickReplyOptions.swift */; }; + 978F38F55EAA1C272B2C5DB6 /* SBUChannelInfoHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE2D08C19AF668E9F2DB696A /* SBUChannelInfoHeaderView.swift */; }; + 986AD031E568FF146ED73F5B /* SBUInviteUserModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F0361EDB6915AF2F627431D /* SBUInviteUserModule.List.swift */; }; + 9879CB67F52DE1D5CDA00067 /* SBUMessageThreadModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 830455C9D718DDAB13F02345 /* SBUMessageThreadModule.swift */; }; + 99FD78ED0C79BAA2D22E04C3 /* SBUEmptyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29960A3C98ECF43AF2F1A6A3 /* SBUEmptyView.swift */; }; + 9B617AA62F39FA7EEB096703 /* SBUConfigManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D17261C2934B0174766D53D /* SBUConfigManager.swift */; }; 9C037E2E280432DB00059696 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C037DD4280432DB00059696 /* ViewController.swift */; }; 9C037E2F280432DB00059696 /* UILabel+Ext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C037DD7280432DB00059696 /* UILabel+Ext.swift */; }; 9C037E30280432DB00059696 /* UIImageView+Ext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C037DD8280432DB00059696 /* UIImageView+Ext.swift */; }; @@ -240,27 +237,25 @@ 9C3EBE2328091D2A00B5366B /* NotificationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C3EBE2228091D2A00B5366B /* NotificationService.swift */; }; 9C3EBE2728091D2A00B5366B /* NotificationService.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 9C3EBE2028091D2A00B5366B /* NotificationService.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; 9C5DCD49242AFA7C00C41106 /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9C5DCD48242AFA7C00C41106 /* UserNotifications.framework */; }; - 9DDEA46E0A713006A8D67927 /* SBUAdminMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8E99652BDFF94AC1960E864 /* SBUAdminMessageCell.swift */; }; - 9DE2A8A9E4D812DC139D3B9B /* SBUBaseChannelViewController.Keyboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C7A7D00853030A5B8CC35E6 /* SBUBaseChannelViewController.Keyboard.swift */; }; - 9E805C61A20E9DA322665214 /* SBUModerationsViewModel.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD182802F8956D312B983165 /* SBUModerationsViewModel.Deprecated.swift */; }; - 9F2A65E1D0CAC6DAFF67AD60 /* SBUQuotedUserMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B11A1A8D201454F7017BA22 /* SBUQuotedUserMessageView.swift */; }; - 9FAAA337E9855CB4E09F9101 /* SBUNavigationTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD03322C5147411C0251EBA6 /* SBUNavigationTitleView.swift */; }; - 9FE3E7C9DF3A279FFA065D0B /* Data+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8830A152490D77903A80228 /* Data+SBUIKit.swift */; }; - A06B2B5A4BD5966BF8D1994F /* SBUOpenChannelFileMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E66C47995F9CA97AD3BE514 /* SBUOpenChannelFileMessageCell.swift */; }; - A0B9535541C4C97B66CD31FF /* SBUDateFormatSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = A933C3DBDBBCA168BEA58E8A /* SBUDateFormatSet.swift */; }; - A0DE6B12A8955CF2274AAD97 /* SendbirdUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 609AD383D4557FDD55CD9CF7 /* SendbirdUI.swift */; }; - A1AD0BE273C54C5FCEB6C91C /* SBUTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 934234A0EF4D235264363528 /* SBUTableViewCell.swift */; }; - A3DE3AD63B6E587C07269BEA /* SBUBottomSheetController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBCE026F3180A4CF25EA3251 /* SBUBottomSheetController.swift */; }; - A405E011E4E23B4E0F202563 /* SBUMessageThreadViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50C104A47B01D17271BB9FA7 /* SBUMessageThreadViewController.swift */; }; - A469040E768D7CE086963282 /* SBUNotificationTimelineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A121C887E4DA50B514B0B9E3 /* SBUNotificationTimelineView.swift */; }; - A48ECAFCEBD9FC58F454783E /* SBUOpenChannelMessageWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 029D53831549FA6E8482C658 /* SBUOpenChannelMessageWebView.swift */; }; - A4B1B64C51E1995B1E94C338 /* UINavigationController+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B81D08012A06BC2BBB3EB3E /* UINavigationController+SBUIKit.swift */; }; - A59EB3BBD05BAF173DBC7CBD /* SBUAvailable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A48B77FA954F439F9C6FAFA /* SBUAvailable.swift */; }; - A5EA172A6592BA1437D8C669 /* SBUCreateChannelModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F3C19D9A5CB31FE69B5177F /* SBUCreateChannelModule.List.swift */; }; - A67F5F0C146D6FEFC5EFD7DC /* SBUEmojiListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51F80EA2DDD56D8FAEB78617 /* SBUEmojiListViewController.swift */; }; - A6A5B9D68A193DDF27B9BF61 /* SBUUserCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CCE5C3D07F1E31614E55CC6 /* SBUUserCell.swift */; }; - A6EC32CB87A0D0ECAC5A58F5 /* SBUGroupChannelListModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = F208FB4E87F4F52277A869AC /* SBUGroupChannelListModule.swift */; }; - A80A0202777B8AC4D3C1A296 /* SBUConfig.OpenChannel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D9CE8D4093A517E597EE409 /* SBUConfig.OpenChannel.swift */; }; + 9CFEB39EF9EE507E10F83844 /* SBUOpenChannelListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B5894CD5513ACF49D2F050B /* SBUOpenChannelListViewController.swift */; }; + 9E2104B44A2917F6D2BB24A0 /* SBUOpenChannelModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A489494BAC41C18B23BA9F4 /* SBUOpenChannelModule.Header.swift */; }; + A1445E3D526FE017018D66BE /* UIView+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 062312A9D9F2CD98F6F8161F /* UIView+SBUIKit.swift */; }; + A333B991838310F5CD7FC0F0 /* SBUCreateChannelModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05CBB523FF393279372DC16F /* SBUCreateChannelModule.List.swift */; }; + A3AE712CDD9E2893481D4C29 /* SBUBaseMessageCellParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD084546421454A61DA3506F /* SBUBaseMessageCellParams.swift */; }; + A4289B597E9F69D130B3CFFB /* SBUCacheManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5F3ACE63ED31B56A3CF59B8 /* SBUCacheManager.swift */; }; + A471857472D83EA04CF1A4E6 /* SBUConfig.OpenChannel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 172AC5FDCDD396336908039A /* SBUConfig.OpenChannel.swift */; }; + A499E0D65FA28C2FC35C23FF /* SBUMessageSearchViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3BADBDCA1E4F804594E28EE /* SBUMessageSearchViewController.swift */; }; + A4B8C416633C79F6E8533EED /* SBUGroupChannelViewController.Unavailable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CFB7118812FC29ED6D727ED /* SBUGroupChannelViewController.Unavailable.swift */; }; + A50E2EF5E922E8069027C3B6 /* SBUBaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 946AB698F489745873A4D90F /* SBUBaseViewController.swift */; }; + A5842F5B9667C4FBC7F33129 /* SBUImageContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74C3E8B1893DF7C97B9FADF9 /* SBUImageContentView.swift */; }; + A5B7E72C6368FCDD74AEF1B8 /* SBUVoiceMessageInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F01E1B2674C8B83CCC103B21 /* SBUVoiceMessageInputView.swift */; }; + A64AB13CA248A98D0201BCDC /* SBUOpenChannelListModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = C318E1D97FD014498F1904C4 /* SBUOpenChannelListModule.List.swift */; }; + A66046B502CB0BCA5315A64E /* SBUOpenChannelSettingCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 062354D4B0C81C7FE0CA82E3 /* SBUOpenChannelSettingCell.swift */; }; + A68239E92EEFA809C637410D /* SBUGroupChannelModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DFEB8B37E6B92819455E5C5 /* SBUGroupChannelModule.List.swift */; }; + A69015BBFF824DB7B074166F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = EA962A26B5F0AB8ACE60536B /* Assets.xcassets */; }; + A700689413C6A94E6851A772 /* SBUOpenChannelCommonContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A4D825ADA8BB2A7CEBEAB90 /* SBUOpenChannelCommonContentView.swift */; }; + A7CEC0069CF4635ED0F63B97 /* QuotedFileImageContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 957C656CFD0DBCD44FA988F8 /* QuotedFileImageContentView.swift */; }; + A809E26409FD8039D8AA5A0C /* SBUCardListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 254AE3883C6081BD559CCBB4 /* SBUCardListView.swift */; }; A93AE87B2A383CAA00AFFF9C /* CustomBaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A93AE84F2A383CAA00AFFF9C /* CustomBaseViewController.swift */; }; A93AE87C2A383CAA00AFFF9C /* ChannelListCustomManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A93AE8522A383CAA00AFFF9C /* ChannelListCustomManager.swift */; }; A93AE87D2A383CAA00AFFF9C /* InviteUserCustomManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A93AE8532A383CAA00AFFF9C /* InviteUserCustomManager.swift */; }; @@ -294,118 +289,133 @@ A93AE8992A383CAA00AFFF9C /* CreateChannelVC_UserList.swift in Sources */ = {isa = PBXBuildFile; fileRef = A93AE87A2A383CAA00AFFF9C /* CreateChannelVC_UserList.swift */; }; A93AE89B2A38479400AFFF9C /* ChannelListVC_CustomHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = A93AE89A2A38479400AFFF9C /* ChannelListVC_CustomHeader.swift */; }; A93AE89D2A3847B600AFFF9C /* ChannelListVC_CustomList.swift in Sources */ = {isa = PBXBuildFile; fileRef = A93AE89C2A3847B600AFFF9C /* ChannelListVC_CustomList.swift */; }; + A944B2EB121743FB63FEB8E0 /* SBUCollectionViewFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90F3D73E2831A61C3F1CD084 /* SBUCollectionViewFlowLayout.swift */; }; A968B36A28C86B5700271C60 /* LiveStreamChannelListViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A968B36928C86B5700271C60 /* LiveStreamChannelListViewModel.swift */; }; A968B36C28C86B8600271C60 /* LiveStreamChannelListModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = A968B36B28C86B8600271C60 /* LiveStreamChannelListModule.List.swift */; }; A968B36E28C9AB7F00271C60 /* LiveStreamChannelModule.Media.swift in Sources */ = {isa = PBXBuildFile; fileRef = A968B36D28C9AB7F00271C60 /* LiveStreamChannelModule.Media.swift */; }; - AA02C52B8E99633E698415F9 /* SBUFileMessageCellParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72C30A2A98340390A3BD7D5A /* SBUFileMessageCellParams.swift */; }; - AA12392FDEC2685019F1D869 /* SBUCommonDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20FD7DF375ECF9D3664116C1 /* SBUCommonDelegate.swift */; }; - AA1C6D00C5532E864BB4928F /* CGSize+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5045CE68870FB6D5C3D5A93 /* CGSize+SBUIKit.swift */; }; - ABFB0DFF31126EB5CF90F698 /* SBUFileMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9580F0FFAE8FE439A9832253 /* SBUFileMessageCell.swift */; }; - AC690D27DF5A7942564A7B6C /* URL+SBUKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBC6E2A199C600E1DFF279F1 /* URL+SBUKit.swift */; }; - ACC30EECD3592A0924B4054A /* SBUGlobals.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9064B855E3702BFD11947D0B /* SBUGlobals.swift */; }; - AD7F17B1E639E128BF12E5E5 /* SBUInviteUserModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85E9CEB9C5487DC6A9BFDF0D /* SBUInviteUserModule.List.swift */; }; - AE1876AC37C09301D1BC21C5 /* SBURegisterOperatorModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DB2EEA3B248BF1043AAF2A2 /* SBURegisterOperatorModule.List.swift */; }; - AFB567CE360CEACCAE25F6D6 /* SBUThreadInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5651798BD13BA06F892E084 /* SBUThreadInfoView.swift */; }; - B00057CF0EC04F7F26296144 /* SBUMessageThreadModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7EBBB60E8FE246A22593D5A /* SBUMessageThreadModule.swift */; }; - B2715B26B4906E142DD3A0D7 /* SBUMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E28DEB730F0F5EAD2599330D /* SBUMenuView.swift */; }; - B273DADE59D08D070FBB3167 /* SBUMention.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E98154B767F9A7624CEB674 /* SBUMention.swift */; }; - B2A93928188654E1066D86BF /* SBUConfig.CodingKeys.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DE3A9D6B2936BFBF52DF142 /* SBUConfig.CodingKeys.swift */; }; - B38AC20AFC5ECC4677603D84 /* SBUContentBaseMessageCell.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 187C8310ECF1E1FF7DB1AC2F /* SBUContentBaseMessageCell.Deprecated.swift */; }; - B4507D6833D7113EDDFC4980 /* SBUMentionConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE513E7FC425144397895629 /* SBUMentionConfiguration.swift */; }; - BAF4F12B20926A34F95BB25B /* SBUInviteUserViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D83D65E6CB8FDA0EC81E8FA /* SBUInviteUserViewController.swift */; }; - BC69AA287BE5BB35721DEFE7 /* SBUUserMentionConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7271E5BEFB29E3BA89FD418E /* SBUUserMentionConfiguration.swift */; }; - BDA15F2F5029901D2885210E /* SBUMessageThreadModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = A07733A06DA07856B4E11457 /* SBUMessageThreadModule.List.swift */; }; - BDA4D8292C1FCFED57A2EB49 /* SBUStringSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CF6C6A68A65BA11CB0FA6BF /* SBUStringSet.swift */; }; - BF430CC7B2FEA1AFDCC4E3DD /* QuotedFileImageContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81F79491911AF741525EAAEB /* QuotedFileImageContentView.swift */; }; - BF5987C0142A6B9BF38A2472 /* SBUDownloadManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B29909D6B789A434DA5928F /* SBUDownloadManager.swift */; }; - C01A33F0B62387025DEA6B6C /* SBUVoiceMessageConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39BEE272D4DAA32D38E586B2 /* SBUVoiceMessageConfiguration.swift */; }; - C042185A3F6B38513B0C1D36 /* UIImageView+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A115272D074CE4E3DD5C829F /* UIImageView+SBUIKit.swift */; }; - C1611F2355D9BF68439F7930 /* SBUBaseChannelSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0081DC1780C9938D4BEED8F /* SBUBaseChannelSettingsViewModel.swift */; }; - C1EFADC819832C529E0E74DA /* SBUOpenChannelContentBaseMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = B52D5ABC0B9BF678F600D3E2 /* SBUOpenChannelContentBaseMessageCell.swift */; }; - C1F6EB644C448AE6ACE9D9AC /* SBUBaseChannelListModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E548C06CCD549424CEC34F2 /* SBUBaseChannelListModule.Header.swift */; }; - C226A544A791A7963341E9BC /* SBUQuotedBaseMessageViewParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3D84F3979F1B12BE5834091 /* SBUQuotedBaseMessageViewParams.swift */; }; - C2E4BC06ED5EB99E6BC1A427 /* SBUCreateChannelViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 425B4764DF5B9E81D707AA21 /* SBUCreateChannelViewController.Deprecated.swift */; }; - C373EB700C110605D48D9F69 /* SBUQuoteMessageInputViewProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2F4923F59AD1EBC2A50C072 /* SBUQuoteMessageInputViewProtocol.swift */; }; - C46FD98A46FFD205473640E4 /* MessageTemplateParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = F908F976B832F22EA34AB777 /* MessageTemplateParser.swift */; }; - C7984AD6E41FBA07E0CB7624 /* SBUBaseChannelListViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 968542872CC091CBDB1DFEFF /* SBUBaseChannelListViewModel.swift */; }; - C79946163A1898F73998BBF1 /* SBUBaseChannelModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01BE2A68C0EA5692AB358D72 /* SBUBaseChannelModule.Header.swift */; }; - C7B189B24777A51ADB907D14 /* SBUChannelTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF9C6FC326CC02F1E2C5D462 /* SBUChannelTitleView.swift */; }; - CAA4720A9C9E74ED3F714F02 /* SBUCreateChannelTypeSelector.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D4C44F792B1F604F7E9DE51 /* SBUCreateChannelTypeSelector.swift */; }; - CAC6FB3EFF2BB1C3B268D172 /* SBUMessageDateView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E1B4E9E1CCBFE985E7B200C /* SBUMessageDateView.swift */; }; - CB9830F5FD9BDDAEBA3B2DEE /* SBUReactionCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 674A14271EC7C0C257C89568 /* SBUReactionCollectionViewCell.swift */; }; - CC320603E163E49D7A1DCD06 /* SBUGroupChannelPushSettingsModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = A935AADB22314DDEC2CC761C /* SBUGroupChannelPushSettingsModule.swift */; }; - CEC66185CB78F7CF2162846D /* BaseMessage+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADAF206FF195F239573C985C /* BaseMessage+SBUIKit.swift */; }; - CEF87985B78A17A47D88A74C /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = AD92CDB46D353A3DDFC8A667 /* Debug.xcconfig */; }; - CEFC68C06A84F03F482478DF /* SBUUnknownMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDA9516C8540210EB9D44CB1 /* SBUUnknownMessageCell.swift */; }; - CF3B168CFBA4566547EB013E /* SBUMessageCellProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C933FACFD609E17EAF3A41B /* SBUMessageCellProtocol.swift */; }; - CF511B75795E19A54516232B /* SBUCacheManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6138DA2AB85156895618AA5D /* SBUCacheManager.swift */; }; - CFBC268025C2BCD7BF38B4B2 /* SBUCreateOpenChannelModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAD7F1829ACAE111E344DE29 /* SBUCreateOpenChannelModule.Header.swift */; }; - D09F4000016B9CE60DB09A16 /* SBUGroupChannelModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3BDB91356B795FBB8B09D41 /* SBUGroupChannelModule.List.swift */; }; - D41DD826B9BDFEFC3CD3B401 /* SBUUserListViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C547A841C0C271E3CD1DC85D /* SBUUserListViewModel.swift */; }; - D4B76E637FB96132017F4DC5 /* SBUBaseChannelModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C86AFB42FA61FEE04451606 /* SBUBaseChannelModule.List.swift */; }; - D4D4F2497F22DB64648DC891 /* SBUModerationsModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 233BF3F9B7A9A44C35468EB4 /* SBUModerationsModule.swift */; }; - D5FC25E638142866BCC138FD /* SBUBaseChannelSettingsModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B02D3902C1EAF455A899E04 /* SBUBaseChannelSettingsModule.Header.swift */; }; - D61CC59F01E516728211DA2C /* SBUBaseChannelViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78A945A960656A6CFD41CF53 /* SBUBaseChannelViewController.swift */; }; - D7D5DAEDF8D5E4ACAF3DFBB0 /* SBUOpenChannelViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0291A1A364BEE942B4BA5CF0 /* SBUOpenChannelViewModel.swift */; }; - D8FAA8E11C46DF6EF9C9EB98 /* SBUMentionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8D4FF8041A0A03641D2B15B /* SBUMentionManager.swift */; }; - D8FCDCBE4579863A74F4EDAB /* SBUMessageThreadModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E3440513BE2E42CE993A2CB /* SBUMessageThreadModule.Header.swift */; }; - DA2E65852860A674F8AE916E /* SBUViewLifeCycle.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8EC95DFE5043773778216EC /* SBUViewLifeCycle.swift */; }; - DB1EFBC9C0A1A61AEDA2DA32 /* SBUBaseChannelModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87AF7B27AEE86C110113123B /* SBUBaseChannelModule.swift */; }; - DB401677D55110C454049B59 /* SBUMessageWebViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 225FED394B06A6ABF48CB72B /* SBUMessageWebViewModel.swift */; }; - DBD084B2C9A72ECC5BD96D72 /* SBUMessageThreadTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C3AAC4C6ADE19BBEC6B7F2A /* SBUMessageThreadTitleView.swift */; }; - DC39C98A72EF589379CF2F73 /* SBURegisterOperatorViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B3A0E4AD5C54511813DE524 /* SBURegisterOperatorViewModel.swift */; }; - DC91A58F0EA1AED2847C4698 /* SBUChatNotificationChannelViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA7E6AC2CE054363910B5A15 /* SBUChatNotificationChannelViewController.swift */; }; - DD001ED3A1AF04B6D5B32A98 /* SBUGroupChannelSettingCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4ABBE6988A171FF288AACCAF /* SBUGroupChannelSettingCell.swift */; }; - DD467C6A14CED966033B013F /* SBUOpenChannelImageContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5284C3DA615215B459268CBE /* SBUOpenChannelImageContentView.swift */; }; - DE6403EBA8F7B56A3AC08BF4 /* SBUViewControllerSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70C18F790704F361094F1368 /* SBUViewControllerSet.swift */; }; - DF13007C11232C6A75E9655D /* SBUOpenChannelUnknownMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBC3A0E05DB738BE7255C9A1 /* SBUOpenChannelUnknownMessageCell.swift */; }; - DF58F6C924AE3C381A379BA0 /* SBUCreateOpenChannelViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C2FD0115E4B1C3F9B2C6752 /* SBUCreateOpenChannelViewController.swift */; }; - DF8BF2460DCBEE65625229C5 /* SBUViewModelDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62A319714EEC647A0848BB65 /* SBUViewModelDelegate.swift */; }; - E062E914B958E214881EAD7B /* SBUNewNotificationInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E3EBDB904C8CE14C2030C9A /* SBUNewNotificationInfo.swift */; }; - E0E37E8DFCB221458915C9A2 /* CommonProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBA2BBF2E0C3423587AC1D2F /* CommonProtocols.swift */; }; - E143A36E963B1CDF5E18C6AB /* SBUGroupChannelSettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32D062C18AE404BA33940C2C /* SBUGroupChannelSettingsViewController.swift */; }; - E2632AA462191114FAF7A332 /* Float+SBUKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB42B29FC32D55BE76D42610 /* Float+SBUKit.swift */; }; - E309BB5E7CC5B2E48D2F0579 /* SBUNotificationEmptyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31550ECA90C91A7794D1530E /* SBUNotificationEmptyView.swift */; }; - E314BEBAD8EDC01E154ABC6A /* SBUOpenChannelListModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16DB0EFB3DB7DC7B07BACDB0 /* SBUOpenChannelListModule.List.swift */; }; - E3BFBE6B01EF7D52E4C786C2 /* SBUDebouncer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B40B29DC9BEE6CABF042A760 /* SBUDebouncer.swift */; }; - E3DDDC74B95A881F8F49ED3D /* SBUBaseSelectUserModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9AB4C46814838C10D2C0205 /* SBUBaseSelectUserModule.Header.swift */; }; - E454360736E7E69F6616D9C5 /* SBUGroupChannelPushSettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24AF3D7554452FDBD776D617 /* SBUGroupChannelPushSettingsViewController.swift */; }; - E4A14696B40D8422BA270DC1 /* SBUChatNotificationCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61B438D45AC7E74129D86CC7 /* SBUChatNotificationCell.swift */; }; - E50ACF82A0CDE638EA5B03D8 /* SBUTemplateLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DB0238E2EA4814143CA4CB9 /* SBUTemplateLabel.swift */; }; - E5ED3913DBA813EDE3F16562 /* SBUInviteUserModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 617CF220EEBC9C625E3356EC /* SBUInviteUserModule.swift */; }; - E856BB7DECABEEBF7CBD5A38 /* SBURegisterOperatorViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = B78CE33A30FAC09232C89621 /* SBURegisterOperatorViewController.swift */; }; - E9B96EA736AC89151ABDB2CA /* SBUGroupChannelViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = B95E0F5151616CF497DBF371 /* SBUGroupChannelViewController.swift */; }; - EAD8DAE732BA67D5C3B593DF /* SBUSelectableStackView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0911AF5747D1FA7A740E5492 /* SBUSelectableStackView.swift */; }; - EB3CA2D1FD6933E4BD5C666C /* SBUEnums.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E6CAA09C43D1E6A4398CA31 /* SBUEnums.Deprecated.swift */; }; - EBA7C5971338ABF3EC65AADB /* SBUOpenChannelBaseMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5423525CFD3E45A7758D21F /* SBUOpenChannelBaseMessageCell.swift */; }; - EC796D3B6D1F7A0AEA40897F /* Release.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = F91333691DCE4ACC814CF106 /* Release.xcconfig */; }; - ED0E9BA842269851945752B9 /* SBUCoverImageView.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = F80A167C1BCD02376FEBA565 /* SBUCoverImageView.Deprecated.swift */; }; - ED1DA45B6BFC2A9870EC9B39 /* SBUGroupChannelPushSettingsModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5B11F963B9453E4B7713C05 /* SBUGroupChannelPushSettingsModule.Header.swift */; }; - EEEBE33E1FF8B8E8775550A8 /* SBUNewMessageInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 490F0B8C9DE4B1602C44707E /* SBUNewMessageInfo.swift */; }; - F01F876E3E5E3DAF10322698 /* SBUIconSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7882BFC96E6EB23C2708896 /* SBUIconSet.swift */; }; - F03F6FFB4D7F94C4D4177374 /* SBUTableViewCell.Unavailable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AA44347CA9FC437856EC732 /* SBUTableViewCell.Unavailable.swift */; }; - F09E0C9552E2486FD908796B /* UIStackView.SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BDCEF729E67B076030182FF /* UIStackView.SBUIKit.swift */; }; - F15014510D41217A718942F6 /* SBUCacheManager.NotificationSetting.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5F235AAAE80C80A0FA460D2 /* SBUCacheManager.NotificationSetting.swift */; }; - F23D56A8D0B60F207E799D22 /* SBUBaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D9DD8AAA63298D9714EC385 /* SBUBaseViewController.swift */; }; - F2402179D99D344F3DAD4430 /* SBUUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = C29D8E45823A37E06A9E98DA /* SBUUtils.swift */; }; - F27777BECC938C0738583B49 /* SBUEnums.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77DF532D984B6B08350E2732 /* SBUEnums.swift */; }; - F2BB65025FE508D721D2E622 /* SBUUserListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24EB35D88E21F84114E8B07C /* SBUUserListViewController.swift */; }; - F366355CF7B83B8EAABEE920 /* SBUBaseChannelSettingCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F20FF26D5AD8C6E1583C2E56 /* SBUBaseChannelSettingCell.swift */; }; - F3B0C22131DB824AF1A733F7 /* SBUHighlightMessageInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3415509B748ED4796AF8A01 /* SBUHighlightMessageInfo.swift */; }; - F41F78A84F286290D4E1D518 /* SBUCacheManager.File.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42A1870E2F3FCA6B2519676B /* SBUCacheManager.File.swift */; }; - F63E93FB326D0685CB802A8F /* SBUBaseChannelListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDC0FC99EA99835B8C7E67F6 /* SBUBaseChannelListViewController.swift */; }; - F6F1212BD0BB5B97FAF60B89 /* SBUBaseChannelListModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F3EECFB531A965DAB4B19A2 /* SBUBaseChannelListModule.List.swift */; }; - F715A9B2AA2FF1D48DB18FD8 /* SBUConstant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 888AB74F0C8F4DBEBDD3E0F1 /* SBUConstant.swift */; }; - F723A0AEAD049F1298D4D97E /* SBUBaseMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8050B1788B66E3D4B1B5B6C /* SBUBaseMessageCell.swift */; }; - F753458752650928111DF655 /* Array+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 057756A478BF355F4C00DAB2 /* Array+SBUIKit.swift */; }; - F7882BEBEAF53151801FD6BB /* SBUOpenChannelSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71D19A26952DCF95A4651A39 /* SBUOpenChannelSettingsViewModel.swift */; }; - F79193EE02046E1E56AAE64D /* UIButton+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1EC28F24DF54CE742090E2F /* UIButton+SBUIKit.swift */; }; - FA03E68DB3E2294322803CA1 /* SBUSelectablePhotoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 357A0961A979A80E184DA2DC /* SBUSelectablePhotoViewController.swift */; }; - FA8F1AAA7387BB6B8BF6D8A3 /* SBUGroupChannelViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA17D6FD5362C62E3E6DC318 /* SBUGroupChannelViewController.Deprecated.swift */; }; - FA9C8DFEF2F2882A1F63D705 /* SBUBaseSelectUserModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = F219E063C516EE24242AA983 /* SBUBaseSelectUserModule.swift */; }; - FBB6F81375C590A5373F4E49 /* SBUChannelSettingItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2197A4720D341BFCF13C2821 /* SBUChannelSettingItem.swift */; }; - FC20477502128A40BB6A5239 /* SBUFeedNotificationChannelModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15238F7AF3FCC54820539706 /* SBUFeedNotificationChannelModule.swift */; }; - FF65EA72B4BB553D60D6A76C /* UIApplication+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82B916F3E709BE44FF1C817F /* UIApplication+SBUIKit.swift */; }; + AAA127F239BC9CC257344FE1 /* SBUEmojiListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9A38753708F3E9B80EC608E /* SBUEmojiListViewController.swift */; }; + AAED93AC2C6DAF63A5F1CDA0 /* SBUGroupChannelListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15894570D0B51B352FA0ED47 /* SBUGroupChannelListViewController.swift */; }; + ABDD4B66F4BA70A752C86B1D /* SBUBaseSelectUserModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68C1908059940FF0C5E817FB /* SBUBaseSelectUserModule.List.swift */; }; + AC0903C2A29B6F4B83C77BBD /* BaseMessage+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A2079341D51EAD21E092378 /* BaseMessage+SBUIKit.swift */; }; + AC2594682E43936276E57E01 /* SBUCardListViewParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9410DA61F900E011CC767F69 /* SBUCardListViewParams.swift */; }; + AC3E869BF863E216888A803D /* SBUDownloadManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2534EC903E25A70196766A5B /* SBUDownloadManager.swift */; }; + AE7F4416CFF7E35A0BA05054 /* SBUGroupChannelViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F3A56F881885C6849D81DCD /* SBUGroupChannelViewController.swift */; }; + AEBA9EB71976E93CE890ADDF /* SBUModuleSet.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 957D6322C90DD52997F534E5 /* SBUModuleSet.Deprecated.swift */; }; + AEF09436D953FF270E82FBF8 /* SBUCreateChannelTypeSelector.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04EF831CD94698C15BCB0DB3 /* SBUCreateChannelTypeSelector.swift */; }; + B05DACECB24AA7EDE2961B96 /* SBUNotificationEmptyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0403058FECF395E73684230 /* SBUNotificationEmptyView.swift */; }; + B3CCE99BF3522C0531FC1717 /* UINavigationController+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4EC7BC2D22C1870C4CFDA1BA /* UINavigationController+SBUIKit.swift */; }; + B489241C82C6C6CA8B5F29CD /* UIColor+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2946BCAF1C1894A25233975A /* UIColor+SBUIKit.swift */; }; + B4994381609C9BF47FBEF57A /* UserMessage+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8949EC63DBE4F860CC826FE /* UserMessage+SBUIKit.swift */; }; + B551FADC2F4EDE8C50E622DE /* SBUTableViewCell.Unavailable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43E3AA9A5090886192ED2BB3 /* SBUTableViewCell.Unavailable.swift */; }; + B55270C6BA84BF590A5B7EAA /* SBUGroupChannelPushSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AA0BFCF8457F64FDB576934 /* SBUGroupChannelPushSettingsViewModel.swift */; }; + B59A74209B278E9C7208FA3F /* SBUChannelSettingItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F0107F6D69F27DF9B2B9B20 /* SBUChannelSettingItem.swift */; }; + B5E3A15C9A112505DD267B9E /* SBUChatNotificationChannelViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43D06F6CD4BAB7BB20B7F513 /* SBUChatNotificationChannelViewController.swift */; }; + B6A3FEE4121A5F68781DE00B /* SBUQuickReplyOptionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 579521E3B9E699FE7F029616 /* SBUQuickReplyOptionView.swift */; }; + B77661C9B01874945E90FC1B /* SBUUserProfileView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F53DA57F10C8AB81E01CE69 /* SBUUserProfileView.swift */; }; + B79BA8A3BAE059779DE092CD /* SBUCreateChannelModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F421F98889E3FCFC352043 /* SBUCreateChannelModule.Header.swift */; }; + B7DFD86E79E157AB95319D03 /* SBURegisterOperatorViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69182E174B1D66B575EEE506 /* SBURegisterOperatorViewController.swift */; }; + B84861F0852D38E0995CBA6D /* SBUBaseChannelCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67C16A37DB1C3424785A1AB5 /* SBUBaseChannelCell.swift */; }; + BA18A598585E2F6AB146D574 /* SBUFeedNotificationChannelViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE92C9E26D94FD5856A0C3CD /* SBUFeedNotificationChannelViewModel.swift */; }; + BACAD3A46EDE7A21837BEAEF /* SBUIconSetType.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6C55B0F6760A44A02165168 /* SBUIconSetType.swift */; }; + BB9E2290B4807337DA1665A2 /* UITextField+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A362E90D3D52496D2C73FFB /* UITextField+SBUIKit.swift */; }; + BD4940850B09118013C1EF23 /* SBUFeedNotificationChannelModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2361CD6262B91E929F1B7209 /* SBUFeedNotificationChannelModule.Header.swift */; }; + BD5C9DAAD95A93A52C916518 /* SBUBaseChannelSettingsModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6D562DAC2263B035ABCC87F /* SBUBaseChannelSettingsModule.Header.swift */; }; + BE11B3E4E36AD6A91744A889 /* SBUGroupChannelModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24D13B53AABF56B2E0FA2028 /* SBUGroupChannelModule.Header.swift */; }; + BF19198CF8D628EBDB2DC2B5 /* SBUChatNotificationCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC107E0A18147CE683EC91E9 /* SBUChatNotificationCell.swift */; }; + C094825D4F9214A818D38C6A /* SBUUnknownMessageCellParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382B2A8EC16B1456CF836A73 /* SBUUnknownMessageCellParams.swift */; }; + C0B219EBEFD0E431524EC9C5 /* SBUCreateOpenChannelModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77539DA9CAE6FEE88CB17B7 /* SBUCreateOpenChannelModule.swift */; }; + C0FCE237545685067B78591A /* SBUPropertyWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69DE412B03BA8F08AB499495 /* SBUPropertyWrapper.swift */; }; + C1786BE092A768ABBFF9EB29 /* SBUBaseSelectUserModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70868C74358BC367A84D700B /* SBUBaseSelectUserModule.swift */; }; + C183533F3EDD4731619CD079 /* SBUBaseSelectUserViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D7573333E9706211B9F00A7 /* SBUBaseSelectUserViewController.Deprecated.swift */; }; + C1B4D8EF27D4603AF5B66A19 /* SBUMessageSearchResultCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCC7DDF0A66F0FFEEF82ED95 /* SBUMessageSearchResultCell.swift */; }; + C1CAC3BBA699375D6B9ACC6F /* SBUChannelPushSettingCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DCB3A13C5D2451070BFC2CF /* SBUChannelPushSettingCell.swift */; }; + C2157B9518814C38D12D8643 /* SBUReactionsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37CFA16E96C106D0B5B8EF5F /* SBUReactionsViewController.swift */; }; + C25F16BCDC478DB4A79E527E /* SBUQuickReplyViewParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62816F68CE7372CDD831EBCC /* SBUQuickReplyViewParams.swift */; }; + C2A9ABD13991E5D977562AD9 /* SBUCacheManager.NotificationSetting.swift in Sources */ = {isa = PBXBuildFile; fileRef = 494A6A866E985C8D4D7D808A /* SBUCacheManager.NotificationSetting.swift */; }; + C34094CFDD169221DCE5A1A1 /* SBUUserNameView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCFBFE204000673D41A3BE2A /* SBUUserNameView.swift */; }; + C37D97CC0EF7E7124273F6F3 /* VoiceMessageStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36E6537E1EDCFF75988B1D90 /* VoiceMessageStatus.swift */; }; + C40441C5407F2DEC5F7EEB9A /* Formatter+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C17CC283F96E29BFA570FC6 /* Formatter+SBUIKit.swift */; }; + C41816EBC8B4D8AF1DF068EC /* SBUDateFormatSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3649D3789E8EBDC7EF00C32B /* SBUDateFormatSet.swift */; }; + C65E5CF5C13D9F07A1EB10FE /* SBUBaseChannelSettingsModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A281B4E19977F196654AAFC /* SBUBaseChannelSettingsModule.List.swift */; }; + C6DA012E3BF72E8600C213A6 /* SBUMemberListViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5282B787F38F22CD5B03E31F /* SBUMemberListViewController.Deprecated.swift */; }; + C72C126CF15A0520AE6361D4 /* SBUGroupChannelListModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6AE0E431EF834F0327513F /* SBUGroupChannelListModule.Header.swift */; }; + CA43E23A233D00205D18E6D5 /* SBUMessageCellProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0242A04C68C344BB6708B70 /* SBUMessageCellProtocol.swift */; }; + CC25A0582EBC018EB3989E19 /* SBUOpenChannelSettingsModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AEE8731EEBC5CBB1934D0E0 /* SBUOpenChannelSettingsModule.List.swift */; }; + CC593B7D202C28684FD1DC1A /* SBUEnums.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = E27943E14539280652C1EC73 /* SBUEnums.Deprecated.swift */; }; + CCC036D8E13640D2A22C56AB /* SBUMenuCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 9D4AA0558E64825B0F17F574 /* SBUMenuCell.xib */; }; + CCCFA7256A3514A573D3FA4D /* SBUFeedNotificationChannelModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5537CDCC1CF432FFDC664CF0 /* SBUFeedNotificationChannelModule.List.swift */; }; + CD969A5BABB8B90573C7CF2E /* SBUMessageThreadTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E95CB8D4AD0BE723F7AAA511 /* SBUMessageThreadTitleView.swift */; }; + CDB4A65DD0E7D562049C5318 /* SBUOpenChannelViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8BD827DDF658E347DD19C07 /* SBUOpenChannelViewController.swift */; }; + CF18CF7C05E22AC062794995 /* SBUViewControllerSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45B058D1555F7C6B7E4D627F /* SBUViewControllerSet.swift */; }; + CF2BB482AAF61E1B6767EBFE /* SBUModerationCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B583B3D275AE73E233DEB8C /* SBUModerationCell.swift */; }; + D048F9FD4D6D63D10D50D906 /* SBUChannelListViewController.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E55A9D45478E16B27C31F0B /* SBUChannelListViewController.Deprecated.swift */; }; + D160B1A9D3E85CC08D3D91FB /* SBUChatNotificationChannelModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1F81CB544B02F0262F5FAF0 /* SBUChatNotificationChannelModule.List.swift */; }; + D28A846777756DA70AA76E53 /* SBURegisterOperatorModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43919D1985BB3B3B94AF129A /* SBURegisterOperatorModule.Header.swift */; }; + D2F4D7538277A968EA7A54CA /* SBUUserMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C342CE1BF10BA52BAD5FC7E2 /* SBUUserMessageCell.swift */; }; + D340EDD109BB18566DDC4CDF /* SBUUserListViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39BE7BF6B2F1DD846684F281 /* SBUUserListViewModel.swift */; }; + D35CA7636DDE11B650C80871 /* SBUQuotedBaseMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 743250BF1B4FA3FD3045308B /* SBUQuotedBaseMessageView.swift */; }; + D4A46D6466B8494894DDC593 /* SBUMessageSearchViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B229A38B990D6B5BBBD3501 /* SBUMessageSearchViewModel.swift */; }; + D4E5CC9695C26FF2154E9BEE /* MessageTemplateTestViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 256BD30990A7D8C0999755A2 /* MessageTemplateTestViewController.swift */; }; + D552633B00342B61B1BBD9CA /* SBUCommonDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64F6D10790714D6A14898D5F /* SBUCommonDelegate.swift */; }; + D758D4D39E2105CA69493502 /* SBUBaseChannelModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F4EA21B4CE7B9E0E5EBF7A8 /* SBUBaseChannelModule.swift */; }; + D75C73FE857B2F0DDC646A21 /* SBUCardView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B468C95DFA8BFD6D943C760A /* SBUCardView.swift */; }; + D7C1DB36CE7E301DC385A2A4 /* SBUOpenChannelUnknownMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F07C0865743FAF5D262C21A /* SBUOpenChannelUnknownMessageCell.swift */; }; + D7EE5DDD8DFEDB60B328EFC2 /* SBUColorSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = B705777C3C970AAB69E6DFA1 /* SBUColorSet.swift */; }; + D823332F0C4F170C9EEA182A /* SBUMarginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 713693AA41E41D77D20BD684 /* SBUMarginView.swift */; }; + D91D7E7C5BF332489F787332 /* SBUConfig.Base.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FC5578DBAFB57DB56EF570E /* SBUConfig.Base.swift */; }; + D924B9B4F1281D992D65C1D0 /* SBUMessageWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43457EA12A745BF0405FCAEA /* SBUMessageWebView.swift */; }; + D99DC1AFBD85EBB87DFA8361 /* SBUMessageWebViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A78DF0EE384669D517F1EFF /* SBUMessageWebViewModel.swift */; }; + D9F3769FA4C4C7508A0CE388 /* SBUFeedNotificationChannelModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80F1D1310DCC7793D1E5A4C9 /* SBUFeedNotificationChannelModule.swift */; }; + DA668C9C240B145F74E3FDDB /* SBUGroupChannelCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A27E6F2F1A6C7B6304574C0 /* SBUGroupChannelCell.swift */; }; + DA7D7C75D1FF80B279FAB1CC /* SBUCardViewParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29FE4DC6E08161FA775109F2 /* SBUCardViewParams.swift */; }; + DD54B46CB0CBF778D85794FD /* UIImage+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A26197BB4AB3B53E2EC65CFD /* UIImage+SBUIKit.swift */; }; + DD9677A3E164868637E4BD2A /* SBUBaseFileContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FEA757DE96503A09CACE1ED /* SBUBaseFileContentView.swift */; }; + DE6FEE6382716D515CD38580 /* SBUHighlightMessageInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CF9D0C6E1A03EC3B1A275CC /* SBUHighlightMessageInfo.swift */; }; + DEE2DD92F2F58FDEE88403D0 /* SBURegisterOperatorViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A3FACA4F09C6E96C666BEFA /* SBURegisterOperatorViewModel.swift */; }; + E08F1AFC55A7C31755D6D402 /* SBUEmojiManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8FEF5628A48F6F103CD0B78 /* SBUEmojiManager.swift */; }; + E129EE2E158EECC7BF6FD454 /* SBULayoutableButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D46ADF492A68DA66F6952AD /* SBULayoutableButton.swift */; }; + E17285E0B5A6BC96528D74FD /* SBUMessageThreadModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 438089065331BC0C313CE422 /* SBUMessageThreadModule.List.swift */; }; + E1F16F7DEC6CEBB4D70717F9 /* SBUGlobals.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54070888A703766E9FF4932B /* SBUGlobals.swift */; }; + E238BECD7F6B333017F2F88E /* SBUBaseMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A5A01A3FCF5C998CEAE46E7 /* SBUBaseMessageCell.swift */; }; + E23A58AB998CA33E9C3249C9 /* SBUBaseChannelViewController.Unavailable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CF3A14F160D730911531AA9 /* SBUBaseChannelViewController.Unavailable.swift */; }; + E2CECB9DA864A9D18442B477 /* SBUModerationsModule.Header.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAA2862F74040B542392476 /* SBUModerationsModule.Header.swift */; }; + E3890B7C3ED4CA596AF7C779 /* SBUAvailable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DFB1BA9C56B4B12C760E328 /* SBUAvailable.swift */; }; + E54B381D3B80281E1AD90B28 /* SBUQuoteMessageInputViewProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C69F47B1886465E868AE8B0 /* SBUQuoteMessageInputViewProtocol.swift */; }; + E5885E1F4F4E1C6DAA1E111F /* SBUView.Unavaliable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8F739161E52722FA7CDD6CC /* SBUView.Unavaliable.swift */; }; + E70C161220E79DEFC127A173 /* SBUBaseMessageCellParams.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = B13DEFB28B027C14E5CBCE67 /* SBUBaseMessageCellParams.Deprecated.swift */; }; + E76645BD5E0AD0C28BA4CA37 /* SBUBaseChannelListModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3EA868CDC4C8719B9149167 /* SBUBaseChannelListModule.swift */; }; + E7C9E6A8C19FAD9402B55BDD /* SBUGroupChannelModule.Input.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC7B06CE0A84BEE7BADFF623 /* SBUGroupChannelModule.Input.swift */; }; + E82E20F8EA2533674503F58C /* SBUBaseChannelModule.Input.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEFE037CFB2F5FF5EBBEAB6D /* SBUBaseChannelModule.Input.swift */; }; + E8B85EFE3B8B2CFB1C3D57D7 /* SBUContentBaseMessageCell.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C3EA82E51E5050C65CD3714 /* SBUContentBaseMessageCell.Deprecated.swift */; }; + E8C907C516F1122C29436245 /* SBUOpenChannelMessageWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96C2670CDA57B6FC6B76DE08 /* SBUOpenChannelMessageWebView.swift */; }; + E9D41AEDF309F480D68E01AE /* UIViewController+SBUIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCE8FA5B06FEF67773D75F46 /* UIViewController+SBUIKit.swift */; }; + EABB428EC757BAABF2C97962 /* SBUPhotoCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43ED6D0121771F1230E5A5B7 /* SBUPhotoCollectionViewCell.swift */; }; + EAE1C8C48593A92633DA0A18 /* SBUUserMentionConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3F221D338B7FFFBF845E5F0 /* SBUUserMentionConfiguration.swift */; }; + EB6725F370C41905C234683D /* SBUBaseChannelListViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 888AA7B1CE1805F2CB31325B /* SBUBaseChannelListViewModel.swift */; }; + EC35FFE88495FF0A5A38FEE3 /* SBUSelectablePhotoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47BA4561098AD5C86F00EEA4 /* SBUSelectablePhotoViewController.swift */; }; + ECE55D66AD8CD16F3C02CD7D /* SBUBottomSheetController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9125E4D83EAE7DC6D533507 /* SBUBottomSheetController.swift */; }; + EE8378EFA7DAE41231A9430F /* SBUMessageStateView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E385CFCDCD0762F6BE8C0DB1 /* SBUMessageStateView.swift */; }; + EEC0D70CCED2F322769373CA /* SBUCreateOpenChannelModule.ProfileInput.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9A98A78FE307A3244ED21E1 /* SBUCreateOpenChannelModule.ProfileInput.swift */; }; + EF14B244C6C439798666D67B /* SBUUnderLineTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FD2514D5B32DFBDB808F8C9 /* SBUUnderLineTextField.swift */; }; + EF81B28CD363E89D3D8AFB36 /* SBUFontSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F08183BDF9E55BC9BB33916 /* SBUFontSet.swift */; }; + EF934FE8B266153F2278E5F8 /* SBUThreadInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE8708D1E0C04E5FB36CC2ED /* SBUThreadInfoView.swift */; }; + EF944F947526E595FC7CEFA4 /* SBUOpenChannelImageContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BBC47200225C1649B233CBF /* SBUOpenChannelImageContentView.swift */; }; + EFB3535A9F8A469F16ABB02C /* SBUInviteUserModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89FF7BAE0478EC4D64251FE0 /* SBUInviteUserModule.swift */; }; + F0DD954DB1EB0E8ECE118CEA /* SBUMessageReactionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1591F4DAA796ECB8FFB371F4 /* SBUMessageReactionView.swift */; }; + F14A3FFF8F509997AD3C700D /* SBUUserListModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = E65DF69581A267BC918152E4 /* SBUUserListModule.List.swift */; }; + F23E4189FBBFA33512EF5DEC /* SBUFileMessageCellParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB90FBB0634828D05C2E9DDA /* SBUFileMessageCellParams.swift */; }; + F2EED6679AD425B0C025F61A /* SBUGroupChannelPushSettingsModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 200F98641EB0E321D04492BE /* SBUGroupChannelPushSettingsModule.swift */; }; + F3107EBE647432FDD5806D74 /* SBUVoiceContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9283F74ACC3B88C117780DC /* SBUVoiceContentView.swift */; }; + F3E17AF32440E9D991D45EC6 /* SBUAlertView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A1B09BD25B331EB14AFA06D /* SBUAlertView.swift */; }; + F5136F355EEEFB444B689799 /* SBUMessageSearchModule.List.swift in Sources */ = {isa = PBXBuildFile; fileRef = C52C2151E18EFF9D2EA43BC9 /* SBUMessageSearchModule.List.swift */; }; + F56326AF4FFD5F672D5752DD /* SBUChatNotificationChannelModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7638A9237443FFA4A9B0ABD3 /* SBUChatNotificationChannelModule.swift */; }; + F5FE2DDEDD5F332448432BE7 /* SBUOpenChannelFileMessageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78F55441A325E88ACCE33898 /* SBUOpenChannelFileMessageCell.swift */; }; + FA8FBF71FB5E26D0733B0360 /* SBUMessageCellConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F24BEE9F8B79663B8747595 /* SBUMessageCellConfiguration.swift */; }; + FAC7B4F43439CAEB7CB580D1 /* SBUMessageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DDA15F1F080F4D79113423B /* SBUMessageCache.swift */; }; + FBCACA409CD39894194A71BE /* SBUQuotedBaseMessageViewParams.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00B6EA1E561E77D6BB6C04F0 /* SBUQuotedBaseMessageViewParams.swift */; }; + FDB7E7DED67AB15DD2E8B63C /* SBUStringSet.Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9E8064C9F6058CFCFB616F1 /* SBUStringSet.Deprecated.swift */; }; + FEDC8CE8484CA509DDFE98B9 /* SBUInviteUserViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37F02E4EAB3D2FF131E20B40 /* SBUInviteUserViewModel.swift */; }; + FFD7158B2F755A3604CCB37E /* SBUStackView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 539EF029708D8DC3BCC9C110 /* SBUStackView.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -433,208 +443,225 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 00501C2494FE5A6D7D16701D /* SBUOpenChannelListModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelListModule.Header.swift; path = ../Sources/Module/ChannelList/OpenChannel/SBUOpenChannelListModule.Header.swift; sourceTree = ""; }; - 0052C497CCD121328271A0CC /* SBUVoiceContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUVoiceContentView.swift; path = ../Sources/View/Channel/MessageCell/FileMessageContentView/SBUVoiceContentView.swift; sourceTree = ""; }; - 00F661E595066B39C1C6128B /* SBUChatNotificationChannelViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChatNotificationChannelViewModel.swift; path = ../Sources/ViewModel/Channel/SBUChatNotificationChannelViewModel.swift; sourceTree = ""; }; - 01BE2A68C0EA5692AB358D72 /* SBUBaseChannelModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelModule.Header.swift; path = ../Sources/Module/Channel/SBUBaseChannelModule.Header.swift; sourceTree = ""; }; - 0291A1A364BEE942B4BA5CF0 /* SBUOpenChannelViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelViewModel.swift; path = ../Sources/ViewModel/Channel/SBUOpenChannelViewModel.swift; sourceTree = ""; }; - 029D53831549FA6E8482C658 /* SBUOpenChannelMessageWebView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelMessageWebView.swift; path = ../Sources/View/Channel/CellView/SBUOpenChannelMessageWebView.swift; sourceTree = ""; }; - 035E8FEA91B95E5C54F5DD6C /* SBUMessageSearchViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageSearchViewController.swift; path = ../Sources/View/MessageSearch/SBUMessageSearchViewController.swift; sourceTree = ""; }; - 05058743F65FD4376B7E87FB /* SBUPhotoAccess.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUPhotoAccess.swift; path = ../Sources/View/Common/PhotoLibrary/SBUPhotoAccess.swift; sourceTree = ""; }; - 0508C8B9790B2461890BCD56 /* SBUChannelSettingsChannelInfoView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChannelSettingsChannelInfoView.swift; path = ../Sources/View/ChannelSettings/View/SBUChannelSettingsChannelInfoView.swift; sourceTree = ""; }; - 054ACAF67417362427AC37B3 /* SBUMessageInputView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageInputView.swift; path = ../Sources/View/Channel/MessageInput/SBUMessageInputView.swift; sourceTree = ""; }; - 057756A478BF355F4C00DAB2 /* Array+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+SBUIKit.swift"; path = "../Sources/Extension/Array+SBUIKit.swift"; sourceTree = ""; }; - 07A21BCF0A4E53CE588EF51C /* SBUMenuCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMenuCell.swift; path = ../Sources/View/Common/Menu/SBUMenuCell.swift; sourceTree = ""; }; - 0911AF5747D1FA7A740E5492 /* SBUSelectableStackView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUSelectableStackView.swift; path = ../Sources/View/Channel/CellView/SBUSelectableStackView.swift; sourceTree = ""; }; - 0A266CC238ED86145A6C668B /* SBUNotificationCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUNotificationCell.swift; path = ../Sources/View/Channel/MessageCell/NotificationChannel/SBUNotificationCell.swift; sourceTree = ""; }; - 0BDCEF729E67B076030182FF /* UIStackView.SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIStackView.SBUIKit.swift; path = ../Sources/Extension/UIStackView.SBUIKit.swift; sourceTree = ""; }; - 0CF6C6A68A65BA11CB0FA6BF /* SBUStringSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUStringSet.swift; path = ../Sources/Constant/SBUStringSet.swift; sourceTree = ""; }; - 0E3EBDB904C8CE14C2030C9A /* SBUNewNotificationInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUNewNotificationInfo.swift; path = ../Sources/View/Channel/NewMessageInfo/SBUNewNotificationInfo.swift; sourceTree = ""; }; - 10B6EC355B1F9FA84C9BE62C /* SBUGroupChannelListViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelListViewModel.swift; path = ../Sources/ViewModel/ChannelList/SBUGroupChannelListViewModel.swift; sourceTree = ""; }; - 112861C0A1E3436555A2B95C /* UIColor+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+SBUIKit.swift"; path = "../Sources/Extension/UIColor+SBUIKit.swift"; sourceTree = ""; }; - 1163BFF7A52C73C8A3AE5F09 /* SBURegisterOperatorModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBURegisterOperatorModule.swift; path = ../Sources/Module/SelectUser/RegisterOperator/SBURegisterOperatorModule.swift; sourceTree = ""; }; - 11CE17442D685AF2F0F3126F /* SBUMentionLimitGuideCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMentionLimitGuideCell.swift; path = ../Sources/View/Channel/MessageInput/SBUMentionLimitGuideCell.swift; sourceTree = ""; }; - 11D2ADC805854D1A268AFF99 /* SBULinkClickableTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBULinkClickableTextView.swift; path = ../Sources/View/Channel/CellView/SBULinkClickableTextView.swift; sourceTree = ""; }; - 1227FEAC6FFDA576E56143B4 /* SBUOpenChannelSettingsModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelSettingsModule.swift; path = ../Sources/Module/ChannelSettings/OpenChannel/SBUOpenChannelSettingsModule.swift; sourceTree = ""; }; - 14B90BC4712233622176AA2E /* SBUBaseChannelViewController.Unavailable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelViewController.Unavailable.swift; path = ../Sources/Deprecated/Channel/SBUBaseChannelViewController.Unavailable.swift; sourceTree = ""; }; - 15238F7AF3FCC54820539706 /* SBUFeedNotificationChannelModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFeedNotificationChannelModule.swift; path = ../Sources/Module/Channel/NotificationChannel/Feed/SBUFeedNotificationChannelModule.swift; sourceTree = ""; }; - 16DB0EFB3DB7DC7B07BACDB0 /* SBUOpenChannelListModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelListModule.List.swift; path = ../Sources/Module/ChannelList/OpenChannel/SBUOpenChannelListModule.List.swift; sourceTree = ""; }; - 170A323DADC4CC14D07B75F8 /* SBUMessageSearchViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageSearchViewController.Deprecated.swift; path = ../Sources/Deprecated/MessageSearch/SBUMessageSearchViewController.Deprecated.swift; sourceTree = ""; }; - 187C8310ECF1E1FF7DB1AC2F /* SBUContentBaseMessageCell.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUContentBaseMessageCell.Deprecated.swift; path = ../Sources/Deprecated/Channel/MessageCell/SBUContentBaseMessageCell.Deprecated.swift; sourceTree = ""; }; - 192BA41FECD28693B4BB3502 /* SBUConfig.GroupChannel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUConfig.GroupChannel.swift; path = ../Sources/Configuration/SBUConfig.GroupChannel.swift; sourceTree = ""; }; - 19961799941C4A5BE7C36C06 /* SBUBaseChannelSettingsModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelSettingsModule.List.swift; path = ../Sources/Module/ChannelSettings/SBUBaseChannelSettingsModule.List.swift; sourceTree = ""; }; - 1AD1A0635E34629A38F6BA07 /* SBUConfigManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUConfigManager.swift; path = ../Sources/Configuration/SBUConfigManager.swift; sourceTree = ""; }; - 1B2D7A7DDF74835A7BB1094A /* SBUModerationCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModerationCell.swift; path = ../Sources/View/ChannelSettings/Cell/SBUModerationCell.swift; sourceTree = ""; }; - 1B3A0E4AD5C54511813DE524 /* SBURegisterOperatorViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBURegisterOperatorViewModel.swift; path = ../Sources/ViewModel/SelectUser/SBURegisterOperatorViewModel.swift; sourceTree = ""; }; - 1C2D59AD85338E7EE6A08F93 /* MessageTemplateTestViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageTemplateTestViewController.swift; path = ../Sources/CustomSyntaxTest/MessageTemplateTestViewController.swift; sourceTree = ""; }; - 1C47BB18B53560739C61A709 /* SBUCreateOpenChannelModule.ProfileInput.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateOpenChannelModule.ProfileInput.swift; path = ../Sources/Module/SelectUser/CreateChannel/SBUCreateOpenChannelModule.ProfileInput.swift; sourceTree = ""; }; - 1D83D65E6CB8FDA0EC81E8FA /* SBUInviteUserViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUInviteUserViewController.swift; path = ../Sources/View/SelectUser/SBUInviteUserViewController.swift; sourceTree = ""; }; - 1E6CAA09C43D1E6A4398CA31 /* SBUEnums.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUEnums.Deprecated.swift; path = ../Sources/Deprecated/SBUEnums.Deprecated.swift; sourceTree = ""; }; - 20FD7DF375ECF9D3664116C1 /* SBUCommonDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCommonDelegate.swift; path = ../Sources/ViewModel/Common/SBUCommonDelegate.swift; sourceTree = ""; }; - 2197A4720D341BFCF13C2821 /* SBUChannelSettingItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChannelSettingItem.swift; path = ../Sources/Module/ChannelSettings/ChannelSettingItem/SBUChannelSettingItem.swift; sourceTree = ""; }; - 225FED394B06A6ABF48CB72B /* SBUMessageWebViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageWebViewModel.swift; path = ../Sources/View/Channel/ViewModel/SBUMessageWebViewModel.swift; sourceTree = ""; }; - 23279CEC36E9640FC3CDBFBF /* SBUOpenChannelCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelCell.swift; path = ../Sources/View/ChannelList/ChannelCell/SBUOpenChannelCell.swift; sourceTree = ""; }; - 233BF3F9B7A9A44C35468EB4 /* SBUModerationsModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModerationsModule.swift; path = ../Sources/Module/Moderations/SBUModerationsModule.swift; sourceTree = ""; }; - 2376FC612D9880767AD54B72 /* SBUCreateOpenChannelModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateOpenChannelModule.swift; path = ../Sources/Module/SelectUser/CreateChannel/SBUCreateOpenChannelModule.swift; sourceTree = ""; }; - 246418A4F88F9F47AC0156B8 /* SBUPermissionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUPermissionManager.swift; path = ../Sources/Manager/SBUPermissionManager.swift; sourceTree = ""; }; - 24AF3D7554452FDBD776D617 /* SBUGroupChannelPushSettingsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelPushSettingsViewController.swift; path = ../Sources/View/NotificationSettings/SBUGroupChannelPushSettingsViewController.swift; sourceTree = ""; }; - 24EB35D88E21F84114E8B07C /* SBUUserListViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserListViewController.swift; path = ../Sources/View/UserList/SBUUserListViewController.swift; sourceTree = ""; }; - 263D26B5E205CDC6CFA6C802 /* SBUReplyConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUReplyConfiguration.swift; path = ../Sources/Configuration/Replies/SBUReplyConfiguration.swift; sourceTree = ""; }; - 2735235C943965230632AE28 /* SBUUserMessageTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserMessageTextView.swift; path = ../Sources/View/Channel/CellView/SBUUserMessageTextView.swift; sourceTree = ""; }; - 2800C578594DF8D51CCF2358 /* SBUFileViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFileViewController.swift; path = ../Sources/View/Channel/FileViewer/SBUFileViewController.swift; sourceTree = ""; }; - 2AAA62FFF785C4E155B0E93A /* SBUMessageSearchModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageSearchModule.Header.swift; path = ../Sources/Module/MessageSearch/SBUMessageSearchModule.Header.swift; sourceTree = ""; }; - 2ABA8C4CA70B8713D4E8C0E2 /* SBUVoiceRecorder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUVoiceRecorder.swift; path = ../Sources/Manager/SBUVoiceRecorder.swift; sourceTree = ""; }; - 2B21BF4E95339FAB0D513548 /* SBUCommonContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCommonContentView.swift; path = ../Sources/View/Channel/MessageCell/FileMessageContentView/SBUCommonContentView.swift; sourceTree = ""; }; - 2CA0A271F4390F304577E0B6 /* SBULayoutableButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBULayoutableButton.swift; path = ../Sources/View/Common/SBULayoutableButton.swift; sourceTree = ""; }; - 2D8A2605B1CF33AC9B6D337E /* SBUModuleSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModuleSet.swift; path = ../Sources/Module/SBUModuleSet.swift; sourceTree = ""; }; - 2D9DD8AAA63298D9714EC385 /* SBUBaseViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseViewController.swift; path = ../Sources/View/SBUBaseViewController.swift; sourceTree = ""; }; - 2E3440513BE2E42CE993A2CB /* SBUMessageThreadModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageThreadModule.Header.swift; path = ../Sources/Module/MessageThread/SBUMessageThreadModule.Header.swift; sourceTree = ""; }; - 2E4CF2D41B22F0A3A6BD3C8F /* SBUNotificationChannelManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUNotificationChannelManager.swift; path = ../Sources/Manager/SBUNotificationChannelManager.swift; sourceTree = ""; }; - 2E98154B767F9A7624CEB674 /* SBUMention.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMention.swift; path = ../Sources/Model/SBUMention.swift; sourceTree = ""; }; - 2F1070DDD483158A02A53D3A /* SBUFontSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFontSet.swift; path = ../Sources/Theme/SBUFontSet.swift; sourceTree = ""; }; - 31059518A200873E3E3C9C83 /* SBUMessageSearchViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageSearchViewModel.swift; path = ../Sources/ViewModel/MessageSearch/SBUMessageSearchViewModel.swift; sourceTree = ""; }; - 31098E1F26A27A6DE4C671E6 /* SBUReactionCollectionViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = SBUReactionCollectionViewCell.xib; path = ../Sources/View/Channel/Reaction/SBUReactionCollectionViewCell.xib; sourceTree = ""; }; - 31550ECA90C91A7794D1530E /* SBUNotificationEmptyView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUNotificationEmptyView.swift; path = ../Sources/View/Common/SBUNotificationEmptyView.swift; sourceTree = ""; }; - 31777FAB460FAA0599216989 /* SBUVoiceMessageInputView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUVoiceMessageInputView.swift; path = ../Sources/View/VoiceNote/SBUVoiceMessageInputView.swift; sourceTree = ""; }; - 32633C045C5228038285EA41 /* SBUBaseMessageCellParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseMessageCellParams.swift; path = ../Sources/View/Channel/MessageCell/MessageCellParams/SBUBaseMessageCellParams.swift; sourceTree = ""; }; - 32D062C18AE404BA33940C2C /* SBUGroupChannelSettingsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelSettingsViewController.swift; path = ../Sources/View/ChannelSettings/SBUGroupChannelSettingsViewController.swift; sourceTree = ""; }; - 34EEEBFD71E85A2574E0E422 /* SBUBaseChannelModule.Input.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelModule.Input.swift; path = ../Sources/Module/Channel/SBUBaseChannelModule.Input.swift; sourceTree = ""; }; - 357A0961A979A80E184DA2DC /* SBUSelectablePhotoViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUSelectablePhotoViewController.swift; path = ../Sources/View/Common/PhotoLibrary/SBUSelectablePhotoViewController.swift; sourceTree = ""; }; - 358BF3E05BC5E1A012FB3FA9 /* MessageTemplateRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageTemplateRenderer.swift; path = ../Sources/CustomSyntaxTest/MessageTemplateRenderer.swift; sourceTree = ""; }; - 37223FEDAC6037846C10D6A1 /* SBUMessageReactionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageReactionView.swift; path = ../Sources/View/Channel/Reaction/SBUMessageReactionView.swift; sourceTree = ""; }; - 377E6909811CC367981B0E8C /* SBUCoverImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCoverImageView.swift; path = ../Sources/View/Common/SBUCoverImageView.swift; sourceTree = ""; }; - 37B480E51573F8FB9A8D70E3 /* VoiceMessageStatus.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VoiceMessageStatus.swift; path = ../Sources/Enums/VoiceMessageStatus.swift; sourceTree = ""; }; - 37CF1AD3DE002B76FB7B4950 /* SBUBaseSelectUserViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseSelectUserViewController.swift; path = ../Sources/View/SelectUser/SBUBaseSelectUserViewController.swift; sourceTree = ""; }; - 3838C6B01193471668E61D8B /* SBUBaseSelectUserViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseSelectUserViewModel.swift; path = ../Sources/ViewModel/SelectUser/SBUBaseSelectUserViewModel.swift; sourceTree = ""; }; - 38CF300FD04B96579B0C1F06 /* SBUModerationsViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModerationsViewController.Deprecated.swift; path = ../Sources/Deprecated/Moderations/SBUModerationsViewController.Deprecated.swift; sourceTree = ""; }; - 39BEE272D4DAA32D38E586B2 /* SBUVoiceMessageConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUVoiceMessageConfiguration.swift; path = ../Sources/Configuration/VoiceMessage/SBUVoiceMessageConfiguration.swift; sourceTree = ""; }; - 39DB0E1FC09F7BEE3B835C1D /* SBUModerationsModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModerationsModule.Header.swift; path = ../Sources/Module/Moderations/SBUModerationsModule.Header.swift; sourceTree = ""; }; - 3A48B77FA954F439F9C6FAFA /* SBUAvailable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUAvailable.swift; path = ../Sources/SBUAvailable.swift; sourceTree = ""; }; - 3B02D3902C1EAF455A899E04 /* SBUBaseChannelSettingsModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelSettingsModule.Header.swift; path = ../Sources/Module/ChannelSettings/SBUBaseChannelSettingsModule.Header.swift; sourceTree = ""; }; - 3D51474B45780CEA21A5013E /* UITextField+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextField+SBUIKit.swift"; path = "../Sources/Extension/UITextField+SBUIKit.swift"; sourceTree = ""; }; - 3E1B4E9E1CCBFE985E7B200C /* SBUMessageDateView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageDateView.swift; path = ../Sources/View/Channel/CellView/SBUMessageDateView.swift; sourceTree = ""; }; - 3F5CC65D0DA87A4C82E0596B /* SBUFeedNotificationCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFeedNotificationCell.swift; path = ../Sources/View/Channel/MessageCell/NotificationChannel/SBUFeedNotificationCell.swift; sourceTree = ""; }; - 413F9F17DF82A9C6C5E109F6 /* SBUGroupChannelModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelModule.Header.swift; path = ../Sources/Module/Channel/GroupChannel/SBUGroupChannelModule.Header.swift; sourceTree = ""; }; - 425B4764DF5B9E81D707AA21 /* SBUCreateChannelViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateChannelViewController.Deprecated.swift; path = ../Sources/Deprecated/CreateChannel/SBUCreateChannelViewController.Deprecated.swift; sourceTree = ""; }; - 42A1870E2F3FCA6B2519676B /* SBUCacheManager.File.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCacheManager.File.swift; path = ../Sources/Manager/CacheManager/SBUCacheManager.File.swift; sourceTree = ""; }; - 43969DA55E0A647D21D23BBA /* SBUFeedNotificationChannelViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFeedNotificationChannelViewModel.swift; path = ../Sources/ViewModel/Channel/SBUFeedNotificationChannelViewModel.swift; sourceTree = ""; }; - 43F44C559773C1F1CDF52E89 /* SBUOpenChannelViewController.Unavailable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelViewController.Unavailable.swift; path = ../Sources/Deprecated/Channel/SBUOpenChannelViewController.Unavailable.swift; sourceTree = ""; }; - 4461DE456B85C22AA99A29E7 /* SBUBaseViewController.Unavailable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseViewController.Unavailable.swift; path = ../Sources/Deprecated/SBUBaseViewController.Unavailable.swift; sourceTree = ""; }; - 44706646DA26FEB88A7CDA09 /* SBUModerationsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModerationsViewController.swift; path = ../Sources/View/Moderations/SBUModerationsViewController.swift; sourceTree = ""; }; - 44E0ACF1ED6168F2A221DA56 /* SBUGroupChannelModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelModule.swift; path = ../Sources/Module/Channel/GroupChannel/SBUGroupChannelModule.swift; sourceTree = ""; }; - 47C21272A8FADC719009B031 /* SBUToastManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUToastManager.swift; path = ../Sources/Manager/SBUToastManager.swift; sourceTree = ""; }; - 47E88E362FAD792F98F2A78F /* SBUQuotedMessageViewProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuotedMessageViewProtocol.swift; path = "../Sources/View/Life cycles/SBUQuotedMessageViewProtocol.swift"; sourceTree = ""; }; - 487265ECD21AB6C507428924 /* SBUQuoteMessageInputViewParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuoteMessageInputViewParams.swift; path = ../Sources/View/Channel/MessageInput/ViewParams/SBUQuoteMessageInputViewParams.swift; sourceTree = ""; }; - 490F0B8C9DE4B1602C44707E /* SBUNewMessageInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUNewMessageInfo.swift; path = ../Sources/View/Channel/NewMessageInfo/SBUNewMessageInfo.swift; sourceTree = ""; }; - 4A2C66B16A6C3E9FA473932D /* SBUCreateChannelModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateChannelModule.swift; path = ../Sources/Module/SelectUser/CreateChannel/SBUCreateChannelModule.swift; sourceTree = ""; }; - 4ABBE6988A171FF288AACCAF /* SBUGroupChannelSettingCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelSettingCell.swift; path = ../Sources/View/ChannelSettings/Cell/SBUGroupChannelSettingCell.swift; sourceTree = ""; }; - 4B72235A8215E743479BC0B6 /* SBUBaseSelectUserViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseSelectUserViewController.Deprecated.swift; path = ../Sources/Deprecated/UserList/SBUBaseSelectUserViewController.Deprecated.swift; sourceTree = ""; }; - 4CB24B4E4F94EFF4F3A78C33 /* NSObject+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+SBUIKit.swift"; path = "../Sources/Extension/NSObject+SBUIKit.swift"; sourceTree = ""; }; - 4DB0238E2EA4814143CA4CB9 /* SBUTemplateLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUTemplateLabel.swift; path = ../Sources/View/Common/SBUTemplateLabel.swift; sourceTree = ""; }; - 4EC209279A5BAC175A23A021 /* SBUCreateChannelViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateChannelViewModel.swift; path = ../Sources/ViewModel/SelectUser/CreateChannel/SBUCreateChannelViewModel.swift; sourceTree = ""; }; - 4EED70D90E0E015CAAE43F6D /* SBUUserNameView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserNameView.swift; path = ../Sources/View/Channel/CellView/SBUUserNameView.swift; sourceTree = ""; }; - 50C104A47B01D17271BB9FA7 /* SBUMessageThreadViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageThreadViewController.swift; path = ../Sources/View/MessageThread/SBUMessageThreadViewController.swift; sourceTree = ""; }; - 50CBF397951DFE5EEF62C30C /* SBUMessageProfileView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageProfileView.swift; path = ../Sources/View/Channel/CellView/SBUMessageProfileView.swift; sourceTree = ""; }; - 5137C0ECDFE897169AD23E1E /* SBUUserMessageCellParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserMessageCellParams.swift; path = ../Sources/View/Channel/MessageCell/MessageCellParams/SBUUserMessageCellParams.swift; sourceTree = ""; }; - 51F80EA2DDD56D8FAEB78617 /* SBUEmojiListViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUEmojiListViewController.swift; path = ../Sources/View/Channel/Reaction/SBUEmojiListViewController.swift; sourceTree = ""; }; - 5284C3DA615215B459268CBE /* SBUOpenChannelImageContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelImageContentView.swift; path = ../Sources/View/Channel/MessageCell/FileMessageContentView/SBUOpenChannelImageContentView.swift; sourceTree = ""; }; - 52BE4003625B0B9497157D4F /* SBUSuggestedMentionList.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUSuggestedMentionList.swift; path = ../Sources/View/Channel/MessageInput/SBUSuggestedMentionList.swift; sourceTree = ""; }; - 548040194B736EA02AA25CCF /* SBUGroupChannelModule.Input.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelModule.Input.swift; path = ../Sources/Module/Channel/GroupChannel/SBUGroupChannelModule.Input.swift; sourceTree = ""; }; - 54B35EBFFCC37FE0D762F1D8 /* SBUMessageCellConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageCellConfiguration.swift; path = ../Sources/Configuration/MessageCell/SBUMessageCellConfiguration.swift; sourceTree = ""; }; - 5501D67CA2EE5205D821CB9B /* SBUMenuSheetViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMenuSheetViewController.swift; path = ../Sources/View/Common/Menu/SBUMenuSheetViewController.swift; sourceTree = ""; }; - 55C045397CABC01200AFB0C2 /* SBUMenuCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = SBUMenuCell.xib; path = ../Sources/View/Common/Menu/SBUMenuCell.xib; sourceTree = ""; }; - 565A6A767F38D2AF55DB6BE9 /* SBULogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBULogger.swift; path = ../Sources/Util/SBULogger.swift; sourceTree = ""; }; - 57151216E7EB4714BF6237B5 /* SBUUnknownMessageCellParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUnknownMessageCellParams.swift; path = ../Sources/View/Channel/MessageCell/MessageCellParams/SBUUnknownMessageCellParams.swift; sourceTree = ""; }; - 5B4BC7FCE76A9D397CFF8942 /* SBUPendingMessageManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUPendingMessageManager.swift; path = ../Sources/Manager/SBUPendingMessageManager.swift; sourceTree = ""; }; - 5B90D692651580FC135F2078 /* SBUCollectionViewFlowLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCollectionViewFlowLayout.swift; path = ../Sources/View/Common/SBUCollectionViewFlowLayout.swift; sourceTree = ""; }; - 5C7A7D00853030A5B8CC35E6 /* SBUBaseChannelViewController.Keyboard.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelViewController.Keyboard.swift; path = ../Sources/View/Channel/SBUBaseChannelViewController.Keyboard.swift; sourceTree = ""; }; - 5CACF979FBE591D818219313 /* SBUBaseChannelViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelViewModel.swift; path = ../Sources/ViewModel/Channel/SBUBaseChannelViewModel.swift; sourceTree = ""; }; - 5D4C44F792B1F604F7E9DE51 /* SBUCreateChannelTypeSelector.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateChannelTypeSelector.swift; path = ../Sources/View/SelectUser/CreateChannel/View/SBUCreateChannelTypeSelector.swift; sourceTree = ""; }; - 5DA64EC168ACFEB42A17C70A /* SBUModuleSet.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModuleSet.Deprecated.swift; path = ../Sources/Deprecated/SBUModuleSet.Deprecated.swift; sourceTree = ""; }; - 5E14AF74B1309E8538984518 /* SBUOpenChannelCommonContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelCommonContentView.swift; path = ../Sources/View/Channel/MessageCell/FileMessageContentView/SBUOpenChannelCommonContentView.swift; sourceTree = ""; }; - 5E89FF2BFED7E12333AEC2CA /* SBUOpenChannelListViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelListViewModel.swift; path = ../Sources/ViewModel/ChannelList/SBUOpenChannelListViewModel.swift; sourceTree = ""; }; - 5F3EECFB531A965DAB4B19A2 /* SBUBaseChannelListModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelListModule.List.swift; path = ../Sources/Module/ChannelList/SBUBaseChannelListModule.List.swift; sourceTree = ""; }; - 600654ADC5C1AD03B949A989 /* SBUStringSet.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUStringSet.Deprecated.swift; path = ../Sources/Constant/SBUStringSet.Deprecated.swift; sourceTree = ""; }; - 609AD383D4557FDD55CD9CF7 /* SendbirdUI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SendbirdUI.swift; path = ../Sources/SendbirdUI.swift; sourceTree = ""; }; - 613670ACFECCD688E08DF403 /* SBUMarginView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMarginView.swift; path = ../Sources/View/Common/SBUMarginView.swift; sourceTree = ""; }; - 6138DA2AB85156895618AA5D /* SBUCacheManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCacheManager.swift; path = ../Sources/Manager/CacheManager/SBUCacheManager.swift; sourceTree = ""; }; - 617CF220EEBC9C625E3356EC /* SBUInviteUserModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUInviteUserModule.swift; path = ../Sources/Module/SelectUser/InviteUser/SBUInviteUserModule.swift; sourceTree = ""; }; - 61B438D45AC7E74129D86CC7 /* SBUChatNotificationCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChatNotificationCell.swift; path = ../Sources/View/Channel/MessageCell/NotificationChannel/SBUChatNotificationCell.swift; sourceTree = ""; }; - 621C767B4E4974F6CF8FFC1C /* SBUOpenChannelAdminMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelAdminMessageCell.swift; path = ../Sources/View/Channel/MessageCell/OpenChannel/SBUOpenChannelAdminMessageCell.swift; sourceTree = ""; }; - 622DCF37B78F8F22A3F670A9 /* SBUOpenChannelListModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelListModule.swift; path = ../Sources/Module/ChannelList/OpenChannel/SBUOpenChannelListModule.swift; sourceTree = ""; }; - 62A319714EEC647A0848BB65 /* SBUViewModelDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUViewModelDelegate.swift; path = ../Sources/ViewModel/SBUViewModelDelegate.swift; sourceTree = ""; }; - 6335031FE81A51E28535ECAE /* Base.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Base.xcconfig; path = ../Sources/Configurations/Base.xcconfig; sourceTree = ""; }; - 674A14271EC7C0C257C89568 /* SBUReactionCollectionViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUReactionCollectionViewCell.swift; path = ../Sources/View/Channel/Reaction/SBUReactionCollectionViewCell.swift; sourceTree = ""; }; - 67582C9620E1185355B189D3 /* Date+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+SBUIKit.swift"; path = "../Sources/Extension/Date+SBUIKit.swift"; sourceTree = ""; }; - 675E801AD68AEDC93B404365 /* SBUQuotedFileMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuotedFileMessageView.swift; path = ../Sources/View/Channel/MessageCell/Replies/MessageView/SBUQuotedFileMessageView.swift; sourceTree = ""; }; - 6B29909D6B789A434DA5928F /* SBUDownloadManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUDownloadManager.swift; path = ../Sources/Manager/SBUDownloadManager.swift; sourceTree = ""; }; - 6C2FD0115E4B1C3F9B2C6752 /* SBUCreateOpenChannelViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateOpenChannelViewController.swift; path = ../Sources/View/SelectUser/CreateChannel/SBUCreateOpenChannelViewController.swift; sourceTree = ""; }; - 6C86AFB42FA61FEE04451606 /* SBUBaseChannelModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelModule.List.swift; path = ../Sources/Module/Channel/SBUBaseChannelModule.List.swift; sourceTree = ""; }; - 6C933FACFD609E17EAF3A41B /* SBUMessageCellProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageCellProtocol.swift; path = "../Sources/View/Life cycles/SBUMessageCellProtocol.swift"; sourceTree = ""; }; - 6CCE5C3D07F1E31614E55CC6 /* SBUUserCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserCell.swift; path = ../Sources/View/Common/UserCell/SBUUserCell.swift; sourceTree = ""; }; - 6D41D8C41E15F268991B400E /* SBUColorSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUColorSet.swift; path = ../Sources/Theme/SBUColorSet.swift; sourceTree = ""; }; - 6D461B2DCB8A1BEDFBC8AC69 /* SBUBaseChannelListModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelListModule.swift; path = ../Sources/Module/ChannelList/SBUBaseChannelListModule.swift; sourceTree = ""; }; - 6F3C19D9A5CB31FE69B5177F /* SBUCreateChannelModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateChannelModule.List.swift; path = ../Sources/Module/SelectUser/CreateChannel/SBUCreateChannelModule.List.swift; sourceTree = ""; }; - 6F3F525F474074DC040A812E /* SBUAlertView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUAlertView.swift; path = ../Sources/View/Common/SBUAlertView.swift; sourceTree = ""; }; - 6F6B34837ECDC59E6C211931 /* SBUMessageSearchModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageSearchModule.List.swift; path = ../Sources/Module/MessageSearch/SBUMessageSearchModule.List.swift; sourceTree = ""; }; - 70C18F790704F361094F1368 /* SBUViewControllerSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUViewControllerSet.swift; path = ../Sources/View/SBUViewControllerSet.swift; sourceTree = ""; }; - 70FF5914C321DA41EC891ECC /* SBUUnderLineTextField.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUnderLineTextField.swift; path = ../Sources/View/Common/SBUUnderLineTextField.swift; sourceTree = ""; }; - 71D19A26952DCF95A4651A39 /* SBUOpenChannelSettingsViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelSettingsViewModel.swift; path = ../Sources/ViewModel/ChannelSettings/SBUOpenChannelSettingsViewModel.swift; sourceTree = ""; }; - 7271E5BEFB29E3BA89FD418E /* SBUUserMentionConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserMentionConfiguration.swift; path = ../Sources/Configuration/Mention/SBUUserMentionConfiguration.swift; sourceTree = ""; }; - 72C30A2A98340390A3BD7D5A /* SBUFileMessageCellParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFileMessageCellParams.swift; path = ../Sources/View/Channel/MessageCell/MessageCellParams/SBUFileMessageCellParams.swift; sourceTree = ""; }; - 753B1D0857F6A810765645D3 /* SBUTheme+Type.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SBUTheme+Type.swift"; path = "../Sources/Theme/SBUTheme+Type.swift"; sourceTree = ""; }; - 7552D9C76567F65E4BF30A6C /* SBUInviteUserViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUInviteUserViewModel.swift; path = ../Sources/ViewModel/SelectUser/SBUInviteUserViewModel.swift; sourceTree = ""; }; - 77DF532D984B6B08350E2732 /* SBUEnums.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUEnums.swift; path = ../Sources/Enums/SBUEnums.swift; sourceTree = ""; }; - 781830138EF31F2B4A5043B6 /* SBUVoiceFileInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUVoiceFileInfo.swift; path = ../Sources/Model/SBUVoiceFileInfo.swift; sourceTree = ""; }; - 78A945A960656A6CFD41CF53 /* SBUBaseChannelViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelViewController.swift; path = ../Sources/View/Channel/SBUBaseChannelViewController.swift; sourceTree = ""; }; - 79504BB5C9B981AC830C391C /* SBUBaseChannelCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelCell.swift; path = ../Sources/View/ChannelList/ChannelCell/SBUBaseChannelCell.swift; sourceTree = ""; }; - 7A1E5B618E676836BB2C165C /* SBUGroupChannelPushSettingsModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelPushSettingsModule.List.swift; path = ../Sources/Module/NotificationSettings/SBUGroupChannelPushSettingsModule.List.swift; sourceTree = ""; }; - 7B35BD47F4D81087250EBB1E /* SBUParentMessageInfoReactionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUParentMessageInfoReactionView.swift; path = ../Sources/View/Channel/Reaction/SBUParentMessageInfoReactionView.swift; sourceTree = ""; }; - 7C51929570EE2668A2B29D86 /* SBUCommonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCommonItem.swift; path = ../Sources/View/Common/SBUCommonItem.swift; sourceTree = ""; }; - 7E66C47995F9CA97AD3BE514 /* SBUOpenChannelFileMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelFileMessageCell.swift; path = ../Sources/View/Channel/MessageCell/OpenChannel/SBUOpenChannelFileMessageCell.swift; sourceTree = ""; }; - 7F65CFF37E53BCAAA50406AE /* SBUQuotedBaseMessageViewParams.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuotedBaseMessageViewParams.Deprecated.swift; path = ../Sources/Deprecated/Channel/MessageCell/Replies/SBUQuotedBaseMessageViewParams.Deprecated.swift; sourceTree = ""; }; - 7F6A102674F66FFD92F6B5F1 /* SBUOpenChannelModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelModule.Header.swift; path = ../Sources/Module/Channel/OpenChannel/SBUOpenChannelModule.Header.swift; sourceTree = ""; }; - 7F8B39348EFD70EFB2B92ECA /* SBUFeedNotificationChannelViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFeedNotificationChannelViewController.swift; path = ../Sources/View/Channel/SBUFeedNotificationChannelViewController.swift; sourceTree = ""; }; - 80DAFB0E7E9BF59D6845304B /* SBUMessageWebView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageWebView.swift; path = ../Sources/View/Channel/CellView/SBUMessageWebView.swift; sourceTree = ""; }; - 811175E29B62CC51D08456AF /* SBUQuoteMessageInputView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuoteMessageInputView.swift; path = ../Sources/View/Channel/MessageInput/SBUQuoteMessageInputView.swift; sourceTree = ""; }; - 81F79491911AF741525EAAEB /* QuotedFileImageContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuotedFileImageContentView.swift; path = ../Sources/View/Channel/MessageCell/Replies/MessageView/QuotedFileImageContentView.swift; sourceTree = ""; }; - 82B916F3E709BE44FF1C817F /* UIApplication+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+SBUIKit.swift"; path = "../Sources/Extension/UIApplication+SBUIKit.swift"; sourceTree = ""; }; - 851B9B6F54F5C83ADC47FE15 /* SBUMessageSearchModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageSearchModule.swift; path = ../Sources/Module/MessageSearch/SBUMessageSearchModule.swift; sourceTree = ""; }; - 85E9CEB9C5487DC6A9BFDF0D /* SBUInviteUserModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUInviteUserModule.List.swift; path = ../Sources/Module/SelectUser/InviteUser/SBUInviteUserModule.List.swift; sourceTree = ""; }; - 87AF7B27AEE86C110113123B /* SBUBaseChannelModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelModule.swift; path = ../Sources/Module/Channel/SBUBaseChannelModule.swift; sourceTree = ""; }; - 88619A0779C35F1F7FA3800F /* SBUMessageThreadViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageThreadViewModel.swift; path = ../Sources/ViewModel/MessageThread/SBUMessageThreadViewModel.swift; sourceTree = ""; }; - 888AB74F0C8F4DBEBDD3E0F1 /* SBUConstant.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUConstant.swift; path = ../Sources/Constant/SBUConstant.swift; sourceTree = ""; }; - 89E97777A1F0FB6681778017 /* SBUOpenChannelViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelViewController.swift; path = ../Sources/View/Channel/SBUOpenChannelViewController.swift; sourceTree = ""; }; - 8A5C7231AE05F022FA044D2B /* SBUUser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUser.swift; path = ../Sources/Model/SBUUser.swift; sourceTree = ""; }; - 8A848ADDAD718074DB17CCBF /* SBUMessageSearchResultCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageSearchResultCell.swift; path = ../Sources/View/MessageSearch/Cell/SBUMessageSearchResultCell.swift; sourceTree = ""; }; - 8B11A1A8D201454F7017BA22 /* SBUQuotedUserMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuotedUserMessageView.swift; path = ../Sources/View/Channel/MessageCell/Replies/MessageView/SBUQuotedUserMessageView.swift; sourceTree = ""; }; - 8D3FBA15AFA6B0FC450BECFA /* SBUIconSetType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUIconSetType.swift; path = ../Sources/Enums/SBUIconSetType.swift; sourceTree = ""; }; - 8D9CE8D4093A517E597EE409 /* SBUConfig.OpenChannel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUConfig.OpenChannel.swift; path = ../Sources/Configuration/SBUConfig.OpenChannel.swift; sourceTree = ""; }; - 8DB2EEA3B248BF1043AAF2A2 /* SBURegisterOperatorModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBURegisterOperatorModule.List.swift; path = ../Sources/Module/SelectUser/RegisterOperator/SBURegisterOperatorModule.List.swift; sourceTree = ""; }; - 8DE3A9D6B2936BFBF52DF142 /* SBUConfig.CodingKeys.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUConfig.CodingKeys.swift; path = ../Sources/Configuration/SBUConfig.CodingKeys.swift; sourceTree = ""; }; - 8E1E99C07C642C6A9B1C5EB4 /* SBUUserMessageTextViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserMessageTextViewModel.swift; path = ../Sources/View/Channel/ViewModel/SBUUserMessageTextViewModel.swift; sourceTree = ""; }; - 8E548C06CCD549424CEC34F2 /* SBUBaseChannelListModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelListModule.Header.swift; path = ../Sources/Module/ChannelList/SBUBaseChannelListModule.Header.swift; sourceTree = ""; }; - 8F8446A6307248E4512171F6 /* UIView+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+SBUIKit.swift"; path = "../Sources/Extension/UIView+SBUIKit.swift"; sourceTree = ""; }; - 9064B855E3702BFD11947D0B /* SBUGlobals.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGlobals.swift; path = ../Sources/SBUGlobals.swift; sourceTree = ""; }; - 9212466A3D47B284C595BD5B /* SBUConfig.Common.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUConfig.Common.swift; path = ../Sources/Configuration/SBUConfig.Common.swift; sourceTree = ""; }; - 934234A0EF4D235264363528 /* SBUTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUTableViewCell.swift; path = "../Sources/View/Life cycles/SBUTableViewCell.swift"; sourceTree = ""; }; - 93955B67C13C0FF243E516A8 /* SBUUserListModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserListModule.swift; path = ../Sources/Module/UserList/SBUUserListModule.swift; sourceTree = ""; }; - 9471473B5B7A6E9DBDC8E05F /* SBUOpenChannelSettingsModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelSettingsModule.List.swift; path = ../Sources/Module/ChannelSettings/OpenChannel/SBUOpenChannelSettingsModule.List.swift; sourceTree = ""; }; - 952478D52785A1D36726D91F /* SBUCreateOpenChannelViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateOpenChannelViewModel.swift; path = ../Sources/ViewModel/SelectUser/CreateChannel/SBUCreateOpenChannelViewModel.swift; sourceTree = ""; }; - 9580F0FFAE8FE439A9832253 /* SBUFileMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFileMessageCell.swift; path = ../Sources/View/Channel/MessageCell/SBUFileMessageCell.swift; sourceTree = ""; }; - 95981CA2FE730F675313EF5B /* SBUPhotoCollectionViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUPhotoCollectionViewCell.swift; path = ../Sources/View/Common/PhotoLibrary/SBUPhotoCollectionViewCell.swift; sourceTree = ""; }; - 96134C5985795B294F985505 /* SBUBaseChannelSettingsViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelSettingsViewController.Deprecated.swift; path = ../Sources/Deprecated/ChannelSettings/SBUBaseChannelSettingsViewController.Deprecated.swift; sourceTree = ""; }; - 968542872CC091CBDB1DFEFF /* SBUBaseChannelListViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelListViewModel.swift; path = ../Sources/ViewModel/ChannelList/SBUBaseChannelListViewModel.swift; sourceTree = ""; }; - 9823E7A36CC90FF0309F0659 /* SBUOpenChannelModule.Input.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelModule.Input.swift; path = ../Sources/Module/Channel/OpenChannel/SBUOpenChannelModule.Input.swift; sourceTree = ""; }; - 98E1C9A45886D8736C7FECF4 /* SBUModerationsViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModerationsViewModel.swift; path = ../Sources/ViewModel/ChannelSettings/SBUModerationsViewModel.swift; sourceTree = ""; }; - 98F3AA9693D851ECCC5BB64A /* String+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+SBUIKit.swift"; path = "../Sources/Extension/String+SBUIKit.swift"; sourceTree = ""; }; - 999F96211E71DCA11024EDC6 /* SBUConfig.Base.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUConfig.Base.swift; path = ../Sources/Configuration/SBUConfig.Base.swift; sourceTree = ""; }; - 9A8BD43643A99212F382A97C /* SBUOpenChannelModule.Media.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelModule.Media.swift; path = ../Sources/Module/Channel/OpenChannel/SBUOpenChannelModule.Media.swift; sourceTree = ""; }; - 9AA44347CA9FC437856EC732 /* SBUTableViewCell.Unavailable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUTableViewCell.Unavailable.swift; path = ../Sources/Deprecated/SBUTableViewCell.Unavailable.swift; sourceTree = ""; }; - 9AB44AEDA04823E0D2638560 /* SBUOpenChannelModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelModule.List.swift; path = ../Sources/Module/Channel/OpenChannel/SBUOpenChannelModule.List.swift; sourceTree = ""; }; - 9AB9A53070C4D1F77CEDE131 /* SBUVoicePlayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUVoicePlayer.swift; path = ../Sources/Manager/SBUVoicePlayer.swift; sourceTree = ""; }; - 9B81D08012A06BC2BBB3EB3E /* UINavigationController+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UINavigationController+SBUIKit.swift"; path = "../Sources/Extension/UINavigationController+SBUIKit.swift"; sourceTree = ""; }; - 9B94C0B246A1E21F447B2430 /* SBUBaseMessageCellParams.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseMessageCellParams.Deprecated.swift; path = ../Sources/Deprecated/Channel/MessageCell/MessageCellParams/SBUBaseMessageCellParams.Deprecated.swift; sourceTree = ""; }; + 006B06B77B5FD1393884CD6E /* SBUCreateOpenChannelModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateOpenChannelModule.Header.swift; path = ../Sources/Module/SelectUser/CreateChannel/SBUCreateOpenChannelModule.Header.swift; sourceTree = ""; }; + 00B6EA1E561E77D6BB6C04F0 /* SBUQuotedBaseMessageViewParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuotedBaseMessageViewParams.swift; path = ../Sources/View/Channel/MessageCell/Replies/ViewParams/SBUQuotedBaseMessageViewParams.swift; sourceTree = ""; }; + 00D7327430E43A8DBA0C2A7D /* SBUActionSheet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUActionSheet.swift; path = ../Sources/View/Common/SBUActionSheet.swift; sourceTree = ""; }; + 0119C93BB5816A74773D5D8F /* SBUBaseViewController.Unavailable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseViewController.Unavailable.swift; path = ../Sources/Deprecated/SBUBaseViewController.Unavailable.swift; sourceTree = ""; }; + 03509DD13C216C73EEA96E76 /* SBUConfig.Common.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUConfig.Common.swift; path = ../Sources/Configuration/SBUConfig.Common.swift; sourceTree = ""; }; + 0364CA5ABCAC9FB36CFC481F /* Date+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+SBUIKit.swift"; path = "../Sources/Extension/Date+SBUIKit.swift"; sourceTree = ""; }; + 04EF831CD94698C15BCB0DB3 /* SBUCreateChannelTypeSelector.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateChannelTypeSelector.swift; path = ../Sources/View/SelectUser/CreateChannel/View/SBUCreateChannelTypeSelector.swift; sourceTree = ""; }; + 059644F1D75A802598A9BDD8 /* SBUUserListViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserListViewController.swift; path = ../Sources/View/UserList/SBUUserListViewController.swift; sourceTree = ""; }; + 05CBB523FF393279372DC16F /* SBUCreateChannelModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateChannelModule.List.swift; path = ../Sources/Module/SelectUser/CreateChannel/SBUCreateChannelModule.List.swift; sourceTree = ""; }; + 062312A9D9F2CD98F6F8161F /* UIView+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+SBUIKit.swift"; path = "../Sources/Extension/UIView+SBUIKit.swift"; sourceTree = ""; }; + 062354D4B0C81C7FE0CA82E3 /* SBUOpenChannelSettingCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelSettingCell.swift; path = ../Sources/View/ChannelSettings/Cell/SBUOpenChannelSettingCell.swift; sourceTree = ""; }; + 0AC43A90FFF9881B02D92292 /* SBUMessageSearchModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageSearchModule.Header.swift; path = ../Sources/Module/MessageSearch/SBUMessageSearchModule.Header.swift; sourceTree = ""; }; + 0BD9ACDB8B556D7561B46E27 /* Array+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+SBUIKit.swift"; path = "../Sources/Extension/Array+SBUIKit.swift"; sourceTree = ""; }; + 0DC457DEFD6198D5E8D3007A /* SBUInviteUserModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUInviteUserModule.Header.swift; path = ../Sources/Module/SelectUser/InviteUser/SBUInviteUserModule.Header.swift; sourceTree = ""; }; + 0E60C6455A8005E71FA6A071 /* Data+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+SBUIKit.swift"; path = "../Sources/Extension/Data+SBUIKit.swift"; sourceTree = ""; }; + 10CBDC8B7F93CB027DDF6956 /* Base.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Base.xcconfig; path = ../Sources/Configurations/Base.xcconfig; sourceTree = ""; }; + 11572D2FFDE52AB3029C09A0 /* SBUGroupChannelPushSettingsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelPushSettingsViewController.swift; path = ../Sources/View/NotificationSettings/SBUGroupChannelPushSettingsViewController.swift; sourceTree = ""; }; + 12EF0CF39774DF30BA37B0DE /* SBUNotificationNavigationTitleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUNotificationNavigationTitleView.swift; path = ../Sources/View/Common/SBUNotificationNavigationTitleView.swift; sourceTree = ""; }; + 143457A990EED0E3D1728475 /* SBUPermissionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUPermissionManager.swift; path = ../Sources/Manager/SBUPermissionManager.swift; sourceTree = ""; }; + 15894570D0B51B352FA0ED47 /* SBUGroupChannelListViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelListViewController.swift; path = ../Sources/View/ChannelList/SBUGroupChannelListViewController.swift; sourceTree = ""; }; + 1591F4DAA796ECB8FFB371F4 /* SBUMessageReactionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageReactionView.swift; path = ../Sources/View/Channel/Reaction/SBUMessageReactionView.swift; sourceTree = ""; }; + 16817960D797451C3A427709 /* SBUFeedNotificationCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFeedNotificationCell.swift; path = ../Sources/View/Channel/MessageCell/NotificationChannel/SBUFeedNotificationCell.swift; sourceTree = ""; }; + 172AC5FDCDD396336908039A /* SBUConfig.OpenChannel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUConfig.OpenChannel.swift; path = ../Sources/Configuration/SBUConfig.OpenChannel.swift; sourceTree = ""; }; + 1746A9DBA42951921198945D /* SBUMessageThreadViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageThreadViewController.swift; path = ../Sources/View/MessageThread/SBUMessageThreadViewController.swift; sourceTree = ""; }; + 17891AFBA0475E8476D8CD24 /* SBUGroupChannelSettingsModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelSettingsModule.List.swift; path = ../Sources/Module/ChannelSettings/GroupChannel/SBUGroupChannelSettingsModule.List.swift; sourceTree = ""; }; + 19F421F98889E3FCFC352043 /* SBUCreateChannelModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateChannelModule.Header.swift; path = ../Sources/Module/SelectUser/CreateChannel/SBUCreateChannelModule.Header.swift; sourceTree = ""; }; + 1A4D825ADA8BB2A7CEBEAB90 /* SBUOpenChannelCommonContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelCommonContentView.swift; path = ../Sources/View/Channel/MessageCell/FileMessageContentView/SBUOpenChannelCommonContentView.swift; sourceTree = ""; }; + 1ADE52523AC0CA4484EE6A1B /* SBUBaseSelectUserViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseSelectUserViewModel.swift; path = ../Sources/ViewModel/SelectUser/SBUBaseSelectUserViewModel.swift; sourceTree = ""; }; + 1B229A38B990D6B5BBBD3501 /* SBUMessageSearchViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageSearchViewModel.swift; path = ../Sources/ViewModel/MessageSearch/SBUMessageSearchViewModel.swift; sourceTree = ""; }; + 1D74683E239E77487D1F3EF6 /* SBUMessageInputMode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageInputMode.swift; path = ../Sources/View/Channel/MessageInput/SBUMessageInputMode.swift; sourceTree = ""; }; + 200F98641EB0E321D04492BE /* SBUGroupChannelPushSettingsModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelPushSettingsModule.swift; path = ../Sources/Module/NotificationSettings/SBUGroupChannelPushSettingsModule.swift; sourceTree = ""; }; + 205D0369C7A73E519D8FC874 /* SBUMessageThreadModule.Input.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageThreadModule.Input.swift; path = ../Sources/Module/MessageThread/SBUMessageThreadModule.Input.swift; sourceTree = ""; }; + 20E97065B02C3EF653AA9BFE /* SBUOpenChannelModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelModule.List.swift; path = ../Sources/Module/Channel/OpenChannel/SBUOpenChannelModule.List.swift; sourceTree = ""; }; + 21307B9A4C62110BC9E4FF1A /* SBUBaseChannelSettingsViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelSettingsViewModel.swift; path = ../Sources/ViewModel/ChannelSettings/SBUBaseChannelSettingsViewModel.swift; sourceTree = ""; }; + 2361CD6262B91E929F1B7209 /* SBUFeedNotificationChannelModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFeedNotificationChannelModule.Header.swift; path = ../Sources/Module/Channel/NotificationChannel/Feed/SBUFeedNotificationChannelModule.Header.swift; sourceTree = ""; }; + 24D13B53AABF56B2E0FA2028 /* SBUGroupChannelModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelModule.Header.swift; path = ../Sources/Module/Channel/GroupChannel/SBUGroupChannelModule.Header.swift; sourceTree = ""; }; + 2534EC903E25A70196766A5B /* SBUDownloadManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUDownloadManager.swift; path = ../Sources/Manager/SBUDownloadManager.swift; sourceTree = ""; }; + 254AE3883C6081BD559CCBB4 /* SBUCardListView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCardListView.swift; path = ../Sources/View/Channel/MessageCell/Carousel/Views/SBUCardListView.swift; sourceTree = ""; }; + 256BD30990A7D8C0999755A2 /* MessageTemplateTestViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageTemplateTestViewController.swift; path = ../Sources/CustomSyntaxTest/MessageTemplateTestViewController.swift; sourceTree = ""; }; + 2759679D7C60BE88C8FC058C /* SBUIconSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUIconSet.swift; path = ../Sources/Theme/SBUIconSet.swift; sourceTree = ""; }; + 2817D981E3127812732F6CB8 /* SBUCreateChannelViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateChannelViewModel.swift; path = ../Sources/ViewModel/SelectUser/CreateChannel/SBUCreateChannelViewModel.swift; sourceTree = ""; }; + 282FEBEB6DECCB7D3CAB883D /* SBUCoverImageView.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCoverImageView.Deprecated.swift; path = ../Sources/Deprecated/SBUCoverImageView.Deprecated.swift; sourceTree = ""; }; + 284F7DC346769776D8EE30DE /* SBUQuotedBaseMessageViewParams.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuotedBaseMessageViewParams.Deprecated.swift; path = ../Sources/Deprecated/Channel/MessageCell/Replies/SBUQuotedBaseMessageViewParams.Deprecated.swift; sourceTree = ""; }; + 290A3B248A5F7DCC58944BA4 /* SBUVoiceFileInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUVoiceFileInfo.swift; path = ../Sources/Model/SBUVoiceFileInfo.swift; sourceTree = ""; }; + 29418D3AF26BFD41B321D228 /* SBUFeedNotificationChannelViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFeedNotificationChannelViewController.swift; path = ../Sources/View/Channel/SBUFeedNotificationChannelViewController.swift; sourceTree = ""; }; + 2946BCAF1C1894A25233975A /* UIColor+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+SBUIKit.swift"; path = "../Sources/Extension/UIColor+SBUIKit.swift"; sourceTree = ""; }; + 29960A3C98ECF43AF2F1A6A3 /* SBUEmptyView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUEmptyView.swift; path = ../Sources/View/Common/SBUEmptyView.swift; sourceTree = ""; }; + 29D00CF158D63A4A17CE3A65 /* SBUNotificationCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUNotificationCell.swift; path = ../Sources/View/Channel/MessageCell/NotificationChannel/SBUNotificationCell.swift; sourceTree = ""; }; + 29FE4DC6E08161FA775109F2 /* SBUCardViewParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCardViewParams.swift; path = ../Sources/View/Channel/MessageCell/Carousel/ViewParams/SBUCardViewParams.swift; sourceTree = ""; }; + 2B67E99871234741111585AB /* SBUQuotedMessageViewProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuotedMessageViewProtocol.swift; path = "../Sources/View/Life cycles/SBUQuotedMessageViewProtocol.swift"; sourceTree = ""; }; + 2C0A32577B5C0825ABAF8501 /* SBUQuotedUserMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuotedUserMessageView.swift; path = ../Sources/View/Channel/MessageCell/Replies/MessageView/SBUQuotedUserMessageView.swift; sourceTree = ""; }; + 2C69F47B1886465E868AE8B0 /* SBUQuoteMessageInputViewProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuoteMessageInputViewProtocol.swift; path = "../Sources/View/Life cycles/SBUQuoteMessageInputViewProtocol.swift"; sourceTree = ""; }; + 2ED7DEADCFAF2881A348FAC5 /* SBUChatNotificationChannelViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChatNotificationChannelViewModel.swift; path = ../Sources/ViewModel/Channel/SBUChatNotificationChannelViewModel.swift; sourceTree = ""; }; + 2F3A56F881885C6849D81DCD /* SBUGroupChannelViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelViewController.swift; path = ../Sources/View/Channel/SBUGroupChannelViewController.swift; sourceTree = ""; }; + 3130C6885B6F03030307296C /* SBUMenuSheetViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMenuSheetViewController.swift; path = ../Sources/View/Common/Menu/SBUMenuSheetViewController.swift; sourceTree = ""; }; + 32C74D1F14FF4233F090D2C1 /* SBUMentionConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMentionConfiguration.swift; path = ../Sources/Configuration/Mention/SBUMentionConfiguration.swift; sourceTree = ""; }; + 340099D46A47C1BCDE1F66BA /* SBUUserCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserCell.swift; path = ../Sources/View/Common/UserCell/SBUUserCell.swift; sourceTree = ""; }; + 352A9863F61A2790C87F88B5 /* SBUGroupChannelSettingsModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelSettingsModule.swift; path = ../Sources/Module/ChannelSettings/GroupChannel/SBUGroupChannelSettingsModule.swift; sourceTree = ""; }; + 35555F2C406CCFE6E5612D58 /* SBUStringSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUStringSet.swift; path = ../Sources/Constant/SBUStringSet.swift; sourceTree = ""; }; + 356EA68A1B4B5838CBCA214A /* SBUAdminMessageCellParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUAdminMessageCellParams.swift; path = ../Sources/View/Channel/MessageCell/MessageCellParams/SBUAdminMessageCellParams.swift; sourceTree = ""; }; + 35DD937013067D14126BD0F9 /* SBUBaseChannelModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelModule.List.swift; path = ../Sources/Module/Channel/SBUBaseChannelModule.List.swift; sourceTree = ""; }; + 3649D3789E8EBDC7EF00C32B /* SBUDateFormatSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUDateFormatSet.swift; path = ../Sources/Constant/SBUDateFormatSet.swift; sourceTree = ""; }; + 3682CA27D369E792CC991916 /* SBUTheme.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUTheme.Deprecated.swift; path = ../Sources/Deprecated/SBUTheme.Deprecated.swift; sourceTree = ""; }; + 368CE9BFF196247B5D1E3AD8 /* SBUMessageSearchModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageSearchModule.swift; path = ../Sources/Module/MessageSearch/SBUMessageSearchModule.swift; sourceTree = ""; }; + 36D26EF086827A1D7008E4E5 /* SBUBaseChannelViewController.Keyboard.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelViewController.Keyboard.swift; path = ../Sources/View/Channel/SBUBaseChannelViewController.Keyboard.swift; sourceTree = ""; }; + 36E6537E1EDCFF75988B1D90 /* VoiceMessageStatus.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VoiceMessageStatus.swift; path = ../Sources/Enums/VoiceMessageStatus.swift; sourceTree = ""; }; + 37CFA16E96C106D0B5B8EF5F /* SBUReactionsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUReactionsViewController.swift; path = ../Sources/View/Channel/Reaction/SBUReactionsViewController.swift; sourceTree = ""; }; + 37F02E4EAB3D2FF131E20B40 /* SBUInviteUserViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUInviteUserViewModel.swift; path = ../Sources/ViewModel/SelectUser/SBUInviteUserViewModel.swift; sourceTree = ""; }; + 382B2A8EC16B1456CF836A73 /* SBUUnknownMessageCellParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUnknownMessageCellParams.swift; path = ../Sources/View/Channel/MessageCell/MessageCellParams/SBUUnknownMessageCellParams.swift; sourceTree = ""; }; + 38B993F2E96BC3680EE86BBB /* SBUFileMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFileMessageCell.swift; path = ../Sources/View/Channel/MessageCell/SBUFileMessageCell.swift; sourceTree = ""; }; + 39AC484A4A814FC32054CB20 /* SBUCacheManager.File.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCacheManager.File.swift; path = ../Sources/Manager/CacheManager/SBUCacheManager.File.swift; sourceTree = ""; }; + 39BE7BF6B2F1DD846684F281 /* SBUUserListViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserListViewModel.swift; path = ../Sources/ViewModel/UserList/SBUUserListViewModel.swift; sourceTree = ""; }; + 3A1B09BD25B331EB14AFA06D /* SBUAlertView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUAlertView.swift; path = ../Sources/View/Common/SBUAlertView.swift; sourceTree = ""; }; + 3A27E6F2F1A6C7B6304574C0 /* SBUGroupChannelCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelCell.swift; path = ../Sources/View/ChannelList/ChannelCell/SBUGroupChannelCell.swift; sourceTree = ""; }; + 3A78DF0EE384669D517F1EFF /* SBUMessageWebViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageWebViewModel.swift; path = ../Sources/View/Channel/ViewModel/SBUMessageWebViewModel.swift; sourceTree = ""; }; + 3C279AF5AB0BD07E8440EAA6 /* SBUOpenChannelSettingsModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelSettingsModule.swift; path = ../Sources/Module/ChannelSettings/OpenChannel/SBUOpenChannelSettingsModule.swift; sourceTree = ""; }; + 3CF834D3E9056FDB3CB27320 /* SBUBaseSelectUserViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseSelectUserViewController.swift; path = ../Sources/View/SelectUser/SBUBaseSelectUserViewController.swift; sourceTree = ""; }; + 3D303F8D1B6979687B61E9CE /* SBUUserMessageCellParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserMessageCellParams.swift; path = ../Sources/View/Channel/MessageCell/MessageCellParams/SBUUserMessageCellParams.swift; sourceTree = ""; }; + 3D8FDE3655125635A2283B4A /* SBUConfig.CodingKeys.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUConfig.CodingKeys.swift; path = ../Sources/Configuration/SBUConfig.CodingKeys.swift; sourceTree = ""; }; + 3DCB3A13C5D2451070BFC2CF /* SBUChannelPushSettingCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChannelPushSettingCell.swift; path = ../Sources/View/NotificationSettings/Cell/SBUChannelPushSettingCell.swift; sourceTree = ""; }; + 3DFB1BA9C56B4B12C760E328 /* SBUAvailable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUAvailable.swift; path = ../Sources/SBUAvailable.swift; sourceTree = ""; }; + 3E86D6B400BB6E8BD5722710 /* SBUCacheManager.Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCacheManager.Image.swift; path = ../Sources/Manager/CacheManager/SBUCacheManager.Image.swift; sourceTree = ""; }; + 3F0361EDB6915AF2F627431D /* SBUInviteUserModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUInviteUserModule.List.swift; path = ../Sources/Module/SelectUser/InviteUser/SBUInviteUserModule.List.swift; sourceTree = ""; }; + 3F3BF87AC6D4B061EFF48654 /* SBUBaseChannelSettingsModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelSettingsModule.swift; path = ../Sources/Module/ChannelSettings/SBUBaseChannelSettingsModule.swift; sourceTree = ""; }; + 4171AA7EE334F21E87D848D2 /* SBUPhotoAccess.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUPhotoAccess.swift; path = ../Sources/View/Common/PhotoLibrary/SBUPhotoAccess.swift; sourceTree = ""; }; + 42B5CF5B20F6251DC7AD977B /* SBUCardListData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCardListData.swift; path = ../Sources/Model/SBUCardListData.swift; sourceTree = ""; }; + 42E9DD64B6C61EBD3C1C191A /* SBUBaseChannelListViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelListViewController.swift; path = ../Sources/View/ChannelList/SBUBaseChannelListViewController.swift; sourceTree = ""; }; + 43457EA12A745BF0405FCAEA /* SBUMessageWebView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageWebView.swift; path = ../Sources/View/Channel/CellView/SBUMessageWebView.swift; sourceTree = ""; }; + 438089065331BC0C313CE422 /* SBUMessageThreadModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageThreadModule.List.swift; path = ../Sources/Module/MessageThread/SBUMessageThreadModule.List.swift; sourceTree = ""; }; + 43919D1985BB3B3B94AF129A /* SBURegisterOperatorModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBURegisterOperatorModule.Header.swift; path = ../Sources/Module/SelectUser/RegisterOperator/SBURegisterOperatorModule.Header.swift; sourceTree = ""; }; + 43D06F6CD4BAB7BB20B7F513 /* SBUChatNotificationChannelViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChatNotificationChannelViewController.swift; path = ../Sources/View/Channel/SBUChatNotificationChannelViewController.swift; sourceTree = ""; }; + 43E3AA9A5090886192ED2BB3 /* SBUTableViewCell.Unavailable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUTableViewCell.Unavailable.swift; path = ../Sources/Deprecated/SBUTableViewCell.Unavailable.swift; sourceTree = ""; }; + 43ED6D0121771F1230E5A5B7 /* SBUPhotoCollectionViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUPhotoCollectionViewCell.swift; path = ../Sources/View/Common/PhotoLibrary/SBUPhotoCollectionViewCell.swift; sourceTree = ""; }; + 45B058D1555F7C6B7E4D627F /* SBUViewControllerSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUViewControllerSet.swift; path = ../Sources/View/SBUViewControllerSet.swift; sourceTree = ""; }; + 46CBE3AE048714D2802A7BD3 /* SBUUser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUser.swift; path = ../Sources/Model/SBUUser.swift; sourceTree = ""; }; + 47BA4561098AD5C86F00EEA4 /* SBUSelectablePhotoViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUSelectablePhotoViewController.swift; path = ../Sources/View/Common/PhotoLibrary/SBUSelectablePhotoViewController.swift; sourceTree = ""; }; + 47BA6ABD5DA3E6ADC49A39DA /* SBUTheme.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUTheme.swift; path = ../Sources/Theme/SBUTheme.swift; sourceTree = ""; }; + 494A6A866E985C8D4D7D808A /* SBUCacheManager.NotificationSetting.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCacheManager.NotificationSetting.swift; path = ../Sources/Manager/CacheManager/SBUCacheManager.NotificationSetting.swift; sourceTree = ""; }; + 495B34282ADF94161150ADA8 /* URL+SBUKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+SBUKit.swift"; path = "../Sources/Extension/URL+SBUKit.swift"; sourceTree = ""; }; + 49830EE06BF38AF718203A9A /* SBUDebouncer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUDebouncer.swift; path = ../Sources/Util/SBUDebouncer.swift; sourceTree = ""; }; + 49DC53532B8EF75EEDD53CFF /* MessageTemplateParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageTemplateParser.swift; path = ../Sources/CustomSyntaxTest/MessageTemplateParser.swift; sourceTree = ""; }; + 4A3FACA4F09C6E96C666BEFA /* SBURegisterOperatorViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBURegisterOperatorViewModel.swift; path = ../Sources/ViewModel/SelectUser/SBURegisterOperatorViewModel.swift; sourceTree = ""; }; + 4A489494BAC41C18B23BA9F4 /* SBUOpenChannelModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelModule.Header.swift; path = ../Sources/Module/Channel/OpenChannel/SBUOpenChannelModule.Header.swift; sourceTree = ""; }; + 4B583B3D275AE73E233DEB8C /* SBUModerationCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModerationCell.swift; path = ../Sources/View/ChannelSettings/Cell/SBUModerationCell.swift; sourceTree = ""; }; + 4B5894CD5513ACF49D2F050B /* SBUOpenChannelListViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelListViewController.swift; path = ../Sources/View/ChannelList/SBUOpenChannelListViewController.swift; sourceTree = ""; }; + 4C71EE0DCA4B5108CED79395 /* SBUMenuView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMenuView.swift; path = ../Sources/View/Common/Menu/SBUMenuView.swift; sourceTree = ""; }; + 4D028BDC8A47AAA486573102 /* UIStackView.SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIStackView.SBUIKit.swift; path = ../Sources/Extension/UIStackView.SBUIKit.swift; sourceTree = ""; }; + 4E012D233A4916004E16FD46 /* SBUBaseSelectUserModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseSelectUserModule.Header.swift; path = ../Sources/Module/SelectUser/SBUBaseSelectUserModule.Header.swift; sourceTree = ""; }; + 4EC7BC2D22C1870C4CFDA1BA /* UINavigationController+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UINavigationController+SBUIKit.swift"; path = "../Sources/Extension/UINavigationController+SBUIKit.swift"; sourceTree = ""; }; + 4F4EA21B4CE7B9E0E5EBF7A8 /* SBUBaseChannelModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelModule.swift; path = ../Sources/Module/Channel/SBUBaseChannelModule.swift; sourceTree = ""; }; + 4F9BDEA7D15345561095A1E6 /* SBUOpenChannelSettingsViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelSettingsViewModel.swift; path = ../Sources/ViewModel/ChannelSettings/SBUOpenChannelSettingsViewModel.swift; sourceTree = ""; }; + 4FEA757DE96503A09CACE1ED /* SBUBaseFileContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseFileContentView.swift; path = ../Sources/View/Channel/MessageCell/FileMessageContentView/SBUBaseFileContentView.swift; sourceTree = ""; }; + 525830066E3E7E9F709999CC /* SBUUserMessageTextViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserMessageTextViewModel.swift; path = ../Sources/View/Channel/ViewModel/SBUUserMessageTextViewModel.swift; sourceTree = ""; }; + 5282B787F38F22CD5B03E31F /* SBUMemberListViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMemberListViewController.Deprecated.swift; path = ../Sources/Deprecated/MemberList/SBUMemberListViewController.Deprecated.swift; sourceTree = ""; }; + 52F765480752E5E845D98960 /* SBUMessageSearchViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageSearchViewController.Deprecated.swift; path = ../Sources/Deprecated/MessageSearch/SBUMessageSearchViewController.Deprecated.swift; sourceTree = ""; }; + 539EF029708D8DC3BCC9C110 /* SBUStackView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUStackView.swift; path = ../Sources/View/Common/SBUStackView.swift; sourceTree = ""; }; + 54070888A703766E9FF4932B /* SBUGlobals.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGlobals.swift; path = ../Sources/SBUGlobals.swift; sourceTree = ""; }; + 54957F4DA19C8957661E8522 /* Debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = ../Sources/Configurations/Debug.xcconfig; sourceTree = ""; }; + 54D008A6338A957FE7533AE0 /* SBUQuickReplyView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuickReplyView.swift; path = ../Sources/View/Channel/MessageCell/QuickReply/Views/SBUQuickReplyView.swift; sourceTree = ""; }; + 5537CDCC1CF432FFDC664CF0 /* SBUFeedNotificationChannelModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFeedNotificationChannelModule.List.swift; path = ../Sources/Module/Channel/NotificationChannel/Feed/SBUFeedNotificationChannelModule.List.swift; sourceTree = ""; }; + 56400AFB607A5052FA0BD185 /* SBUUserListModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserListModule.swift; path = ../Sources/Module/UserList/SBUUserListModule.swift; sourceTree = ""; }; + 569EED9F8138E48EE1FB3657 /* SBUGroupChannelPushSettingsModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelPushSettingsModule.List.swift; path = ../Sources/Module/NotificationSettings/SBUGroupChannelPushSettingsModule.List.swift; sourceTree = ""; }; + 579521E3B9E699FE7F029616 /* SBUQuickReplyOptionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuickReplyOptionView.swift; path = ../Sources/View/Channel/MessageCell/QuickReply/Views/SBUQuickReplyOptionView.swift; sourceTree = ""; }; + 5A4CDAA5185849CF0B3DE396 /* Float+SBUKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Float+SBUKit.swift"; path = "../Sources/Extension/Float+SBUKit.swift"; sourceTree = ""; }; + 5CF3A14F160D730911531AA9 /* SBUBaseChannelViewController.Unavailable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelViewController.Unavailable.swift; path = ../Sources/Deprecated/Channel/SBUBaseChannelViewController.Unavailable.swift; sourceTree = ""; }; + 5CF9D0C6E1A03EC3B1A275CC /* SBUHighlightMessageInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUHighlightMessageInfo.swift; path = ../Sources/Model/SBUHighlightMessageInfo.swift; sourceTree = ""; }; + 5D46ADF492A68DA66F6952AD /* SBULayoutableButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBULayoutableButton.swift; path = ../Sources/View/Common/SBULayoutableButton.swift; sourceTree = ""; }; + 5DFEB8B37E6B92819455E5C5 /* SBUGroupChannelModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelModule.List.swift; path = ../Sources/Module/Channel/GroupChannel/SBUGroupChannelModule.List.swift; sourceTree = ""; }; + 5F08183BDF9E55BC9BB33916 /* SBUFontSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFontSet.swift; path = ../Sources/Theme/SBUFontSet.swift; sourceTree = ""; }; + 5F1207EA4BDF2AC9D83D5361 /* SBUOpenChannelListModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelListModule.swift; path = ../Sources/Module/ChannelList/OpenChannel/SBUOpenChannelListModule.swift; sourceTree = ""; }; + 5F24BEE9F8B79663B8747595 /* SBUMessageCellConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageCellConfiguration.swift; path = ../Sources/Configuration/MessageCell/SBUMessageCellConfiguration.swift; sourceTree = ""; }; + 5FD2514D5B32DFBDB808F8C9 /* SBUUnderLineTextField.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUnderLineTextField.swift; path = ../Sources/View/Common/SBUUnderLineTextField.swift; sourceTree = ""; }; + 607F27DD6B7985B07B2748BE /* SBUBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBarButtonItem.swift; path = ../Sources/View/Common/SBUBarButtonItem.swift; sourceTree = ""; }; + 614BB93926D5D70FC0E58976 /* SBUVoicePlayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUVoicePlayer.swift; path = ../Sources/Manager/SBUVoicePlayer.swift; sourceTree = ""; }; + 62500E55CD643BFCE52788C6 /* MessageTemplateRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageTemplateRenderer.swift; path = ../Sources/CustomSyntaxTest/MessageTemplateRenderer.swift; sourceTree = ""; }; + 62816F68CE7372CDD831EBCC /* SBUQuickReplyViewParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuickReplyViewParams.swift; path = ../Sources/View/Channel/MessageCell/QuickReply/ViewParams/SBUQuickReplyViewParams.swift; sourceTree = ""; }; + 62BAC5FB8AF1858429E2D1A9 /* SBUMenuCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMenuCell.swift; path = ../Sources/View/Common/Menu/SBUMenuCell.swift; sourceTree = ""; }; + 6441CB53C5B7F5B43595FDE0 /* SBUOpenChannelModule.Input.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelModule.Input.swift; path = ../Sources/Module/Channel/OpenChannel/SBUOpenChannelModule.Input.swift; sourceTree = ""; }; + 64F6D10790714D6A14898D5F /* SBUCommonDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCommonDelegate.swift; path = ../Sources/ViewModel/Common/SBUCommonDelegate.swift; sourceTree = ""; }; + 676FB7EC1C23C565E051E1F0 /* SBUOpenChannelCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelCell.swift; path = ../Sources/View/ChannelList/ChannelCell/SBUOpenChannelCell.swift; sourceTree = ""; }; + 67C16A37DB1C3424785A1AB5 /* SBUBaseChannelCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelCell.swift; path = ../Sources/View/ChannelList/ChannelCell/SBUBaseChannelCell.swift; sourceTree = ""; }; + 67D90A5B64F80F05DFDF149D /* SBUMentionLimitGuideCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMentionLimitGuideCell.swift; path = ../Sources/View/Channel/MessageInput/SBUMentionLimitGuideCell.swift; sourceTree = ""; }; + 68C1908059940FF0C5E817FB /* SBUBaseSelectUserModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseSelectUserModule.List.swift; path = ../Sources/Module/SelectUser/SBUBaseSelectUserModule.List.swift; sourceTree = ""; }; + 69182E174B1D66B575EEE506 /* SBURegisterOperatorViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBURegisterOperatorViewController.swift; path = ../Sources/View/SelectUser/SBURegisterOperatorViewController.swift; sourceTree = ""; }; + 69DE412B03BA8F08AB499495 /* SBUPropertyWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUPropertyWrapper.swift; path = ../Sources/Util/SBUPropertyWrapper.swift; sourceTree = ""; }; + 6AA0BFCF8457F64FDB576934 /* SBUGroupChannelPushSettingsViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelPushSettingsViewModel.swift; path = ../Sources/ViewModel/NotificationSettings/SBUGroupChannelPushSettingsViewModel.swift; sourceTree = ""; }; + 6B302EFC43477D2B3AB1934B /* SBUChatNotificationChannelModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChatNotificationChannelModule.Header.swift; path = ../Sources/Module/Channel/NotificationChannel/Chat/SBUChatNotificationChannelModule.Header.swift; sourceTree = ""; }; + 6B84323AFC7847004297D297 /* SBUGroupChannelListModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelListModule.swift; path = ../Sources/Module/ChannelList/GroupChannel/SBUGroupChannelListModule.swift; sourceTree = ""; }; + 6D17261C2934B0174766D53D /* SBUConfigManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUConfigManager.swift; path = ../Sources/Configuration/SBUConfigManager.swift; sourceTree = ""; }; + 6FC5578DBAFB57DB56EF570E /* SBUConfig.Base.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUConfig.Base.swift; path = ../Sources/Configuration/SBUConfig.Base.swift; sourceTree = ""; }; + 70868C74358BC367A84D700B /* SBUBaseSelectUserModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseSelectUserModule.swift; path = ../Sources/Module/SelectUser/SBUBaseSelectUserModule.swift; sourceTree = ""; }; + 713693AA41E41D77D20BD684 /* SBUMarginView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMarginView.swift; path = ../Sources/View/Common/SBUMarginView.swift; sourceTree = ""; }; + 739CBC98741FA24F0A8C9FDD /* UIButton+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+SBUIKit.swift"; path = "../Sources/Extension/UIButton+SBUIKit.swift"; sourceTree = ""; }; + 743250BF1B4FA3FD3045308B /* SBUQuotedBaseMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuotedBaseMessageView.swift; path = ../Sources/View/Channel/MessageCell/Replies/MessageView/SBUQuotedBaseMessageView.swift; sourceTree = ""; }; + 74C3E8B1893DF7C97B9FADF9 /* SBUImageContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUImageContentView.swift; path = ../Sources/View/Channel/MessageCell/FileMessageContentView/SBUImageContentView.swift; sourceTree = ""; }; + 74C6FD2E0756C4D65B85BB9C /* SBULoading.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBULoading.swift; path = ../Sources/View/Common/SBULoading.swift; sourceTree = ""; }; + 75063E61A0E70ABA99BBACD0 /* SBUGlobalCustomParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGlobalCustomParams.swift; path = ../Sources/SBUGlobalCustomParams.swift; sourceTree = ""; }; + 75D12C0907D566904D9C519A /* StringProtocol+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "StringProtocol+SBUIKit.swift"; path = "../Sources/Extension/StringProtocol+SBUIKit.swift"; sourceTree = ""; }; + 7638A9237443FFA4A9B0ABD3 /* SBUChatNotificationChannelModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChatNotificationChannelModule.swift; path = ../Sources/Module/Channel/NotificationChannel/Chat/SBUChatNotificationChannelModule.swift; sourceTree = ""; }; + 76ADA5DE8B16DA0B5BDBC47F /* SBUReactionCollectionViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUReactionCollectionViewCell.swift; path = ../Sources/View/Channel/Reaction/SBUReactionCollectionViewCell.swift; sourceTree = ""; }; + 7816F92501F6FF0E58DE1648 /* SBUGroupChannelViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelViewModel.swift; path = ../Sources/ViewModel/Channel/SBUGroupChannelViewModel.swift; sourceTree = ""; }; + 786FDEE6E500050CB8615F41 /* SBUUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUtils.swift; path = ../Sources/Util/SBUUtils.swift; sourceTree = ""; }; + 78F55441A325E88ACCE33898 /* SBUOpenChannelFileMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelFileMessageCell.swift; path = ../Sources/View/Channel/MessageCell/OpenChannel/SBUOpenChannelFileMessageCell.swift; sourceTree = ""; }; + 7AA06BE8E10B6BD3B4454F74 /* SBUToastManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUToastManager.swift; path = ../Sources/Manager/SBUToastManager.swift; sourceTree = ""; }; + 7AE1D0983A2E41BA92784721 /* SBUGroupChannelModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelModule.swift; path = ../Sources/Module/Channel/GroupChannel/SBUGroupChannelModule.swift; sourceTree = ""; }; + 7BFB229304E65D0A05E99F27 /* String+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+SBUIKit.swift"; path = "../Sources/Extension/String+SBUIKit.swift"; sourceTree = ""; }; + 7C31E1EFE659E5D09CA47308 /* SBUTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUTableViewCell.swift; path = "../Sources/View/Life cycles/SBUTableViewCell.swift"; sourceTree = ""; }; + 7C92B51A543BE0A90923D5EB /* SBUModerationsModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModerationsModule.List.swift; path = ../Sources/Module/Moderations/SBUModerationsModule.List.swift; sourceTree = ""; }; + 7E5019034DBEDB9BDDE37851 /* SBUCommonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCommonItem.swift; path = ../Sources/View/Common/SBUCommonItem.swift; sourceTree = ""; }; + 7EE49605A85DA6FDED8BEC26 /* SBUVoiceRecorder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUVoiceRecorder.swift; path = ../Sources/Manager/SBUVoiceRecorder.swift; sourceTree = ""; }; + 7F0107F6D69F27DF9B2B9B20 /* SBUChannelSettingItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChannelSettingItem.swift; path = ../Sources/Module/ChannelSettings/ChannelSettingItem/SBUChannelSettingItem.swift; sourceTree = ""; }; + 7F07C0865743FAF5D262C21A /* SBUOpenChannelUnknownMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelUnknownMessageCell.swift; path = ../Sources/View/Channel/MessageCell/OpenChannel/SBUOpenChannelUnknownMessageCell.swift; sourceTree = ""; }; + 7F53DA57F10C8AB81E01CE69 /* SBUUserProfileView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserProfileView.swift; path = ../Sources/View/Common/User/SBUUserProfileView.swift; sourceTree = ""; }; + 803DAAC799F22E51FCC2B586 /* SBUOpenChannelAdminMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelAdminMessageCell.swift; path = ../Sources/View/Channel/MessageCell/OpenChannel/SBUOpenChannelAdminMessageCell.swift; sourceTree = ""; }; + 80CA5C17BDC94350D7BD209B /* SBUMessageThreadModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageThreadModule.Header.swift; path = ../Sources/Module/MessageThread/SBUMessageThreadModule.Header.swift; sourceTree = ""; }; + 80F1D1310DCC7793D1E5A4C9 /* SBUFeedNotificationChannelModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFeedNotificationChannelModule.swift; path = ../Sources/Module/Channel/NotificationChannel/Feed/SBUFeedNotificationChannelModule.swift; sourceTree = ""; }; + 82E581E6B59E82A41AB918CE /* SBUOpenChannelViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelViewModel.swift; path = ../Sources/ViewModel/Channel/SBUOpenChannelViewModel.swift; sourceTree = ""; }; + 830455C9D718DDAB13F02345 /* SBUMessageThreadModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageThreadModule.swift; path = ../Sources/Module/MessageThread/SBUMessageThreadModule.swift; sourceTree = ""; }; + 842996646FD071AC3E39C25E /* SBUModuleSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModuleSet.swift; path = ../Sources/Module/SBUModuleSet.swift; sourceTree = ""; }; + 863134470ACE11D7C93E6849 /* SBUConfig.GroupChannel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUConfig.GroupChannel.swift; path = ../Sources/Configuration/SBUConfig.GroupChannel.swift; sourceTree = ""; }; + 878B201A67E39BF122C1A9BD /* CommonProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CommonProtocols.swift; path = ../Sources/Protocol/CommonProtocols.swift; sourceTree = ""; }; + 886CD695D193D2A90F58239A /* SBUChannelSettingsChannelInfoView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChannelSettingsChannelInfoView.swift; path = ../Sources/View/ChannelSettings/View/SBUChannelSettingsChannelInfoView.swift; sourceTree = ""; }; + 888AA7B1CE1805F2CB31325B /* SBUBaseChannelListViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelListViewModel.swift; path = ../Sources/ViewModel/ChannelList/SBUBaseChannelListViewModel.swift; sourceTree = ""; }; + 89FF7BAE0478EC4D64251FE0 /* SBUInviteUserModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUInviteUserModule.swift; path = ../Sources/Module/SelectUser/InviteUser/SBUInviteUserModule.swift; sourceTree = ""; }; + 8A2079341D51EAD21E092378 /* BaseMessage+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "BaseMessage+SBUIKit.swift"; path = "../Sources/Extension/ChatSDK/BaseMessage+SBUIKit.swift"; sourceTree = ""; }; + 8A281B4E19977F196654AAFC /* SBUBaseChannelSettingsModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelSettingsModule.List.swift; path = ../Sources/Module/ChannelSettings/SBUBaseChannelSettingsModule.List.swift; sourceTree = ""; }; + 8A362E90D3D52496D2C73FFB /* UITextField+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextField+SBUIKit.swift"; path = "../Sources/Extension/UITextField+SBUIKit.swift"; sourceTree = ""; }; + 8A78CA74082BCE0BF78707F0 /* SBUModerationsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModerationsViewController.swift; path = ../Sources/View/Moderations/SBUModerationsViewController.swift; sourceTree = ""; }; + 8ABD5E2AED8CE130A331BA62 /* SBUView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUView.swift; path = "../Sources/View/Life cycles/SBUView.swift"; sourceTree = ""; }; + 8BBC47200225C1649B233CBF /* SBUOpenChannelImageContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelImageContentView.swift; path = ../Sources/View/Channel/MessageCell/FileMessageContentView/SBUOpenChannelImageContentView.swift; sourceTree = ""; }; + 8BF8C4DE66C1A5FD674C9E97 /* SBURegisterOperatorModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBURegisterOperatorModule.List.swift; path = ../Sources/Module/SelectUser/RegisterOperator/SBURegisterOperatorModule.List.swift; sourceTree = ""; }; + 8C17CC283F96E29BFA570FC6 /* Formatter+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Formatter+SBUIKit.swift"; path = "../Sources/Extension/Formatter+SBUIKit.swift"; sourceTree = ""; }; + 8C3EA82E51E5050C65CD3714 /* SBUContentBaseMessageCell.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUContentBaseMessageCell.Deprecated.swift; path = ../Sources/Deprecated/Channel/MessageCell/SBUContentBaseMessageCell.Deprecated.swift; sourceTree = ""; }; + 8CFB7118812FC29ED6D727ED /* SBUGroupChannelViewController.Unavailable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelViewController.Unavailable.swift; path = ../Sources/Deprecated/Channel/SBUGroupChannelViewController.Unavailable.swift; sourceTree = ""; }; + 8D7573333E9706211B9F00A7 /* SBUBaseSelectUserViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseSelectUserViewController.Deprecated.swift; path = ../Sources/Deprecated/UserList/SBUBaseSelectUserViewController.Deprecated.swift; sourceTree = ""; }; + 8D8E55F568EC9940CFD10CE3 /* SBULinkClickableTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBULinkClickableTextView.swift; path = ../Sources/View/Channel/CellView/SBULinkClickableTextView.swift; sourceTree = ""; }; + 8E55A9D45478E16B27C31F0B /* SBUChannelListViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChannelListViewController.Deprecated.swift; path = ../Sources/Deprecated/ChannelList/SBUChannelListViewController.Deprecated.swift; sourceTree = ""; }; + 8FBD562FCA8AC842F2A15488 /* SBUGroupChannelListModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelListModule.List.swift; path = ../Sources/Module/ChannelList/GroupChannel/SBUGroupChannelListModule.List.swift; sourceTree = ""; }; + 90F3D73E2831A61C3F1CD084 /* SBUCollectionViewFlowLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCollectionViewFlowLayout.swift; path = ../Sources/View/Common/SBUCollectionViewFlowLayout.swift; sourceTree = ""; }; + 91BDECF3751DFD038B66CB5F /* SBUBaseChannelSettingsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelSettingsViewController.swift; path = ../Sources/View/ChannelSettings/SBUBaseChannelSettingsViewController.swift; sourceTree = ""; }; + 9410DA61F900E011CC767F69 /* SBUCardListViewParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCardListViewParams.swift; path = ../Sources/View/Channel/MessageCell/Carousel/ViewParams/SBUCardListViewParams.swift; sourceTree = ""; }; + 946AB698F489745873A4D90F /* SBUBaseViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseViewController.swift; path = ../Sources/View/SBUBaseViewController.swift; sourceTree = ""; }; + 947FA647A04DACCECD392EB9 /* SBUCommonContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCommonContentView.swift; path = ../Sources/View/Channel/MessageCell/FileMessageContentView/SBUCommonContentView.swift; sourceTree = ""; }; + 957C656CFD0DBCD44FA988F8 /* QuotedFileImageContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuotedFileImageContentView.swift; path = ../Sources/View/Channel/MessageCell/Replies/MessageView/QuotedFileImageContentView.swift; sourceTree = ""; }; + 957D6322C90DD52997F534E5 /* SBUModuleSet.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModuleSet.Deprecated.swift; path = ../Sources/Deprecated/SBUModuleSet.Deprecated.swift; sourceTree = ""; }; + 95A2C12F22B584E4CAD12A5F /* UIApplication+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+SBUIKit.swift"; path = "../Sources/Extension/UIApplication+SBUIKit.swift"; sourceTree = ""; }; + 964BD3A3680997F100F6EF8C /* SBUNewMessageInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUNewMessageInfo.swift; path = ../Sources/View/Channel/NewMessageInfo/SBUNewMessageInfo.swift; sourceTree = ""; }; + 967EBB2B2AE20C3A6F96C4A5 /* SBUPendingMessageManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUPendingMessageManager.swift; path = ../Sources/Manager/SBUPendingMessageManager.swift; sourceTree = ""; }; + 96A6DE7DF22D2F20741DAB17 /* SBUNotificationChannelManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUNotificationChannelManager.swift; path = ../Sources/Manager/SBUNotificationChannelManager.swift; sourceTree = ""; }; + 96C2670CDA57B6FC6B76DE08 /* SBUOpenChannelMessageWebView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelMessageWebView.swift; path = ../Sources/View/Channel/CellView/SBUOpenChannelMessageWebView.swift; sourceTree = ""; }; + 9782FEF03E2E566FD885B135 /* SBUViewLifeCycle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUViewLifeCycle.swift; path = "../Sources/View/Life cycles/SBUViewLifeCycle.swift"; sourceTree = ""; }; + 99128649F63B6F02C7BB7D3E /* SBUOpenChannelSettingsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelSettingsViewController.swift; path = ../Sources/View/ChannelSettings/SBUOpenChannelSettingsViewController.swift; sourceTree = ""; }; + 998EAB0A1CA280D46C7A96DE /* SBUOpenChannelBaseMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelBaseMessageCell.swift; path = ../Sources/View/Channel/MessageCell/OpenChannel/SBUOpenChannelBaseMessageCell.swift; sourceTree = ""; }; + 9A17C41AA0B127D231588700 /* SBUBaseChannelViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelViewModel.swift; path = ../Sources/ViewModel/Channel/SBUBaseChannelViewModel.swift; sourceTree = ""; }; + 9A5A01A3FCF5C998CEAE46E7 /* SBUBaseMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseMessageCell.swift; path = ../Sources/View/Channel/MessageCell/SBUBaseMessageCell.swift; sourceTree = ""; }; + 9ACB660983DEA2E33672700B /* SBUVoiceMessageConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUVoiceMessageConfiguration.swift; path = ../Sources/Configuration/VoiceMessage/SBUVoiceMessageConfiguration.swift; sourceTree = ""; }; + 9AEE8731EEBC5CBB1934D0E0 /* SBUOpenChannelSettingsModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelSettingsModule.List.swift; path = ../Sources/Module/ChannelSettings/OpenChannel/SBUOpenChannelSettingsModule.List.swift; sourceTree = ""; }; + 9B50EC08D2D3E676F56B6612 /* SBUCoverImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCoverImageView.swift; path = ../Sources/View/Common/SBUCoverImageView.swift; sourceTree = ""; }; + 9BDA439B4E0DEA464325459D /* SBUCreateChannelModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateChannelModule.swift; path = ../Sources/Module/SelectUser/CreateChannel/SBUCreateChannelModule.swift; sourceTree = ""; }; 9C037DD4280432DB00059696 /* ViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 9C037DD5280432DB00059696 /* QuickStart.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = QuickStart.entitlements; sourceTree = ""; }; 9C037DD7280432DB00059696 /* UILabel+Ext.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UILabel+Ext.swift"; sourceTree = ""; }; @@ -660,7 +687,6 @@ 9C037DF6280432DB00059696 /* LiveStreamChannelViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LiveStreamChannelViewController.swift; sourceTree = ""; }; 9C037DF8280432DB00059696 /* CommunityChannelListViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CommunityChannelListViewController.swift; sourceTree = ""; }; 9C037DFA280432DB00059696 /* CreateCommunityChannelViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CreateCommunityChannelViewController.swift; sourceTree = ""; }; - 9C3AAC4C6ADE19BBEC6B7F2A /* SBUMessageThreadTitleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageThreadTitleView.swift; path = ../Sources/View/MessageThread/SBUMessageThreadTitleView.swift; sourceTree = ""; }; 9C3EBE2028091D2A00B5366B /* NotificationService.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = NotificationService.appex; sourceTree = BUILT_PRODUCTS_DIR; }; 9C3EBE2228091D2A00B5366B /* NotificationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationService.swift; sourceTree = ""; }; 9C3EBE2428091D2A00B5366B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; @@ -668,23 +694,22 @@ 9C5DCD48242AFA7C00C41106 /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; }; 9C5DCD4D242B0C7E00C41106 /* libicucore.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libicucore.tbd; path = usr/lib/libicucore.tbd; sourceTree = SDKROOT; }; 9C777D57241B9022006FFE25 /* QuickStart.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = QuickStart.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 9E4C9B6E5B0890EC3EA46099 /* SBUGroupChannelSettingsViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelSettingsViewModel.swift; path = ../Sources/ViewModel/ChannelSettings/SBUGroupChannelSettingsViewModel.swift; sourceTree = ""; }; - 9E9818AC665BDD14CD3CD183 /* SendbirdUIKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SendbirdUIKit.h; path = ../Sources/SendbirdUIKit.h; sourceTree = ""; }; - 9FC0679799A9487D098BEE2E /* SBUNotificationNavigationTitleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUNotificationNavigationTitleView.swift; path = ../Sources/View/Common/SBUNotificationNavigationTitleView.swift; sourceTree = ""; }; - A0081DC1780C9938D4BEED8F /* SBUBaseChannelSettingsViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelSettingsViewModel.swift; path = ../Sources/ViewModel/ChannelSettings/SBUBaseChannelSettingsViewModel.swift; sourceTree = ""; }; - A07733A06DA07856B4E11457 /* SBUMessageThreadModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageThreadModule.List.swift; path = ../Sources/Module/MessageThread/SBUMessageThreadModule.List.swift; sourceTree = ""; }; - A115272D074CE4E3DD5C829F /* UIImageView+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIImageView+SBUIKit.swift"; path = "../Sources/Extension/UIImageView+SBUIKit.swift"; sourceTree = ""; }; - A121C887E4DA50B514B0B9E3 /* SBUNotificationTimelineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUNotificationTimelineView.swift; path = ../Sources/View/Channel/CellView/SBUNotificationTimelineView.swift; sourceTree = ""; }; - A252659AFE15AF12098C7D64 /* Sequence+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Sequence+SBUIKit.swift"; path = "../Sources/Extension/Sequence+SBUIKit.swift"; sourceTree = ""; }; - A281C6B4D10CD53B6A394C09 /* SBURegisterOperatorModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBURegisterOperatorModule.Header.swift; path = ../Sources/Module/SelectUser/RegisterOperator/SBURegisterOperatorModule.Header.swift; sourceTree = ""; }; - A34A78A8E359E64DF0023F69 /* SBUUserProfileView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserProfileView.swift; path = ../Sources/View/Common/User/SBUUserProfileView.swift; sourceTree = ""; }; - A34E7B141CBF2FCC81D1E924 /* SBUBaseChannelViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelViewController.Deprecated.swift; path = ../Sources/Deprecated/Channel/SBUBaseChannelViewController.Deprecated.swift; sourceTree = ""; }; - A44E8BACD0AB0059437754E7 /* SBUChannelPushSettingCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChannelPushSettingCell.swift; path = ../Sources/View/NotificationSettings/Cell/SBUChannelPushSettingCell.swift; sourceTree = ""; }; - A5423525CFD3E45A7758D21F /* SBUOpenChannelBaseMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelBaseMessageCell.swift; path = ../Sources/View/Channel/MessageCell/OpenChannel/SBUOpenChannelBaseMessageCell.swift; sourceTree = ""; }; - A5C41544D4A7B3F7784E1D7F /* SBUTheme.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUTheme.swift; path = ../Sources/Theme/SBUTheme.swift; sourceTree = ""; }; - A608337D7185D3739BDD2E16 /* SBUOpenChannelUserMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelUserMessageCell.swift; path = ../Sources/View/Channel/MessageCell/OpenChannel/SBUOpenChannelUserMessageCell.swift; sourceTree = ""; }; - A933C3DBDBBCA168BEA58E8A /* SBUDateFormatSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUDateFormatSet.swift; path = ../Sources/Constant/SBUDateFormatSet.swift; sourceTree = ""; }; - A935AADB22314DDEC2CC761C /* SBUGroupChannelPushSettingsModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelPushSettingsModule.swift; path = ../Sources/Module/NotificationSettings/SBUGroupChannelPushSettingsModule.swift; sourceTree = ""; }; + 9C7D209B2820641E5ACCB37D /* SBUMessageDateView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageDateView.swift; path = ../Sources/View/Channel/CellView/SBUMessageDateView.swift; sourceTree = ""; }; + 9D4AA0558E64825B0F17F574 /* SBUMenuCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = SBUMenuCell.xib; path = ../Sources/View/Common/Menu/SBUMenuCell.xib; sourceTree = ""; }; + 9DB1D3EBA4C715846778EC6F /* SBUOpenChannelUserMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelUserMessageCell.swift; path = ../Sources/View/Channel/MessageCell/OpenChannel/SBUOpenChannelUserMessageCell.swift; sourceTree = ""; }; + 9DDA15F1F080F4D79113423B /* SBUMessageCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageCache.swift; path = ../Sources/Model/SBUMessageCache.swift; sourceTree = ""; }; + 9E53D23CEF9C69F22BF4A33D /* SBUModerationsViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModerationsViewController.Deprecated.swift; path = ../Sources/Deprecated/Moderations/SBUModerationsViewController.Deprecated.swift; sourceTree = ""; }; + 9F0ABCF8C4D0C9E738CCF03B /* SBUUserListModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserListModule.Header.swift; path = ../Sources/Module/UserList/SBUUserListModule.Header.swift; sourceTree = ""; }; + 9F2CC2CD59ADEFE1C47A0587 /* SBUContentBaseMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUContentBaseMessageCell.swift; path = ../Sources/View/Channel/MessageCell/SBUContentBaseMessageCell.swift; sourceTree = ""; }; + 9FDF11E883E7BE374B123C07 /* SBUTemplateLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUTemplateLabel.swift; path = ../Sources/View/Common/SBUTemplateLabel.swift; sourceTree = ""; }; + A0403058FECF395E73684230 /* SBUNotificationEmptyView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUNotificationEmptyView.swift; path = ../Sources/View/Common/SBUNotificationEmptyView.swift; sourceTree = ""; }; + A256D76EF1C0017F91AD806D /* SBUBaseChannelListModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelListModule.Header.swift; path = ../Sources/Module/ChannelList/SBUBaseChannelListModule.Header.swift; sourceTree = ""; }; + A26197BB4AB3B53E2EC65CFD /* UIImage+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIImage+SBUIKit.swift"; path = "../Sources/Extension/UIImage+SBUIKit.swift"; sourceTree = ""; }; + A5213C262952F4E01D4BC34C /* SBUCommonViewControllerSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCommonViewControllerSet.swift; path = ../Sources/View/Common/SBUCommonViewControllerSet.swift; sourceTree = ""; }; + A573341603D1272B5BBEA9D0 /* SBUOpenChannelListViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelListViewModel.swift; path = ../Sources/ViewModel/ChannelList/SBUOpenChannelListViewModel.swift; sourceTree = ""; }; + A6D562DAC2263B035ABCC87F /* SBUBaseChannelSettingsModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelSettingsModule.Header.swift; path = ../Sources/Module/ChannelSettings/SBUBaseChannelSettingsModule.Header.swift; sourceTree = ""; }; + A8738E119A036EA61AF4DDB3 /* CGSize+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGSize+SBUIKit.swift"; path = "../Sources/Extension/CGSize+SBUIKit.swift"; sourceTree = ""; }; + A8BD827DDF658E347DD19C07 /* SBUOpenChannelViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelViewController.swift; path = ../Sources/View/Channel/SBUOpenChannelViewController.swift; sourceTree = ""; }; A93AE84F2A383CAA00AFFF9C /* CustomBaseViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CustomBaseViewController.swift; sourceTree = ""; }; A93AE8522A383CAA00AFFF9C /* ChannelListCustomManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChannelListCustomManager.swift; sourceTree = ""; }; A93AE8532A383CAA00AFFF9C /* InviteUserCustomManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InviteUserCustomManager.swift; sourceTree = ""; }; @@ -721,122 +746,117 @@ A968B36928C86B5700271C60 /* LiveStreamChannelListViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveStreamChannelListViewModel.swift; sourceTree = ""; }; A968B36B28C86B8600271C60 /* LiveStreamChannelListModule.List.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveStreamChannelListModule.List.swift; sourceTree = ""; }; A968B36D28C9AB7F00271C60 /* LiveStreamChannelModule.Media.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveStreamChannelModule.Media.swift; sourceTree = ""; }; - AAECD08778DB45A5C7236BD7 /* SBUChatNotificationChannelModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChatNotificationChannelModule.swift; path = ../Sources/Module/Channel/NotificationChannel/Chat/SBUChatNotificationChannelModule.swift; sourceTree = ""; }; - AC02E78F4CE2F80F9545487F /* SBUMessageInputMode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageInputMode.swift; path = ../Sources/View/Channel/MessageInput/SBUMessageInputMode.swift; sourceTree = ""; }; - AD03322C5147411C0251EBA6 /* SBUNavigationTitleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUNavigationTitleView.swift; path = ../Sources/View/Common/SBUNavigationTitleView.swift; sourceTree = ""; }; - AD92CDB46D353A3DDFC8A667 /* Debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = ../Sources/Configurations/Debug.xcconfig; sourceTree = ""; }; - ADAF206FF195F239573C985C /* BaseMessage+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "BaseMessage+SBUIKit.swift"; path = "../Sources/Extension/ChatSDK/BaseMessage+SBUIKit.swift"; sourceTree = ""; }; - AE1ED28EA391C70A7828E73C /* SBUCacheManager.Config.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCacheManager.Config.swift; path = ../Sources/Manager/CacheManager/SBUCacheManager.Config.swift; sourceTree = ""; }; - B064373F96C7EE1E19C5F4C9 /* SBUGroupChannelSettingsModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelSettingsModule.swift; path = ../Sources/Module/ChannelSettings/GroupChannel/SBUGroupChannelSettingsModule.swift; sourceTree = ""; }; - B1FFF2B87A362D9DBA83BC95 /* SBUGroupChannelSettingsModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelSettingsModule.Header.swift; path = ../Sources/Module/ChannelSettings/GroupChannel/SBUGroupChannelSettingsModule.Header.swift; sourceTree = ""; }; - B210056B6B1EE32EFD674B69 /* SBUEmptyView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUEmptyView.swift; path = ../Sources/View/Common/SBUEmptyView.swift; sourceTree = ""; }; - B316160D5B1AB6B80189E7E4 /* SBUBaseSelectUserModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseSelectUserModule.List.swift; path = ../Sources/Module/SelectUser/SBUBaseSelectUserModule.List.swift; sourceTree = ""; }; - B40B29DC9BEE6CABF042A760 /* SBUDebouncer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUDebouncer.swift; path = ../Sources/Util/SBUDebouncer.swift; sourceTree = ""; }; - B4F04043A876059D24139F3B /* SBUActionSheet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUActionSheet.swift; path = ../Sources/View/Common/SBUActionSheet.swift; sourceTree = ""; }; - B52D5ABC0B9BF678F600D3E2 /* SBUOpenChannelContentBaseMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelContentBaseMessageCell.swift; path = ../Sources/View/Channel/MessageCell/OpenChannel/SBUOpenChannelContentBaseMessageCell.swift; sourceTree = ""; }; - B6C4C7A650C4C84BC509FA4F /* SBUCreateChannelViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateChannelViewController.swift; path = ../Sources/View/SelectUser/CreateChannel/SBUCreateChannelViewController.swift; sourceTree = ""; }; - B758EA77426C5CF5D9199193 /* SBUMessageStateView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageStateView.swift; path = ../Sources/View/Channel/CellView/SBUMessageStateView.swift; sourceTree = ""; }; - B78CE33A30FAC09232C89621 /* SBURegisterOperatorViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBURegisterOperatorViewController.swift; path = ../Sources/View/SelectUser/SBURegisterOperatorViewController.swift; sourceTree = ""; }; - B7EBBB60E8FE246A22593D5A /* SBUMessageThreadModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageThreadModule.swift; path = ../Sources/Module/MessageThread/SBUMessageThreadModule.swift; sourceTree = ""; }; - B81F436DE5CD010E6B8A7358 /* UIImage+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIImage+SBUIKit.swift"; path = "../Sources/Extension/UIImage+SBUIKit.swift"; sourceTree = ""; }; - B8830A152490D77903A80228 /* Data+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+SBUIKit.swift"; path = "../Sources/Extension/Data+SBUIKit.swift"; sourceTree = ""; }; - B95E0F5151616CF497DBF371 /* SBUGroupChannelViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelViewController.swift; path = ../Sources/View/Channel/SBUGroupChannelViewController.swift; sourceTree = ""; }; - BCB15FCCDCFB629D3A138681 /* SBUMessageThreadModule.Input.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageThreadModule.Input.swift; path = ../Sources/Module/MessageThread/SBUMessageThreadModule.Input.swift; sourceTree = ""; }; - BD182802F8956D312B983165 /* SBUModerationsViewModel.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModerationsViewModel.Deprecated.swift; path = ../Sources/Deprecated/Moderations/SBUModerationsViewModel.Deprecated.swift; sourceTree = ""; }; - BD2EC18E17D95D8C9DE00BE1 /* SBUGroupChannelCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelCell.swift; path = ../Sources/View/ChannelList/ChannelCell/SBUGroupChannelCell.swift; sourceTree = ""; }; - C06E5A2910D60CD5ACFFE801 /* SBUBaseChannelSettingsModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelSettingsModule.swift; path = ../Sources/Module/ChannelSettings/SBUBaseChannelSettingsModule.swift; sourceTree = ""; }; - C0A29C1C9DE43ACB9DC04967 /* UIViewController+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+SBUIKit.swift"; path = "../Sources/Extension/UIViewController+SBUIKit.swift"; sourceTree = ""; }; - C1D7EEAE7EB8554E6F7CC264 /* SBUStackView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUStackView.swift; path = ../Sources/View/Common/SBUStackView.swift; sourceTree = ""; }; - C1E5352BBB4A3D5D6A7303BE /* SBUAdminMessageCellParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUAdminMessageCellParams.swift; path = ../Sources/View/Channel/MessageCell/MessageCellParams/SBUAdminMessageCellParams.swift; sourceTree = ""; }; - C22F775EDC16A612E2DE772C /* SBUChannelInfoHeaderView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChannelInfoHeaderView.swift; path = ../Sources/View/Channel/Header/SBUChannelInfoHeaderView.swift; sourceTree = ""; }; - C29D8E45823A37E06A9E98DA /* SBUUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUtils.swift; path = ../Sources/Util/SBUUtils.swift; sourceTree = ""; }; - C2F4923F59AD1EBC2A50C072 /* SBUQuoteMessageInputViewProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuoteMessageInputViewProtocol.swift; path = "../Sources/View/Life cycles/SBUQuoteMessageInputViewProtocol.swift"; sourceTree = ""; }; - C3D84F3979F1B12BE5834091 /* SBUQuotedBaseMessageViewParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuotedBaseMessageViewParams.swift; path = ../Sources/View/Channel/MessageCell/Replies/ViewParams/SBUQuotedBaseMessageViewParams.swift; sourceTree = ""; }; - C447D3DEE9C6EC06AF37E9BA /* SBUGroupChannelViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelViewModel.swift; path = ../Sources/ViewModel/Channel/SBUGroupChannelViewModel.swift; sourceTree = ""; }; - C5045CE68870FB6D5C3D5A93 /* CGSize+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGSize+SBUIKit.swift"; path = "../Sources/Extension/CGSize+SBUIKit.swift"; sourceTree = ""; }; - C547A841C0C271E3CD1DC85D /* SBUUserListViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserListViewModel.swift; path = ../Sources/ViewModel/UserList/SBUUserListViewModel.swift; sourceTree = ""; }; - C5651798BD13BA06F892E084 /* SBUThreadInfoView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUThreadInfoView.swift; path = ../Sources/View/Channel/MessageCell/Replies/MessageView/SBUThreadInfoView.swift; sourceTree = ""; }; - C5798ACEEC28445D6BB0DED9 /* SBUCacheManager.Template.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCacheManager.Template.swift; path = ../Sources/Manager/CacheManager/SBUCacheManager.Template.swift; sourceTree = ""; }; - C7299BBEF4BA3589B72FAB0B /* SBUChannelListViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChannelListViewController.Deprecated.swift; path = ../Sources/Deprecated/ChannelList/SBUChannelListViewController.Deprecated.swift; sourceTree = ""; }; - C7787B27E7166DC56485A7ED /* SBUChatNotificationChannelModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChatNotificationChannelModule.Header.swift; path = ../Sources/Module/Channel/NotificationChannel/Chat/SBUChatNotificationChannelModule.Header.swift; sourceTree = ""; }; - C791015E5D1561D9F6CCFE3D /* SBUCacheManager.Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCacheManager.Image.swift; path = ../Sources/Manager/CacheManager/SBUCacheManager.Image.swift; sourceTree = ""; }; - C79E59683CD0F4CD44CEA213 /* SBUGroupChannelListModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelListModule.List.swift; path = ../Sources/Module/ChannelList/GroupChannel/SBUGroupChannelListModule.List.swift; sourceTree = ""; }; - C8D4FF8041A0A03641D2B15B /* SBUMentionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMentionManager.swift; path = ../Sources/Util/SBUMentionManager.swift; sourceTree = ""; }; - C922BA5D005F72781C50318A /* SBULoading.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBULoading.swift; path = ../Sources/View/Common/SBULoading.swift; sourceTree = ""; }; - C9EB748CD2CBF02EF66BCF78 /* SBUConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUConfig.swift; path = ../Sources/Configuration/SBUConfig.swift; sourceTree = ""; }; - CA7E6AC2CE054363910B5A15 /* SBUChatNotificationChannelViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChatNotificationChannelViewController.swift; path = ../Sources/View/Channel/SBUChatNotificationChannelViewController.swift; sourceTree = ""; }; - CE1AEC3AFF0FC94611681667 /* Assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = ../Sources/Resource/Assets.xcassets; sourceTree = ""; }; - D349A851AFBCFE62F1A86E1B /* SBUView.Unavaliable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUView.Unavaliable.swift; path = ../Sources/Deprecated/SBUView.Unavaliable.swift; sourceTree = ""; }; - D3BDB91356B795FBB8B09D41 /* SBUGroupChannelModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelModule.List.swift; path = ../Sources/Module/Channel/GroupChannel/SBUGroupChannelModule.List.swift; sourceTree = ""; }; - D3F82FDCCD32A9269A190F63 /* SBUUserMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserMessageCell.swift; path = ../Sources/View/Channel/MessageCell/SBUUserMessageCell.swift; sourceTree = ""; }; - D4177A1801AF4E23E808E05E /* SBUGroupChannelViewController.Unavailable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelViewController.Unavailable.swift; path = ../Sources/Deprecated/Channel/SBUGroupChannelViewController.Unavailable.swift; sourceTree = ""; }; - D4D6A26277621792FB7BF434 /* SBUPropertyWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUPropertyWrapper.swift; path = ../Sources/Util/SBUPropertyWrapper.swift; sourceTree = ""; }; - D7306B8417B4BC6AA22C46BC /* SBUGroupChannelSettingsModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelSettingsModule.List.swift; path = ../Sources/Module/ChannelSettings/GroupChannel/SBUGroupChannelSettingsModule.List.swift; sourceTree = ""; }; - D8BAB85BDF95D5E887C31E11 /* SBUMemberListViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMemberListViewController.Deprecated.swift; path = ../Sources/Deprecated/MemberList/SBUMemberListViewController.Deprecated.swift; sourceTree = ""; }; - D8E99652BDFF94AC1960E864 /* SBUAdminMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUAdminMessageCell.swift; path = ../Sources/View/Channel/MessageCell/SBUAdminMessageCell.swift; sourceTree = ""; }; - D8EC95DFE5043773778216EC /* SBUViewLifeCycle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUViewLifeCycle.swift; path = "../Sources/View/Life cycles/SBUViewLifeCycle.swift"; sourceTree = ""; }; - D92157DCAD9B8A91EDFFE3A6 /* SBUEmojiManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUEmojiManager.swift; path = ../Sources/Manager/SBUEmojiManager.swift; sourceTree = ""; }; - D9C06AE8FDCECD30BAE3867C /* SBUBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBarButtonItem.swift; path = ../Sources/View/Common/SBUBarButtonItem.swift; sourceTree = ""; }; - D9E4BC1A6D7BF534BD6FEF63 /* SBUOpenChannelSettingCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelSettingCell.swift; path = ../Sources/View/ChannelSettings/Cell/SBUOpenChannelSettingCell.swift; sourceTree = ""; }; - DA17D6FD5362C62E3E6DC318 /* SBUGroupChannelViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelViewController.Deprecated.swift; path = ../Sources/Deprecated/Channel/SBUGroupChannelViewController.Deprecated.swift; sourceTree = ""; }; - DA32A6610187C40542720C42 /* SBUView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUView.swift; path = "../Sources/View/Life cycles/SBUView.swift"; sourceTree = ""; }; - DAD7F1829ACAE111E344DE29 /* SBUCreateOpenChannelModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateOpenChannelModule.Header.swift; path = ../Sources/Module/SelectUser/CreateChannel/SBUCreateOpenChannelModule.Header.swift; sourceTree = ""; }; - DBC7C99FF0EF09B1CEBD1811 /* SBUCreateChannelModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateChannelModule.Header.swift; path = ../Sources/Module/SelectUser/CreateChannel/SBUCreateChannelModule.Header.swift; sourceTree = ""; }; - DBCE026F3180A4CF25EA3251 /* SBUBottomSheetController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBottomSheetController.swift; path = ../Sources/View/Common/Menu/SBUBottomSheetController.swift; sourceTree = ""; }; - DE0539E577070B022D52321F /* SBUGroupChannelListModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelListModule.Header.swift; path = ../Sources/Module/ChannelList/GroupChannel/SBUGroupChannelListModule.Header.swift; sourceTree = ""; }; - DF9B38CF91C898EDE89C0F82 /* SBUCommonViewControllerSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCommonViewControllerSet.swift; path = ../Sources/View/Common/SBUCommonViewControllerSet.swift; sourceTree = ""; }; - E066BD3E4E77927144A2478F /* SBUOpenChannelViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelViewController.Deprecated.swift; path = ../Sources/Deprecated/Channel/SBUOpenChannelViewController.Deprecated.swift; sourceTree = ""; }; - E0A49C3FE86E811FF8445624 /* SBUOpenChannelSettingsModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelSettingsModule.Header.swift; path = ../Sources/Module/ChannelSettings/OpenChannel/SBUOpenChannelSettingsModule.Header.swift; sourceTree = ""; }; - E1D17BBEAAB8C6FBF3876423 /* SBUUserListModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserListModule.List.swift; path = ../Sources/Module/UserList/SBUUserListModule.List.swift; sourceTree = ""; }; - E28DEB730F0F5EAD2599330D /* SBUMenuView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMenuView.swift; path = ../Sources/View/Common/Menu/SBUMenuView.swift; sourceTree = ""; }; - E43BC1FFC1B63917B6C19C66 /* SBUInviteUserModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUInviteUserModule.Header.swift; path = ../Sources/Module/SelectUser/InviteUser/SBUInviteUserModule.Header.swift; sourceTree = ""; }; - E5F235AAAE80C80A0FA460D2 /* SBUCacheManager.NotificationSetting.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCacheManager.NotificationSetting.swift; path = ../Sources/Manager/CacheManager/SBUCacheManager.NotificationSetting.swift; sourceTree = ""; }; - E66B0824D4290141AA043A92 /* SBUModerationsModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModerationsModule.List.swift; path = ../Sources/Module/Moderations/SBUModerationsModule.List.swift; sourceTree = ""; }; - E7882BFC96E6EB23C2708896 /* SBUIconSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUIconSet.swift; path = ../Sources/Theme/SBUIconSet.swift; sourceTree = ""; }; - E84E49240B02B4FE176C0ACF /* SBUGlobals.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGlobals.Deprecated.swift; path = ../Sources/Deprecated/SBUGlobals.Deprecated.swift; sourceTree = ""; }; - E92EE181BCEBEFD719968688 /* SBUOpenChannelModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelModule.swift; path = ../Sources/Module/Channel/OpenChannel/SBUOpenChannelModule.swift; sourceTree = ""; }; - E9AB4C46814838C10D2C0205 /* SBUBaseSelectUserModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseSelectUserModule.Header.swift; path = ../Sources/Module/SelectUser/SBUBaseSelectUserModule.Header.swift; sourceTree = ""; }; - E9BF9A023D9C63F2AF5A74B7 /* SBUGroupChannelListViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelListViewController.swift; path = ../Sources/View/ChannelList/SBUGroupChannelListViewController.swift; sourceTree = ""; }; - EB42B29FC32D55BE76D42610 /* Float+SBUKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Float+SBUKit.swift"; path = "../Sources/Extension/Float+SBUKit.swift"; sourceTree = ""; }; - EB86164252E98E2983E75F37 /* Formatter+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Formatter+SBUIKit.swift"; path = "../Sources/Extension/Formatter+SBUIKit.swift"; sourceTree = ""; }; - EBC3A0E05DB738BE7255C9A1 /* SBUOpenChannelUnknownMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelUnknownMessageCell.swift; path = ../Sources/View/Channel/MessageCell/OpenChannel/SBUOpenChannelUnknownMessageCell.swift; sourceTree = ""; }; - EBC6E2A199C600E1DFF279F1 /* URL+SBUKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+SBUKit.swift"; path = "../Sources/Extension/URL+SBUKit.swift"; sourceTree = ""; }; - EC04424C7F33DCE60A159DBE /* SBUFeedNotificationChannelModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFeedNotificationChannelModule.List.swift; path = ../Sources/Module/Channel/NotificationChannel/Feed/SBUFeedNotificationChannelModule.List.swift; sourceTree = ""; }; - ECCB5E0BE740839D9069F7F9 /* SBUParentMessageInfoView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUParentMessageInfoView.swift; path = ../Sources/View/MessageThread/SBUParentMessageInfoView.swift; sourceTree = ""; }; - ECF834BA2F347DC82CAC8127 /* SBUImageContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUImageContentView.swift; path = ../Sources/View/Channel/MessageCell/FileMessageContentView/SBUImageContentView.swift; sourceTree = ""; }; - ED724ED3BF021A9EDAC9724D /* SBUChatNotificationChannelModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChatNotificationChannelModule.List.swift; path = ../Sources/Module/Channel/NotificationChannel/Chat/SBUChatNotificationChannelModule.List.swift; sourceTree = ""; }; - EDC0FC99EA99835B8C7E67F6 /* SBUBaseChannelListViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelListViewController.swift; path = ../Sources/View/ChannelList/SBUBaseChannelListViewController.swift; sourceTree = ""; }; - EE1101168F87535D4961C514 /* SBUBaseChannelSettingsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelSettingsViewController.swift; path = ../Sources/View/ChannelSettings/SBUBaseChannelSettingsViewController.swift; sourceTree = ""; }; - EF925C91938FE084A6BBE723 /* SBUOpenChannelSettingsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelSettingsViewController.swift; path = ../Sources/View/ChannelSettings/SBUOpenChannelSettingsViewController.swift; sourceTree = ""; }; - F0D8778FC8BB0FECDCD3261B /* SBUReactionsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUReactionsViewController.swift; path = ../Sources/View/Channel/Reaction/SBUReactionsViewController.swift; sourceTree = ""; }; - F172024CB74D1161310185AE /* SBUMessageCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageCache.swift; path = ../Sources/Model/SBUMessageCache.swift; sourceTree = ""; }; - F1EC28F24DF54CE742090E2F /* UIButton+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+SBUIKit.swift"; path = "../Sources/Extension/UIButton+SBUIKit.swift"; sourceTree = ""; }; - F208FB4E87F4F52277A869AC /* SBUGroupChannelListModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelListModule.swift; path = ../Sources/Module/ChannelList/GroupChannel/SBUGroupChannelListModule.swift; sourceTree = ""; }; - F20FF26D5AD8C6E1583C2E56 /* SBUBaseChannelSettingCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelSettingCell.swift; path = ../Sources/View/ChannelSettings/Cell/SBUBaseChannelSettingCell.swift; sourceTree = ""; }; - F219E063C516EE24242AA983 /* SBUBaseSelectUserModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseSelectUserModule.swift; path = ../Sources/Module/SelectUser/SBUBaseSelectUserModule.swift; sourceTree = ""; }; - F3415509B748ED4796AF8A01 /* SBUHighlightMessageInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUHighlightMessageInfo.swift; path = ../Sources/Model/SBUHighlightMessageInfo.swift; sourceTree = ""; }; - F3A0076CADC48A5F711EF1CB /* SBUFeedNotificationChannelModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFeedNotificationChannelModule.Header.swift; path = ../Sources/Module/Channel/NotificationChannel/Feed/SBUFeedNotificationChannelModule.Header.swift; sourceTree = ""; }; - F3AB8C46EE31D9837276A59C /* SBUBaseFileContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseFileContentView.swift; path = ../Sources/View/Channel/MessageCell/FileMessageContentView/SBUBaseFileContentView.swift; sourceTree = ""; }; - F3F33EE259D61404759642AB /* StringProtocol+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "StringProtocol+SBUIKit.swift"; path = "../Sources/Extension/StringProtocol+SBUIKit.swift"; sourceTree = ""; }; - F40EA1102B93ACE2F0BEB2A0 /* SBUDashboardConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUDashboardConfig.swift; path = ../Sources/Configuration/SBUDashboardConfig.swift; sourceTree = ""; }; - F5B11F963B9453E4B7713C05 /* SBUGroupChannelPushSettingsModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelPushSettingsModule.Header.swift; path = ../Sources/Module/NotificationSettings/SBUGroupChannelPushSettingsModule.Header.swift; sourceTree = ""; }; - F5F73F77DA3F3EC73CA4C76A /* QuotedFileCommonContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuotedFileCommonContentView.swift; path = ../Sources/View/Channel/MessageCell/Replies/MessageView/QuotedFileCommonContentView.swift; sourceTree = ""; }; - F600DA6889F613ABC24585CC /* SBUGroupChannelPushSettingsViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelPushSettingsViewModel.swift; path = ../Sources/ViewModel/NotificationSettings/SBUGroupChannelPushSettingsViewModel.swift; sourceTree = ""; }; - F61F6A17CFAA1C5E0AA59931 /* SBUUserListModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserListModule.Header.swift; path = ../Sources/Module/UserList/SBUUserListModule.Header.swift; sourceTree = ""; }; - F67994C0401225859A40F2F0 /* SBUAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUAnimation.swift; path = ../Sources/View/Common/SBUAnimation.swift; sourceTree = ""; }; - F7F3719BBE1D2128C2FCBEE3 /* SBUGlobalCustomParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGlobalCustomParams.swift; path = ../Sources/SBUGlobalCustomParams.swift; sourceTree = ""; }; - F8050B1788B66E3D4B1B5B6C /* SBUBaseMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseMessageCell.swift; path = ../Sources/View/Channel/MessageCell/SBUBaseMessageCell.swift; sourceTree = ""; }; - F80A167C1BCD02376FEBA565 /* SBUCoverImageView.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCoverImageView.Deprecated.swift; path = ../Sources/Deprecated/SBUCoverImageView.Deprecated.swift; sourceTree = ""; }; - F8730C302A20C6AB04C8E3CE /* SBUQuotedBaseMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuotedBaseMessageView.swift; path = ../Sources/View/Channel/MessageCell/Replies/MessageView/SBUQuotedBaseMessageView.swift; sourceTree = ""; }; - F908F976B832F22EA34AB777 /* MessageTemplateParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageTemplateParser.swift; path = ../Sources/CustomSyntaxTest/MessageTemplateParser.swift; sourceTree = ""; }; - F91333691DCE4ACC814CF106 /* Release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = ../Sources/Configurations/Release.xcconfig; sourceTree = ""; }; - FA159DABC79F04BBCB1B491D /* SBUOpenChannelListViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelListViewController.swift; path = ../Sources/View/ChannelList/SBUOpenChannelListViewController.swift; sourceTree = ""; }; - FBA2BBF2E0C3423587AC1D2F /* CommonProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CommonProtocols.swift; path = ../Sources/Protocol/CommonProtocols.swift; sourceTree = ""; }; - FCC96D8B89932D1AC0FCFCE3 /* SBUTheme.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUTheme.Deprecated.swift; path = ../Sources/Deprecated/SBUTheme.Deprecated.swift; sourceTree = ""; }; - FDA9516C8540210EB9D44CB1 /* SBUUnknownMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUnknownMessageCell.swift; path = ../Sources/View/Channel/MessageCell/SBUUnknownMessageCell.swift; sourceTree = ""; }; - FE513E7FC425144397895629 /* SBUMentionConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMentionConfiguration.swift; path = ../Sources/Configuration/Mention/SBUMentionConfiguration.swift; sourceTree = ""; }; - FF9C6FC326CC02F1E2C5D462 /* SBUChannelTitleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChannelTitleView.swift; path = ../Sources/View/Channel/Header/SBUChannelTitleView.swift; sourceTree = ""; }; - FFEF4310057466FD03756394 /* SBUContentBaseMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUContentBaseMessageCell.swift; path = ../Sources/View/Channel/MessageCell/SBUContentBaseMessageCell.swift; sourceTree = ""; }; + A9783CDA8931ACFBDD9CC963 /* SBUNotificationTimelineView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUNotificationTimelineView.swift; path = ../Sources/View/Channel/CellView/SBUNotificationTimelineView.swift; sourceTree = ""; }; + A9A98A78FE307A3244ED21E1 /* SBUCreateOpenChannelModule.ProfileInput.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateOpenChannelModule.ProfileInput.swift; path = ../Sources/Module/SelectUser/CreateChannel/SBUCreateOpenChannelModule.ProfileInput.swift; sourceTree = ""; }; + AB34A3801FB204563305C2CF /* SBUOpenChannelSettingsModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelSettingsModule.Header.swift; path = ../Sources/Module/ChannelSettings/OpenChannel/SBUOpenChannelSettingsModule.Header.swift; sourceTree = ""; }; + AB6023DE92499C843C275DA9 /* SBUQuoteMessageInputView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuoteMessageInputView.swift; path = ../Sources/View/Channel/MessageInput/SBUQuoteMessageInputView.swift; sourceTree = ""; }; + ABA75E67A5E3252B93F5481C /* SBULogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBULogger.swift; path = ../Sources/Util/SBULogger.swift; sourceTree = ""; }; + AF1B9B893196BD000B0374EB /* SBUGroupChannelSettingsModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelSettingsModule.Header.swift; path = ../Sources/Module/ChannelSettings/GroupChannel/SBUGroupChannelSettingsModule.Header.swift; sourceTree = ""; }; + AF23F8D9A4BEECD7166746C8 /* SBUAdminMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUAdminMessageCell.swift; path = ../Sources/View/Channel/MessageCell/SBUAdminMessageCell.swift; sourceTree = ""; }; + AFB39820FD59D283F6F24B2A /* SBUBaseChannelViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelViewController.swift; path = ../Sources/View/Channel/SBUBaseChannelViewController.swift; sourceTree = ""; }; + B0242A04C68C344BB6708B70 /* SBUMessageCellProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageCellProtocol.swift; path = "../Sources/View/Life cycles/SBUMessageCellProtocol.swift"; sourceTree = ""; }; + B055EE22F478835A00CA165F /* SBUCreateOpenChannelViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateOpenChannelViewModel.swift; path = ../Sources/ViewModel/SelectUser/CreateChannel/SBUCreateOpenChannelViewModel.swift; sourceTree = ""; }; + B0BE4CD4C3C0C4D2B2386F7E /* SBUModerationsViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModerationsViewModel.swift; path = ../Sources/ViewModel/ChannelSettings/SBUModerationsViewModel.swift; sourceTree = ""; }; + B13DEFB28B027C14E5CBCE67 /* SBUBaseMessageCellParams.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseMessageCellParams.Deprecated.swift; path = ../Sources/Deprecated/Channel/MessageCell/MessageCellParams/SBUBaseMessageCellParams.Deprecated.swift; sourceTree = ""; }; + B24F1F99A1E1A54F02289F24 /* SBUMention.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMention.swift; path = ../Sources/Model/SBUMention.swift; sourceTree = ""; }; + B3BADBDCA1E4F804594E28EE /* SBUMessageSearchViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageSearchViewController.swift; path = ../Sources/View/MessageSearch/SBUMessageSearchViewController.swift; sourceTree = ""; }; + B3EA868CDC4C8719B9149167 /* SBUBaseChannelListModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelListModule.swift; path = ../Sources/Module/ChannelList/SBUBaseChannelListModule.swift; sourceTree = ""; }; + B40B4ED0ED2BCE78D3D67A5B /* SBUGroupChannelSettingsViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelSettingsViewModel.swift; path = ../Sources/ViewModel/ChannelSettings/SBUGroupChannelSettingsViewModel.swift; sourceTree = ""; }; + B468C95DFA8BFD6D943C760A /* SBUCardView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCardView.swift; path = ../Sources/View/Channel/MessageCell/Carousel/Views/SBUCardView.swift; sourceTree = ""; }; + B51FAA8B8207EC8FCD83152F /* SBUGroupChannelPushSettingsModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelPushSettingsModule.Header.swift; path = ../Sources/Module/NotificationSettings/SBUGroupChannelPushSettingsModule.Header.swift; sourceTree = ""; }; + B53AEE3091EA5ACDDB661ADE /* SBUSuggestedMentionList.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUSuggestedMentionList.swift; path = ../Sources/View/Channel/MessageInput/SBUSuggestedMentionList.swift; sourceTree = ""; }; + B58C97A1BD425C578AA66DC8 /* SBUInviteUserViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUInviteUserViewController.swift; path = ../Sources/View/SelectUser/SBUInviteUserViewController.swift; sourceTree = ""; }; + B5F3ACE63ED31B56A3CF59B8 /* SBUCacheManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCacheManager.swift; path = ../Sources/Manager/CacheManager/SBUCacheManager.swift; sourceTree = ""; }; + B61CC39B41A1B18E23FB3490 /* SBUOpenChannelModule.Media.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelModule.Media.swift; path = ../Sources/Module/Channel/OpenChannel/SBUOpenChannelModule.Media.swift; sourceTree = ""; }; + B6843194E27B667E8E28E0BA /* SBUEnums.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUEnums.swift; path = ../Sources/Enums/SBUEnums.swift; sourceTree = ""; }; + B705777C3C970AAB69E6DFA1 /* SBUColorSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUColorSet.swift; path = ../Sources/Theme/SBUColorSet.swift; sourceTree = ""; }; + B79CEFAEACC1109FD77E340F /* SBUBaseChannelListModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelListModule.List.swift; path = ../Sources/Module/ChannelList/SBUBaseChannelListModule.List.swift; sourceTree = ""; }; + B7BF8C9833FC3A738CA354DA /* SBUQuoteMessageInputViewParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuoteMessageInputViewParams.swift; path = ../Sources/View/Channel/MessageInput/ViewParams/SBUQuoteMessageInputViewParams.swift; sourceTree = ""; }; + B8FEF5628A48F6F103CD0B78 /* SBUEmojiManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUEmojiManager.swift; path = ../Sources/Manager/SBUEmojiManager.swift; sourceTree = ""; }; + BA6376444FCC1AFC6E0E3F5D /* SendbirdUIKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SendbirdUIKit.h; path = ../Sources/SendbirdUIKit.h; sourceTree = ""; }; + BA921895742D477C03285410 /* SBURegisterOperatorModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBURegisterOperatorModule.swift; path = ../Sources/Module/SelectUser/RegisterOperator/SBURegisterOperatorModule.swift; sourceTree = ""; }; + BC322E550782BD7ABC5C5A58 /* SendbirdUI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SendbirdUI.swift; path = ../Sources/SendbirdUI.swift; sourceTree = ""; }; + BC7B06CE0A84BEE7BADFF623 /* SBUGroupChannelModule.Input.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelModule.Input.swift; path = ../Sources/Module/Channel/GroupChannel/SBUGroupChannelModule.Input.swift; sourceTree = ""; }; + BD4F25300A0550B56CB31D94 /* SBUChannelTitleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChannelTitleView.swift; path = ../Sources/View/Channel/Header/SBUChannelTitleView.swift; sourceTree = ""; }; + BDAA2862F74040B542392476 /* SBUModerationsModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModerationsModule.Header.swift; path = ../Sources/Module/Moderations/SBUModerationsModule.Header.swift; sourceTree = ""; }; + BE2D08C19AF668E9F2DB696A /* SBUChannelInfoHeaderView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChannelInfoHeaderView.swift; path = ../Sources/View/Channel/Header/SBUChannelInfoHeaderView.swift; sourceTree = ""; }; + BE92C9E26D94FD5856A0C3CD /* SBUFeedNotificationChannelViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFeedNotificationChannelViewModel.swift; path = ../Sources/ViewModel/Channel/SBUFeedNotificationChannelViewModel.swift; sourceTree = ""; }; + BFECD193321E1384EB4D5FD5 /* SBUBaseChannelSettingsViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelSettingsViewController.Deprecated.swift; path = ../Sources/Deprecated/ChannelSettings/SBUBaseChannelSettingsViewController.Deprecated.swift; sourceTree = ""; }; + C318E1D97FD014498F1904C4 /* SBUOpenChannelListModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelListModule.List.swift; path = ../Sources/Module/ChannelList/OpenChannel/SBUOpenChannelListModule.List.swift; sourceTree = ""; }; + C342CE1BF10BA52BAD5FC7E2 /* SBUUserMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserMessageCell.swift; path = ../Sources/View/Channel/MessageCell/SBUUserMessageCell.swift; sourceTree = ""; }; + C3F221D338B7FFFBF845E5F0 /* SBUUserMentionConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserMentionConfiguration.swift; path = ../Sources/Configuration/Mention/SBUUserMentionConfiguration.swift; sourceTree = ""; }; + C4965DAD4F7AE10C891037CE /* Release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = ../Sources/Configurations/Release.xcconfig; sourceTree = ""; }; + C52C2151E18EFF9D2EA43BC9 /* SBUMessageSearchModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageSearchModule.List.swift; path = ../Sources/Module/MessageSearch/SBUMessageSearchModule.List.swift; sourceTree = ""; }; + C6FA32E6CC53ADE894C5E3C2 /* SBUModerationsViewModel.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModerationsViewModel.Deprecated.swift; path = ../Sources/Deprecated/Moderations/SBUModerationsViewModel.Deprecated.swift; sourceTree = ""; }; + C8563175FA393EE9F3A03E57 /* SBUMessageInputView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageInputView.swift; path = ../Sources/View/Channel/MessageInput/SBUMessageInputView.swift; sourceTree = ""; }; + C9A38753708F3E9B80EC608E /* SBUEmojiListViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUEmojiListViewController.swift; path = ../Sources/View/Channel/Reaction/SBUEmojiListViewController.swift; sourceTree = ""; }; + CA12137A67566C6A8BA3E7DC /* SBUGlobals.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGlobals.Deprecated.swift; path = ../Sources/Deprecated/SBUGlobals.Deprecated.swift; sourceTree = ""; }; + CA6F96A3047A27BEF5627452 /* SBUQuotedFileMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuotedFileMessageView.swift; path = ../Sources/View/Channel/MessageCell/Replies/MessageView/SBUQuotedFileMessageView.swift; sourceTree = ""; }; + CB65A828D9D6AE25D6CE2E6B /* SBUMessageThreadViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageThreadViewModel.swift; path = ../Sources/ViewModel/MessageThread/SBUMessageThreadViewModel.swift; sourceTree = ""; }; + CBEAD59718531A5136B5F777 /* SBUUserMessageTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserMessageTextView.swift; path = ../Sources/View/Channel/CellView/SBUUserMessageTextView.swift; sourceTree = ""; }; + CCC7DDF0A66F0FFEEF82ED95 /* SBUMessageSearchResultCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageSearchResultCell.swift; path = ../Sources/View/MessageSearch/Cell/SBUMessageSearchResultCell.swift; sourceTree = ""; }; + CCE8FA5B06FEF67773D75F46 /* UIViewController+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+SBUIKit.swift"; path = "../Sources/Extension/UIViewController+SBUIKit.swift"; sourceTree = ""; }; + CCFBFE204000673D41A3BE2A /* SBUUserNameView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserNameView.swift; path = ../Sources/View/Channel/CellView/SBUUserNameView.swift; sourceTree = ""; }; + CD084546421454A61DA3506F /* SBUBaseMessageCellParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseMessageCellParams.swift; path = ../Sources/View/Channel/MessageCell/MessageCellParams/SBUBaseMessageCellParams.swift; sourceTree = ""; }; + CE300172AE54080E1B71226B /* SBUGroupChannelListViewModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelListViewModel.swift; path = ../Sources/ViewModel/ChannelList/SBUGroupChannelListViewModel.swift; sourceTree = ""; }; + CE39F327CFF82B3D46407736 /* SBUReactionCollectionViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = SBUReactionCollectionViewCell.xib; path = ../Sources/View/Channel/Reaction/SBUReactionCollectionViewCell.xib; sourceTree = ""; }; + D1F81CB544B02F0262F5FAF0 /* SBUChatNotificationChannelModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChatNotificationChannelModule.List.swift; path = ../Sources/Module/Channel/NotificationChannel/Chat/SBUChatNotificationChannelModule.List.swift; sourceTree = ""; }; + D2FA38DBE0FC75FDB570EF67 /* SBUQuickReplyOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUQuickReplyOptions.swift; path = ../Sources/Model/SBUQuickReplyOptions.swift; sourceTree = ""; }; + D585FB7AECB9FEF173CB309E /* UIImageView+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIImageView+SBUIKit.swift"; path = "../Sources/Extension/UIImageView+SBUIKit.swift"; sourceTree = ""; }; + D6B64E11A6EC2642D288EE03 /* SBUReplyConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUReplyConfiguration.swift; path = ../Sources/Configuration/Replies/SBUReplyConfiguration.swift; sourceTree = ""; }; + D79DC8911F69E0FF96EC8D0A /* SBUBaseChannelViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelViewController.Deprecated.swift; path = ../Sources/Deprecated/Channel/SBUBaseChannelViewController.Deprecated.swift; sourceTree = ""; }; + D7DE405EF1C38D347A64CEA3 /* SBUParentMessageInfoReactionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUParentMessageInfoReactionView.swift; path = ../Sources/View/Channel/Reaction/SBUParentMessageInfoReactionView.swift; sourceTree = ""; }; + D9125E4D83EAE7DC6D533507 /* SBUBottomSheetController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBottomSheetController.swift; path = ../Sources/View/Common/Menu/SBUBottomSheetController.swift; sourceTree = ""; }; + D9D8A94CAE86D56366A77D39 /* SBUDashboardConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUDashboardConfig.swift; path = ../Sources/Configuration/SBUDashboardConfig.swift; sourceTree = ""; }; + D9ED69F8BD57B20BC0053033 /* Sequence+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Sequence+SBUIKit.swift"; path = "../Sources/Extension/Sequence+SBUIKit.swift"; sourceTree = ""; }; + DD6AE0E431EF834F0327513F /* SBUGroupChannelListModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelListModule.Header.swift; path = ../Sources/Module/ChannelList/GroupChannel/SBUGroupChannelListModule.Header.swift; sourceTree = ""; }; + DDD6216D37C4D9FCF994B249 /* SBUBaseChannelModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelModule.Header.swift; path = ../Sources/Module/Channel/SBUBaseChannelModule.Header.swift; sourceTree = ""; }; + DE805A930D253FCF60687D45 /* SBUBaseChannelSettingCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelSettingCell.swift; path = ../Sources/View/ChannelSettings/Cell/SBUBaseChannelSettingCell.swift; sourceTree = ""; }; + DEE70322BA0838D4C1B544A3 /* QuotedFileCommonContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuotedFileCommonContentView.swift; path = ../Sources/View/Channel/MessageCell/Replies/MessageView/QuotedFileCommonContentView.swift; sourceTree = ""; }; + DEF370AEF4C4B288DAE946B4 /* SBUConstant.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUConstant.swift; path = ../Sources/Constant/SBUConstant.swift; sourceTree = ""; }; + DEFE037CFB2F5FF5EBBEAB6D /* SBUBaseChannelModule.Input.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUBaseChannelModule.Input.swift; path = ../Sources/Module/Channel/SBUBaseChannelModule.Input.swift; sourceTree = ""; }; + DF0927F43E9500DAD99B1F41 /* SBUViewModelDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUViewModelDelegate.swift; path = ../Sources/ViewModel/SBUViewModelDelegate.swift; sourceTree = ""; }; + DF5F090F8DA3E9A30F950A4A /* SBUTheme+Type.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SBUTheme+Type.swift"; path = "../Sources/Theme/SBUTheme+Type.swift"; sourceTree = ""; }; + DFBCC2F9E84E4B121C0F3F94 /* SBUUnknownMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUnknownMessageCell.swift; path = ../Sources/View/Channel/MessageCell/SBUUnknownMessageCell.swift; sourceTree = ""; }; + E03EB4C8431297CFB91A783C /* SBUModerationsModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUModerationsModule.swift; path = ../Sources/Module/Moderations/SBUModerationsModule.swift; sourceTree = ""; }; + E0F2F1CCFFC507D9526BF8AC /* SBUCreateOpenChannelViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateOpenChannelViewController.swift; path = ../Sources/View/SelectUser/CreateChannel/SBUCreateOpenChannelViewController.swift; sourceTree = ""; }; + E27943E14539280652C1EC73 /* SBUEnums.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUEnums.Deprecated.swift; path = ../Sources/Deprecated/SBUEnums.Deprecated.swift; sourceTree = ""; }; + E2B728AE4E9785DEB6BB29C0 /* SBUSelectableStackView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUSelectableStackView.swift; path = ../Sources/View/Channel/CellView/SBUSelectableStackView.swift; sourceTree = ""; }; + E385CFCDCD0762F6BE8C0DB1 /* SBUMessageStateView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageStateView.swift; path = ../Sources/View/Channel/CellView/SBUMessageStateView.swift; sourceTree = ""; }; + E3BC8FA6C941BEA7A2B28C89 /* SBUAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUAnimation.swift; path = ../Sources/View/Common/SBUAnimation.swift; sourceTree = ""; }; + E3CEAD49823EF75C7268A6AA /* SBUCacheManager.Template.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCacheManager.Template.swift; path = ../Sources/Manager/CacheManager/SBUCacheManager.Template.swift; sourceTree = ""; }; + E45F58205CE0771546E15364 /* SBUNewNotificationInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUNewNotificationInfo.swift; path = ../Sources/View/Channel/NewMessageInfo/SBUNewNotificationInfo.swift; sourceTree = ""; }; + E5294F8454186C2623207EF2 /* SBUCreateChannelViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateChannelViewController.Deprecated.swift; path = ../Sources/Deprecated/CreateChannel/SBUCreateChannelViewController.Deprecated.swift; sourceTree = ""; }; + E602E52348E231C64311CCD0 /* SBUOpenChannelContentBaseMessageCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelContentBaseMessageCell.swift; path = ../Sources/View/Channel/MessageCell/OpenChannel/SBUOpenChannelContentBaseMessageCell.swift; sourceTree = ""; }; + E65DF69581A267BC918152E4 /* SBUUserListModule.List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUUserListModule.List.swift; path = ../Sources/Module/UserList/SBUUserListModule.List.swift; sourceTree = ""; }; + E8566F29BC7FCCE36C87AA4B /* SBUCreateChannelViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateChannelViewController.swift; path = ../Sources/View/SelectUser/CreateChannel/SBUCreateChannelViewController.swift; sourceTree = ""; }; + E8B60F5B32A6F17AB90B9332 /* SBUFileViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFileViewController.swift; path = ../Sources/View/Channel/FileViewer/SBUFileViewController.swift; sourceTree = ""; }; + E8F739161E52722FA7CDD6CC /* SBUView.Unavaliable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUView.Unavaliable.swift; path = ../Sources/Deprecated/SBUView.Unavaliable.swift; sourceTree = ""; }; + E95CB8D4AD0BE723F7AAA511 /* SBUMessageThreadTitleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageThreadTitleView.swift; path = ../Sources/View/MessageThread/SBUMessageThreadTitleView.swift; sourceTree = ""; }; + E9E8064C9F6058CFCFB616F1 /* SBUStringSet.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUStringSet.Deprecated.swift; path = ../Sources/Constant/SBUStringSet.Deprecated.swift; sourceTree = ""; }; + EA962A26B5F0AB8ACE60536B /* Assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = ../Sources/Resource/Assets.xcassets; sourceTree = ""; }; + EAC8E56B3F8660C7BC32121D /* SBUConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUConfig.swift; path = ../Sources/Configuration/SBUConfig.swift; sourceTree = ""; }; + EB90FBB0634828D05C2E9DDA /* SBUFileMessageCellParams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUFileMessageCellParams.swift; path = ../Sources/View/Channel/MessageCell/MessageCellParams/SBUFileMessageCellParams.swift; sourceTree = ""; }; + EC22B1C48269D6887D5C6AC7 /* SBUGroupChannelSettingCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelSettingCell.swift; path = ../Sources/View/ChannelSettings/Cell/SBUGroupChannelSettingCell.swift; sourceTree = ""; }; + EC78BFD88CF1649749386DC3 /* SBUOpenChannelListModule.Header.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelListModule.Header.swift; path = ../Sources/Module/ChannelList/OpenChannel/SBUOpenChannelListModule.Header.swift; sourceTree = ""; }; + ECC0DFA42EDC52B376BF15C4 /* NSObject+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+SBUIKit.swift"; path = "../Sources/Extension/NSObject+SBUIKit.swift"; sourceTree = ""; }; + F01E1B2674C8B83CCC103B21 /* SBUVoiceMessageInputView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUVoiceMessageInputView.swift; path = ../Sources/View/VoiceNote/SBUVoiceMessageInputView.swift; sourceTree = ""; }; + F1FDEB5C1032B596C9A1E61C /* SBUOpenChannelViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelViewController.Deprecated.swift; path = ../Sources/Deprecated/Channel/SBUOpenChannelViewController.Deprecated.swift; sourceTree = ""; }; + F259F22451C2635E648DB93C /* SBUNavigationTitleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUNavigationTitleView.swift; path = ../Sources/View/Common/SBUNavigationTitleView.swift; sourceTree = ""; }; + F2AC75E26C413053C406605A /* SBUOpenChannelViewController.Unavailable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelViewController.Unavailable.swift; path = ../Sources/Deprecated/Channel/SBUOpenChannelViewController.Unavailable.swift; sourceTree = ""; }; + F4423B75C435CE393B7A3719 /* SBUGroupChannelSettingsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelSettingsViewController.swift; path = ../Sources/View/ChannelSettings/SBUGroupChannelSettingsViewController.swift; sourceTree = ""; }; + F55CF87153DF8E68989C6E5C /* SBUGroupChannelViewController.Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUGroupChannelViewController.Deprecated.swift; path = ../Sources/Deprecated/Channel/SBUGroupChannelViewController.Deprecated.swift; sourceTree = ""; }; + F62ACD260B8C3CAD82BE2CE3 /* SBUMessageProfileView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMessageProfileView.swift; path = ../Sources/View/Channel/CellView/SBUMessageProfileView.swift; sourceTree = ""; }; + F6C55B0F6760A44A02165168 /* SBUIconSetType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUIconSetType.swift; path = ../Sources/Enums/SBUIconSetType.swift; sourceTree = ""; }; + F77539DA9CAE6FEE88CB17B7 /* SBUCreateOpenChannelModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCreateOpenChannelModule.swift; path = ../Sources/Module/SelectUser/CreateChannel/SBUCreateOpenChannelModule.swift; sourceTree = ""; }; + F8949EC63DBE4F860CC826FE /* UserMessage+SBUIKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UserMessage+SBUIKit.swift"; path = "../Sources/Extension/UserMessage+SBUIKit.swift"; sourceTree = ""; }; + F90E3CB818E62FB7E4E0EC75 /* SBUCacheManager.Config.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUCacheManager.Config.swift; path = ../Sources/Manager/CacheManager/SBUCacheManager.Config.swift; sourceTree = ""; }; + F9283F74ACC3B88C117780DC /* SBUVoiceContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUVoiceContentView.swift; path = ../Sources/View/Channel/MessageCell/FileMessageContentView/SBUVoiceContentView.swift; sourceTree = ""; }; + FB7FD2953F4411650379504E /* SBUMentionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUMentionManager.swift; path = ../Sources/Util/SBUMentionManager.swift; sourceTree = ""; }; + FC107E0A18147CE683EC91E9 /* SBUChatNotificationCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUChatNotificationCell.swift; path = ../Sources/View/Channel/MessageCell/NotificationChannel/SBUChatNotificationCell.swift; sourceTree = ""; }; + FDC364241265D45D3B63E9F6 /* SBUParentMessageInfoView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUParentMessageInfoView.swift; path = ../Sources/View/MessageThread/SBUParentMessageInfoView.swift; sourceTree = ""; }; + FE8708D1E0C04E5FB36CC2ED /* SBUThreadInfoView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUThreadInfoView.swift; path = ../Sources/View/Channel/MessageCell/Replies/MessageView/SBUThreadInfoView.swift; sourceTree = ""; }; + FF54C51E054CA6E5FBCE1B78 /* SBUOpenChannelModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SBUOpenChannelModule.swift; path = ../Sources/Module/Channel/OpenChannel/SBUOpenChannelModule.swift; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -859,745 +879,772 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 0997E424B49DA8BE93D9D90A /* Moderations */ = { + 066417A55F5D07207D31AC11 /* GroupChannel */ = { isa = PBXGroup; children = ( + BC7B06CE0A84BEE7BADFF623 /* SBUGroupChannelModule.Input.swift */, + 5DFEB8B37E6B92819455E5C5 /* SBUGroupChannelModule.List.swift */, + 24D13B53AABF56B2E0FA2028 /* SBUGroupChannelModule.Header.swift */, + 7AE1D0983A2E41BA92784721 /* SBUGroupChannelModule.swift */, ); - name = Moderations; - sourceTree = ""; - }; - 0A5234E6B941823F1C53AED6 /* Common */ = { - isa = PBXGroup; - children = ( - 591C5E51EB9EA14CAF9DFA3E /* New Group */, - ); - name = Common; + name = GroupChannel; sourceTree = ""; }; - 0A80E9629AEACC35FF3A6C34 /* NotificationDataMock */ = { + 096268059751D0ACCAF45D43 /* OpenChannel */ = { isa = PBXGroup; children = ( + 78F55441A325E88ACCE33898 /* SBUOpenChannelFileMessageCell.swift */, + 803DAAC799F22E51FCC2B586 /* SBUOpenChannelAdminMessageCell.swift */, + E602E52348E231C64311CCD0 /* SBUOpenChannelContentBaseMessageCell.swift */, + 9DB1D3EBA4C715846778EC6F /* SBUOpenChannelUserMessageCell.swift */, + 7F07C0865743FAF5D262C21A /* SBUOpenChannelUnknownMessageCell.swift */, + 998EAB0A1CA280D46C7A96DE /* SBUOpenChannelBaseMessageCell.swift */, ); - name = NotificationDataMock; + name = OpenChannel; sourceTree = ""; }; - 0EF6D14B8A6452C021024422 /* MessageCellParams */ = { + 0B3809DDC96E89ABB17F1685 /* Deprecated */ = { isa = PBXGroup; children = ( - 5137C0ECDFE897169AD23E1E /* SBUUserMessageCellParams.swift */, - 57151216E7EB4714BF6237B5 /* SBUUnknownMessageCellParams.swift */, - C1E5352BBB4A3D5D6A7303BE /* SBUAdminMessageCellParams.swift */, - 32633C045C5228038285EA41 /* SBUBaseMessageCellParams.swift */, - 72C30A2A98340390A3BD7D5A /* SBUFileMessageCellParams.swift */, + 43E3AA9A5090886192ED2BB3 /* SBUTableViewCell.Unavailable.swift */, + FA8186399CAF27C2996B2C5D /* ChannelList */, + 80AD91B7A3215C71E0DA17F8 /* Channel */, + 0BFD84E2D4BFF06F4A63882A /* ChannelSettings */, + 0119C93BB5816A74773D5D8F /* SBUBaseViewController.Unavailable.swift */, + 128408CFE3CAB2419E2D8DBE /* MemberList */, + 9FFD45BDEDA7D5975697FDB8 /* UserList */, + 6D39E5270C97431E613BE92D /* MessageSearch */, + E8F739161E52722FA7CDD6CC /* SBUView.Unavaliable.swift */, + CA12137A67566C6A8BA3E7DC /* SBUGlobals.Deprecated.swift */, + 282FEBEB6DECCB7D3CAB883D /* SBUCoverImageView.Deprecated.swift */, + 66579D97B1863BE6F21735E5 /* Moderations */, + 3682CA27D369E792CC991916 /* SBUTheme.Deprecated.swift */, + 74C1BDAEEF52501989097DFC /* CreateChannel */, + 957D6322C90DD52997F534E5 /* SBUModuleSet.Deprecated.swift */, + E27943E14539280652C1EC73 /* SBUEnums.Deprecated.swift */, ); - name = MessageCellParams; + name = Deprecated; sourceTree = ""; }; - 10CDD472EA50295DE7C22A82 /* Reaction */ = { + 0BFD84E2D4BFF06F4A63882A /* ChannelSettings */ = { isa = PBXGroup; children = ( - 7B35BD47F4D81087250EBB1E /* SBUParentMessageInfoReactionView.swift */, - 674A14271EC7C0C257C89568 /* SBUReactionCollectionViewCell.swift */, - F0D8778FC8BB0FECDCD3261B /* SBUReactionsViewController.swift */, - 37223FEDAC6037846C10D6A1 /* SBUMessageReactionView.swift */, - 31098E1F26A27A6DE4C671E6 /* SBUReactionCollectionViewCell.xib */, - 51F80EA2DDD56D8FAEB78617 /* SBUEmojiListViewController.swift */, + BFECD193321E1384EB4D5FD5 /* SBUBaseChannelSettingsViewController.Deprecated.swift */, ); - name = Reaction; + name = ChannelSettings; sourceTree = ""; }; - 11B0BB2D86AE7AB85203BEA7 /* View */ = { + 0D48D4949788CEC921BDAF82 /* MessageThread */ = { isa = PBXGroup; children = ( - 2D9DD8AAA63298D9714EC385 /* SBUBaseViewController.swift */, - 30AAE8380CE0E6556278E2FC /* ChannelList */, - 6FB4C65D0AC0F93C0EECC4CB /* NotificationSettings */, - 80C6739F7619486F8DD29A70 /* Channel */, - 6730A5A383AB81FFF440AE64 /* ChannelSettings */, - C3AFBD8F766B72F7354CB2D9 /* VoiceNote */, - D177A24919EA4280AE5FF648 /* Common */, - 19CDFCACAD3418B11367F8F3 /* UserList */, - 70C18F790704F361094F1368 /* SBUViewControllerSet.swift */, - 92A0D42C0976BAEDB613BBCE /* MessageSearch */, - 7282F603BE4ED2C1C12E95BC /* Life cycles */, - B492A0A276C16128B9AC550D /* MessageThread */, - E0E1E403D841AB45A2C3010D /* Moderations */, - D0695BEB904B51E1DB15FCEC /* SelectUser */, + 1746A9DBA42951921198945D /* SBUMessageThreadViewController.swift */, + E95CB8D4AD0BE723F7AAA511 /* SBUMessageThreadTitleView.swift */, + FDC364241265D45D3B63E9F6 /* SBUParentMessageInfoView.swift */, ); - name = View; + name = MessageThread; sourceTree = ""; }; - 15E47AD604DEF06347904C12 /* Channel */ = { + 0DB47AC5257CA0EB3E785117 /* Views */ = { isa = PBXGroup; children = ( - 41BC1B1FC8BDD358F6FD498E /* GroupChannel */, - D0D240AFC4916FA614372E45 /* NotificationChannel */, - 34EEEBFD71E85A2574E0E422 /* SBUBaseChannelModule.Input.swift */, - 87AF7B27AEE86C110113123B /* SBUBaseChannelModule.swift */, - 01BE2A68C0EA5692AB358D72 /* SBUBaseChannelModule.Header.swift */, - 84C3E47A1E3B074B6CE18941 /* OpenChannel */, - 6C86AFB42FA61FEE04451606 /* SBUBaseChannelModule.List.swift */, + B468C95DFA8BFD6D943C760A /* SBUCardView.swift */, + 254AE3883C6081BD559CCBB4 /* SBUCardListView.swift */, ); - name = Channel; + name = Views; sourceTree = ""; }; - 17DCD4A7B489DC601CD010DD /* Moderations */ = { + 0DF18C5CB4C8A939F6091FE9 /* Moderations */ = { isa = PBXGroup; children = ( - 4825DB06A45C582889D12966 /* GroupChannel */, - E66B0824D4290141AA043A92 /* SBUModerationsModule.List.swift */, - 233BF3F9B7A9A44C35468EB4 /* SBUModerationsModule.swift */, - B4054D838A46096EB1361027 /* OpenChannel */, - 39DB0E1FC09F7BEE3B835C1D /* SBUModerationsModule.Header.swift */, + 8A78CA74082BCE0BF78707F0 /* SBUModerationsViewController.swift */, ); name = Moderations; sourceTree = ""; }; - 19CDFCACAD3418B11367F8F3 /* UserList */ = { + 1035513CCE61FEE722F90B08 /* Resource */ = { isa = PBXGroup; children = ( - 24EB35D88E21F84114E8B07C /* SBUUserListViewController.swift */, + EA962A26B5F0AB8ACE60536B /* Assets.xcassets */, ); - name = UserList; + name = Resource; sourceTree = ""; }; - 1A8B4D9A13601FAF75A8B4D9 /* UserList */ = { + 128408CFE3CAB2419E2D8DBE /* MemberList */ = { isa = PBXGroup; children = ( - 93955B67C13C0FF243E516A8 /* SBUUserListModule.swift */, - E1D17BBEAAB8C6FBF3876423 /* SBUUserListModule.List.swift */, - F61F6A17CFAA1C5E0AA59931 /* SBUUserListModule.Header.swift */, + 5282B787F38F22CD5B03E31F /* SBUMemberListViewController.Deprecated.swift */, ); - name = UserList; + name = MemberList; sourceTree = ""; }; - 1B946A363B2D8BD259C7206A /* MessageCell */ = { + 135DE5AFC4027ED118AEEB20 /* UserCell */ = { isa = PBXGroup; children = ( - 54B35EBFFCC37FE0D762F1D8 /* SBUMessageCellConfiguration.swift */, + 340099D46A47C1BCDE1F66BA /* SBUUserCell.swift */, ); - name = MessageCell; + name = UserCell; sourceTree = ""; }; - 1DAB1D4788A19BE329C4F23A /* ChannelSettings */ = { + 170EDCEEDDB8FA96F51B177D /* Module */ = { isa = PBXGroup; children = ( - A0081DC1780C9938D4BEED8F /* SBUBaseChannelSettingsViewModel.swift */, - 98E1C9A45886D8736C7FECF4 /* SBUModerationsViewModel.swift */, - 9E4C9B6E5B0890EC3EA46099 /* SBUGroupChannelSettingsViewModel.swift */, - 71D19A26952DCF95A4651A39 /* SBUOpenChannelSettingsViewModel.swift */, + CE110CA8A7848C72FF3CC1CE /* ChannelList */, + AFD2E89B679EDFD99D971E67 /* NotificationSettings */, + B6B1F687B4DDD60A403C00CC /* Channel */, + D22095766D9293341388966C /* ChannelSettings */, + 8AD350B6C041530C62E95B1D /* UserList */, + 842996646FD071AC3E39C25E /* SBUModuleSet.swift */, + ECBA915C532E802956658F10 /* MessageSearch */, + B9410B992281BD3487FECE69 /* MessageThread */, + 1870D2A7BF53A7F13E01C3B5 /* Moderations */, + DC26D0A2DE79566497D106DB /* SelectUser */, ); - name = ChannelSettings; + name = Module; sourceTree = ""; }; - 203B5B149DE9F3E72BADF7BC /* Manager */ = { + 1870D2A7BF53A7F13E01C3B5 /* Moderations */ = { isa = PBXGroup; children = ( - D92157DCAD9B8A91EDFFE3A6 /* SBUEmojiManager.swift */, - 280C51D2803CC0DB1523FAB8 /* CacheManager */, - 9AB9A53070C4D1F77CEDE131 /* SBUVoicePlayer.swift */, - 2E4CF2D41B22F0A3A6BD3C8F /* SBUNotificationChannelManager.swift */, - 5B4BC7FCE76A9D397CFF8942 /* SBUPendingMessageManager.swift */, - 6B29909D6B789A434DA5928F /* SBUDownloadManager.swift */, - 8EBAAB906E67DF6EFD62C0F1 /* Audio */, - 2ABA8C4CA70B8713D4E8C0E2 /* SBUVoiceRecorder.swift */, - 246418A4F88F9F47AC0156B8 /* SBUPermissionManager.swift */, - 47C21272A8FADC719009B031 /* SBUToastManager.swift */, + 7C92B51A543BE0A90923D5EB /* SBUModerationsModule.List.swift */, + E03EB4C8431297CFB91A783C /* SBUModerationsModule.swift */, + BDAA2862F74040B542392476 /* SBUModerationsModule.Header.swift */, ); - name = Manager; + name = Moderations; sourceTree = ""; }; - 2253B6652D30FA87CC8F9D7F /* UserList */ = { + 1DCA9018F1BB6B4EE9BDB83C /* Theme */ = { isa = PBXGroup; children = ( - 4B72235A8215E743479BC0B6 /* SBUBaseSelectUserViewController.Deprecated.swift */, + 2759679D7C60BE88C8FC058C /* SBUIconSet.swift */, + B705777C3C970AAB69E6DFA1 /* SBUColorSet.swift */, + DF5F090F8DA3E9A30F950A4A /* SBUTheme+Type.swift */, + 5F08183BDF9E55BC9BB33916 /* SBUFontSet.swift */, + 47BA6ABD5DA3E6ADC49A39DA /* SBUTheme.swift */, ); - name = UserList; + name = Theme; sourceTree = ""; }; - 229076C2FFF79DA22F86967E /* ChannelSettings */ = { + 1E11120EEBA83903700945D1 /* View */ = { isa = PBXGroup; children = ( - 3B02D3902C1EAF455A899E04 /* SBUBaseChannelSettingsModule.Header.swift */, - 19961799941C4A5BE7C36C06 /* SBUBaseChannelSettingsModule.List.swift */, - 53C687BA949885A39FA2F607 /* ChannelSettingItem */, - 4F6305CA8D3F42BBFA1647F5 /* GroupChannel */, - C06E5A2910D60CD5ACFFE801 /* SBUBaseChannelSettingsModule.swift */, - ADFE7CF3C6665E13DF1B0F02 /* OpenChannel */, + 946AB698F489745873A4D90F /* SBUBaseViewController.swift */, + 8CAB3F68091676FA543E1542 /* ChannelList */, + 928D7C3E8DB4C6B70F1C5659 /* NotificationSettings */, + 6A1D4CE4D48B803BE7560987 /* Channel */, + F517C63AEFE129A98E028B3E /* ChannelSettings */, + C9D76DD6128781F7A86A0A92 /* VoiceNote */, + 82A0196C42F01E66E6DD0549 /* Common */, + D27F0041B25EED77B98E2FF5 /* UserList */, + 45B058D1555F7C6B7E4D627F /* SBUViewControllerSet.swift */, + 8B1F571DA0683A9DE8D9BA66 /* MessageSearch */, + CA71F7D6302CF6631E69452E /* Life cycles */, + 0D48D4949788CEC921BDAF82 /* MessageThread */, + 0DF18C5CB4C8A939F6091FE9 /* Moderations */, + 7EF0D9388BF4957435FE096F /* SelectUser */, ); - name = ChannelSettings; + name = View; sourceTree = ""; }; - 2638A499FE06C20E88816223 /* Constant */ = { + 237FF5A76CDEBFCD80499D5B /* OpenChannel */ = { isa = PBXGroup; children = ( - 600654ADC5C1AD03B949A989 /* SBUStringSet.Deprecated.swift */, - A933C3DBDBBCA168BEA58E8A /* SBUDateFormatSet.swift */, - 888AB74F0C8F4DBEBDD3E0F1 /* SBUConstant.swift */, - 0CF6C6A68A65BA11CB0FA6BF /* SBUStringSet.swift */, + 9AEE8731EEBC5CBB1934D0E0 /* SBUOpenChannelSettingsModule.List.swift */, + 3C279AF5AB0BD07E8440EAA6 /* SBUOpenChannelSettingsModule.swift */, + AB34A3801FB204563305C2CF /* SBUOpenChannelSettingsModule.Header.swift */, ); - name = Constant; + name = OpenChannel; sourceTree = ""; }; - 280C51D2803CC0DB1523FAB8 /* CacheManager */ = { + 28D41E1C8CAD4B0C94941355 /* UserList */ = { isa = PBXGroup; children = ( - AE1ED28EA391C70A7828E73C /* SBUCacheManager.Config.swift */, - 42A1870E2F3FCA6B2519676B /* SBUCacheManager.File.swift */, - C5798ACEEC28445D6BB0DED9 /* SBUCacheManager.Template.swift */, - C791015E5D1561D9F6CCFE3D /* SBUCacheManager.Image.swift */, - 6138DA2AB85156895618AA5D /* SBUCacheManager.swift */, - E5F235AAAE80C80A0FA460D2 /* SBUCacheManager.NotificationSetting.swift */, + 39BE7BF6B2F1DD846684F281 /* SBUUserListViewModel.swift */, ); - name = CacheManager; + name = UserList; sourceTree = ""; }; - 29398563921FCAA5499D84DB /* CustomSyntaxTest */ = { + 2DDA6AFFD571B95BB3593994 /* ViewParams */ = { isa = PBXGroup; children = ( - 1C2D59AD85338E7EE6A08F93 /* MessageTemplateTestViewController.swift */, - F908F976B832F22EA34AB777 /* MessageTemplateParser.swift */, - 358BF3E05BC5E1A012FB3FA9 /* MessageTemplateRenderer.swift */, + 00B6EA1E561E77D6BB6C04F0 /* SBUQuotedBaseMessageViewParams.swift */, ); - name = CustomSyntaxTest; + name = ViewParams; sourceTree = ""; }; - 2AB489D3EC25607508ECAE47 /* FileMessageContentView */ = { + 30ACC2A837932AF99D111AB0 /* Util */ = { isa = PBXGroup; children = ( - F3AB8C46EE31D9837276A59C /* SBUBaseFileContentView.swift */, - 5E14AF74B1309E8538984518 /* SBUOpenChannelCommonContentView.swift */, - 0052C497CCD121328271A0CC /* SBUVoiceContentView.swift */, - ECF834BA2F347DC82CAC8127 /* SBUImageContentView.swift */, - 2B21BF4E95339FAB0D513548 /* SBUCommonContentView.swift */, - 5284C3DA615215B459268CBE /* SBUOpenChannelImageContentView.swift */, + 69DE412B03BA8F08AB499495 /* SBUPropertyWrapper.swift */, + 786FDEE6E500050CB8615F41 /* SBUUtils.swift */, + ABA75E67A5E3252B93F5481C /* SBULogger.swift */, + FB7FD2953F4411650379504E /* SBUMentionManager.swift */, + 49830EE06BF38AF718203A9A /* SBUDebouncer.swift */, ); - name = FileMessageContentView; + name = Util; sourceTree = ""; }; - 30AAE8380CE0E6556278E2FC /* ChannelList */ = { + 38D74E559D6227B9C32FA2D0 /* VoiceMessage */ = { isa = PBXGroup; children = ( - 44ADCE592E231CD94ADB9188 /* ChannelCell */, - EDC0FC99EA99835B8C7E67F6 /* SBUBaseChannelListViewController.swift */, - E9BF9A023D9C63F2AF5A74B7 /* SBUGroupChannelListViewController.swift */, - FA159DABC79F04BBCB1B491D /* SBUOpenChannelListViewController.swift */, + 9ACB660983DEA2E33672700B /* SBUVoiceMessageConfiguration.swift */, ); - name = ChannelList; + name = VoiceMessage; sourceTree = ""; }; - 330E6C891BD78CCFE29B4797 /* UserCell */ = { + 3B6FDFD018ABA26C24E6E13E /* MessageView */ = { isa = PBXGroup; children = ( - 6CCE5C3D07F1E31614E55CC6 /* SBUUserCell.swift */, + DEE70322BA0838D4C1B544A3 /* QuotedFileCommonContentView.swift */, + 743250BF1B4FA3FD3045308B /* SBUQuotedBaseMessageView.swift */, + FE8708D1E0C04E5FB36CC2ED /* SBUThreadInfoView.swift */, + 957C656CFD0DBCD44FA988F8 /* QuotedFileImageContentView.swift */, + CA6F96A3047A27BEF5627452 /* SBUQuotedFileMessageView.swift */, + 2C0A32577B5C0825ABAF8501 /* SBUQuotedUserMessageView.swift */, ); - name = UserCell; + name = MessageView; sourceTree = ""; }; - 342A903AB3E1AE94E64CC1D3 /* NewMessageInfo */ = { + 3F2FFB91BC16C95660E02842 /* CustomSyntaxTest */ = { isa = PBXGroup; children = ( - 0E3EBDB904C8CE14C2030C9A /* SBUNewNotificationInfo.swift */, - 490F0B8C9DE4B1602C44707E /* SBUNewMessageInfo.swift */, + 256BD30990A7D8C0999755A2 /* MessageTemplateTestViewController.swift */, + 49DC53532B8EF75EEDD53CFF /* MessageTemplateParser.swift */, + 62500E55CD643BFCE52788C6 /* MessageTemplateRenderer.swift */, ); - name = NewMessageInfo; + name = CustomSyntaxTest; sourceTree = ""; }; - 34E91684E4C9BF3F852909C7 /* MessageThread */ = { + 3FEBC0CF7E12BC8A27B834C9 /* Views */ = { isa = PBXGroup; children = ( - A07733A06DA07856B4E11457 /* SBUMessageThreadModule.List.swift */, - B7EBBB60E8FE246A22593D5A /* SBUMessageThreadModule.swift */, - BCB15FCCDCFB629D3A138681 /* SBUMessageThreadModule.Input.swift */, - 2E3440513BE2E42CE993A2CB /* SBUMessageThreadModule.Header.swift */, + 579521E3B9E699FE7F029616 /* SBUQuickReplyOptionView.swift */, + 54D008A6338A957FE7533AE0 /* SBUQuickReplyView.swift */, ); - name = MessageThread; + name = Views; sourceTree = ""; }; - 3E8A03E75C0EAD0F09C7231C /* View */ = { + 45D22ED8B63A04DFAE340E65 /* CreateChannel */ = { isa = PBXGroup; children = ( - 0508C8B9790B2461890BCD56 /* SBUChannelSettingsChannelInfoView.swift */, + 96E804CCF4CA2D4E98FD8F62 /* View */, + E8566F29BC7FCCE36C87AA4B /* SBUCreateChannelViewController.swift */, + E0F2F1CCFFC507D9526BF8AC /* SBUCreateOpenChannelViewController.swift */, ); - name = View; + name = CreateChannel; sourceTree = ""; }; - 3F41704AF882DBACAC3DE753 /* Replies */ = { + 482990B89251FAD8A06DC660 /* MessageCell */ = { isa = PBXGroup; children = ( - 7F65CFF37E53BCAAA50406AE /* SBUQuotedBaseMessageViewParams.Deprecated.swift */, + 73088008D5629C7B8A4D214B /* MessageCellParams */, + 54C4AB582F2A81C87C11E1E5 /* FileMessageContentView */, + C2AC539D1E1947B7B8F1BEFF /* NotificationChannel */, + 93D52CB912B4C3BBE386FD7A /* Replies */, + FCDEF86ABC9EFBB76CB301E3 /* Carousel */, + 9A5A01A3FCF5C998CEAE46E7 /* SBUBaseMessageCell.swift */, + 6180503B8A349AB99319C9F1 /* QuickReply */, + 096268059751D0ACCAF45D43 /* OpenChannel */, + 38B993F2E96BC3680EE86BBB /* SBUFileMessageCell.swift */, + AF23F8D9A4BEECD7166746C8 /* SBUAdminMessageCell.swift */, + 9F2CC2CD59ADEFE1C47A0587 /* SBUContentBaseMessageCell.swift */, + DFBCC2F9E84E4B121C0F3F94 /* SBUUnknownMessageCell.swift */, + C342CE1BF10BA52BAD5FC7E2 /* SBUUserMessageCell.swift */, ); - name = Replies; + name = MessageCell; sourceTree = ""; }; - 41BC1B1FC8BDD358F6FD498E /* GroupChannel */ = { + 512B791476E28906E807EFE2 /* ChannelSettingItem */ = { isa = PBXGroup; children = ( - 548040194B736EA02AA25CCF /* SBUGroupChannelModule.Input.swift */, - D3BDB91356B795FBB8B09D41 /* SBUGroupChannelModule.List.swift */, - 413F9F17DF82A9C6C5E109F6 /* SBUGroupChannelModule.Header.swift */, - 44E0ACF1ED6168F2A221DA56 /* SBUGroupChannelModule.swift */, + 7F0107F6D69F27DF9B2B9B20 /* SBUChannelSettingItem.swift */, ); - name = GroupChannel; + name = ChannelSettingItem; sourceTree = ""; }; - 443CCD39FCDFA75AC5A3C58C /* Replies */ = { + 54C4AB582F2A81C87C11E1E5 /* FileMessageContentView */ = { isa = PBXGroup; children = ( - 263D26B5E205CDC6CFA6C802 /* SBUReplyConfiguration.swift */, + 4FEA757DE96503A09CACE1ED /* SBUBaseFileContentView.swift */, + 1A4D825ADA8BB2A7CEBEAB90 /* SBUOpenChannelCommonContentView.swift */, + F9283F74ACC3B88C117780DC /* SBUVoiceContentView.swift */, + 74C3E8B1893DF7C97B9FADF9 /* SBUImageContentView.swift */, + 947FA647A04DACCECD392EB9 /* SBUCommonContentView.swift */, + 8BBC47200225C1649B233CBF /* SBUOpenChannelImageContentView.swift */, ); - name = Replies; + name = FileMessageContentView; sourceTree = ""; }; - 44ADCE592E231CD94ADB9188 /* ChannelCell */ = { + 56698564D215D93E93337CCD /* ChannelSettings */ = { isa = PBXGroup; children = ( - 23279CEC36E9640FC3CDBFBF /* SBUOpenChannelCell.swift */, - BD2EC18E17D95D8C9DE00BE1 /* SBUGroupChannelCell.swift */, - 79504BB5C9B981AC830C391C /* SBUBaseChannelCell.swift */, + 21307B9A4C62110BC9E4FF1A /* SBUBaseChannelSettingsViewModel.swift */, + B0BE4CD4C3C0C4D2B2386F7E /* SBUModerationsViewModel.swift */, + B40B4ED0ED2BCE78D3D67A5B /* SBUGroupChannelSettingsViewModel.swift */, + 4F9BDEA7D15345561095A1E6 /* SBUOpenChannelSettingsViewModel.swift */, ); - name = ChannelCell; + name = ChannelSettings; sourceTree = ""; }; - 4825DB06A45C582889D12966 /* GroupChannel */ = { + 57A876276844408AFC8E1F96 /* ViewParams */ = { isa = PBXGroup; children = ( + 62816F68CE7372CDD831EBCC /* SBUQuickReplyViewParams.swift */, ); - name = GroupChannel; + name = ViewParams; sourceTree = ""; }; - 48439793B684E802A8BE6578 /* ChannelList */ = { + 5AF27ED0D607E014F337BB18 /* CellView */ = { isa = PBXGroup; children = ( - C7299BBEF4BA3589B72FAB0B /* SBUChannelListViewController.Deprecated.swift */, + E385CFCDCD0762F6BE8C0DB1 /* SBUMessageStateView.swift */, + F62ACD260B8C3CAD82BE2CE3 /* SBUMessageProfileView.swift */, + CBEAD59718531A5136B5F777 /* SBUUserMessageTextView.swift */, + CCFBFE204000673D41A3BE2A /* SBUUserNameView.swift */, + 43457EA12A745BF0405FCAEA /* SBUMessageWebView.swift */, + 9C7D209B2820641E5ACCB37D /* SBUMessageDateView.swift */, + 8D8E55F568EC9940CFD10CE3 /* SBULinkClickableTextView.swift */, + 96C2670CDA57B6FC6B76DE08 /* SBUOpenChannelMessageWebView.swift */, + E2B728AE4E9785DEB6BB29C0 /* SBUSelectableStackView.swift */, + A9783CDA8931ACFBDD9CC963 /* SBUNotificationTimelineView.swift */, ); - name = ChannelList; + name = CellView; sourceTree = ""; }; - 4C2FBEFF64F444C015210636 /* Channel */ = { + 5B252662441E3CCF30C0B258 /* MessageCell */ = { isa = PBXGroup; children = ( - E62A78D95D7E5FDE2F8D6514 /* MessageCell */, - A34E7B141CBF2FCC81D1E924 /* SBUBaseChannelViewController.Deprecated.swift */, - D4177A1801AF4E23E808E05E /* SBUGroupChannelViewController.Unavailable.swift */, - E066BD3E4E77927144A2478F /* SBUOpenChannelViewController.Deprecated.swift */, - 43F44C559773C1F1CDF52E89 /* SBUOpenChannelViewController.Unavailable.swift */, - DA17D6FD5362C62E3E6DC318 /* SBUGroupChannelViewController.Deprecated.swift */, - 14B90BC4712233622176AA2E /* SBUBaseChannelViewController.Unavailable.swift */, + A8C161AD191DDC88266D0831 /* MessageCellParams */, + C0CFC7679181D2E9BA96AE8F /* Replies */, + 8C3EA82E51E5050C65CD3714 /* SBUContentBaseMessageCell.Deprecated.swift */, ); - name = Channel; + name = MessageCell; sourceTree = ""; }; - 4DFFC0462556FCD5C9C737B1 /* Deprecated */ = { + 5CABD3991EFB4C0E3AF574FA /* InviteUser */ = { isa = PBXGroup; children = ( - 9AA44347CA9FC437856EC732 /* SBUTableViewCell.Unavailable.swift */, - 48439793B684E802A8BE6578 /* ChannelList */, - 4C2FBEFF64F444C015210636 /* Channel */, - 5B0CEDBC612F4D97132B5C1B /* ChannelSettings */, - 4461DE456B85C22AA99A29E7 /* SBUBaseViewController.Unavailable.swift */, - 8970D9EAC904185B2EFF8476 /* MemberList */, - 2253B6652D30FA87CC8F9D7F /* UserList */, - 525AB6527D54D6B0FDFB78DB /* MessageSearch */, - D349A851AFBCFE62F1A86E1B /* SBUView.Unavaliable.swift */, - E84E49240B02B4FE176C0ACF /* SBUGlobals.Deprecated.swift */, - F80A167C1BCD02376FEBA565 /* SBUCoverImageView.Deprecated.swift */, - AD4D03E9D0FB5CAB065CCA29 /* Moderations */, - FCC96D8B89932D1AC0FCFCE3 /* SBUTheme.Deprecated.swift */, - E8CF7E7CFBC332A60A953335 /* CreateChannel */, - 5DA64EC168ACFEB42A17C70A /* SBUModuleSet.Deprecated.swift */, - 1E6CAA09C43D1E6A4398CA31 /* SBUEnums.Deprecated.swift */, + 3F0361EDB6915AF2F627431D /* SBUInviteUserModule.List.swift */, + 89FF7BAE0478EC4D64251FE0 /* SBUInviteUserModule.swift */, + 0DC457DEFD6198D5E8D3007A /* SBUInviteUserModule.Header.swift */, ); - name = Deprecated; + name = InviteUser; sourceTree = ""; }; - 4F6305CA8D3F42BBFA1647F5 /* GroupChannel */ = { + 6180503B8A349AB99319C9F1 /* QuickReply */ = { isa = PBXGroup; children = ( - B064373F96C7EE1E19C5F4C9 /* SBUGroupChannelSettingsModule.swift */, - B1FFF2B87A362D9DBA83BC95 /* SBUGroupChannelSettingsModule.Header.swift */, - D7306B8417B4BC6AA22C46BC /* SBUGroupChannelSettingsModule.List.swift */, + 57A876276844408AFC8E1F96 /* ViewParams */, + 3FEBC0CF7E12BC8A27B834C9 /* Views */, ); - name = GroupChannel; + name = QuickReply; sourceTree = ""; }; - 4F90C0B9B7B0133AA160C837 /* ChatSDK */ = { + 63C40A3E1D0E28AD5863B7DA /* NewMessageInfo */ = { isa = PBXGroup; children = ( - ADAF206FF195F239573C985C /* BaseMessage+SBUIKit.swift */, + E45F58205CE0771546E15364 /* SBUNewNotificationInfo.swift */, + 964BD3A3680997F100F6EF8C /* SBUNewMessageInfo.swift */, ); - name = ChatSDK; + name = NewMessageInfo; sourceTree = ""; }; - 5166073C00EB97E07D3E80D2 /* OpenChannel */ = { + 66579D97B1863BE6F21735E5 /* Moderations */ = { isa = PBXGroup; children = ( - 622DCF37B78F8F22A3F670A9 /* SBUOpenChannelListModule.swift */, - 16DB0EFB3DB7DC7B07BACDB0 /* SBUOpenChannelListModule.List.swift */, - 00501C2494FE5A6D7D16701D /* SBUOpenChannelListModule.Header.swift */, + C6FA32E6CC53ADE894C5E3C2 /* SBUModerationsViewModel.Deprecated.swift */, + 9E53D23CEF9C69F22BF4A33D /* SBUModerationsViewController.Deprecated.swift */, ); - name = OpenChannel; + name = Moderations; sourceTree = ""; }; - 51D0A9B290598D8D0B98B82A /* InviteUser */ = { + 67299E7A01D42F67190E3EB8 /* Configuration */ = { isa = PBXGroup; children = ( - 85E9CEB9C5487DC6A9BFDF0D /* SBUInviteUserModule.List.swift */, - 617CF220EEBC9C625E3356EC /* SBUInviteUserModule.swift */, - E43BC1FFC1B63917B6C19C66 /* SBUInviteUserModule.Header.swift */, + E222721B877523AB9A821AE2 /* MessageCell */, + BA82DCE457B8C7E623CE4DC6 /* Replies */, + 6D17261C2934B0174766D53D /* SBUConfigManager.swift */, + 172AC5FDCDD396336908039A /* SBUConfig.OpenChannel.swift */, + EAC8E56B3F8660C7BC32121D /* SBUConfig.swift */, + 38D74E559D6227B9C32FA2D0 /* VoiceMessage */, + 6FC5578DBAFB57DB56EF570E /* SBUConfig.Base.swift */, + 863134470ACE11D7C93E6849 /* SBUConfig.GroupChannel.swift */, + E3AADCB28A504B1518F7F6FA /* Mention */, + 03509DD13C216C73EEA96E76 /* SBUConfig.Common.swift */, + D9D8A94CAE86D56366A77D39 /* SBUDashboardConfig.swift */, + 3D8FDE3655125635A2283B4A /* SBUConfig.CodingKeys.swift */, ); - name = InviteUser; + name = Configuration; sourceTree = ""; }; - 525AB6527D54D6B0FDFB78DB /* MessageSearch */ = { + 67B3FBF9234CD383122A7926 /* ChannelList */ = { isa = PBXGroup; children = ( - 170A323DADC4CC14D07B75F8 /* SBUMessageSearchViewController.Deprecated.swift */, + CE300172AE54080E1B71226B /* SBUGroupChannelListViewModel.swift */, + A573341603D1272B5BBEA9D0 /* SBUOpenChannelListViewModel.swift */, + 888AA7B1CE1805F2CB31325B /* SBUBaseChannelListViewModel.swift */, ); - name = MessageSearch; + name = ChannelList; sourceTree = ""; }; - 53C687BA949885A39FA2F607 /* ChannelSettingItem */ = { + 67DEBB240A88EECAFE5567FC /* CreateChannel */ = { isa = PBXGroup; children = ( - 2197A4720D341BFCF13C2821 /* SBUChannelSettingItem.swift */, + A9A98A78FE307A3244ED21E1 /* SBUCreateOpenChannelModule.ProfileInput.swift */, + 9BDA439B4E0DEA464325459D /* SBUCreateChannelModule.swift */, + F77539DA9CAE6FEE88CB17B7 /* SBUCreateOpenChannelModule.swift */, + 006B06B77B5FD1393884CD6E /* SBUCreateOpenChannelModule.Header.swift */, + 19F421F98889E3FCFC352043 /* SBUCreateChannelModule.Header.swift */, + 05CBB523FF393279372DC16F /* SBUCreateChannelModule.List.swift */, ); - name = ChannelSettingItem; + name = CreateChannel; sourceTree = ""; }; - 591C5E51EB9EA14CAF9DFA3E /* New Group */ = { + 67EFCF0B1AE075B1B73D8B23 /* Chat */ = { isa = PBXGroup; children = ( + 7638A9237443FFA4A9B0ABD3 /* SBUChatNotificationChannelModule.swift */, + D1F81CB544B02F0262F5FAF0 /* SBUChatNotificationChannelModule.List.swift */, + 6B302EFC43477D2B3AB1934B /* SBUChatNotificationChannelModule.Header.swift */, ); - name = "New Group"; + name = Chat; sourceTree = ""; }; - 5A964BDF8A437DC6971E0CE0 /* MessageThread */ = { + 6894D7496318F18F4F5D3B05 /* NotificationChannel */ = { isa = PBXGroup; children = ( - 88619A0779C35F1F7FA3800F /* SBUMessageThreadViewModel.swift */, + 67EFCF0B1AE075B1B73D8B23 /* Chat */, + BC2D3F05C89CB5D18DB26AF8 /* Feed */, ); - name = MessageThread; + name = NotificationChannel; sourceTree = ""; }; - 5B0CEDBC612F4D97132B5C1B /* ChannelSettings */ = { + 6A1D4CE4D48B803BE7560987 /* Channel */ = { isa = PBXGroup; children = ( - 96134C5985795B294F985505 /* SBUBaseChannelSettingsViewController.Deprecated.swift */, + C6BFEEDDA4F93B9C3F9B8F16 /* ViewModel */, + 95180DCE1CF8FA3A1E64DFD4 /* Reaction */, + 29418D3AF26BFD41B321D228 /* SBUFeedNotificationChannelViewController.swift */, + AFB39820FD59D283F6F24B2A /* SBUBaseChannelViewController.swift */, + 482990B89251FAD8A06DC660 /* MessageCell */, + 2F3A56F881885C6849D81DCD /* SBUGroupChannelViewController.swift */, + 6A3C9EDF45739B9CEA655319 /* MessageInput */, + 5AF27ED0D607E014F337BB18 /* CellView */, + BC51BC3C69B06668C09E5C8A /* FileViewer */, + 36D26EF086827A1D7008E4E5 /* SBUBaseChannelViewController.Keyboard.swift */, + 43D06F6CD4BAB7BB20B7F513 /* SBUChatNotificationChannelViewController.swift */, + 63C40A3E1D0E28AD5863B7DA /* NewMessageInfo */, + A8BD827DDF658E347DD19C07 /* SBUOpenChannelViewController.swift */, + FB64AF266BA464286732DA35 /* Header */, ); - name = ChannelSettings; + name = Channel; sourceTree = ""; }; - 5D1D58367A04DE1F41566FC3 /* Feed */ = { + 6A3C9EDF45739B9CEA655319 /* MessageInput */ = { isa = PBXGroup; children = ( - F3A0076CADC48A5F711EF1CB /* SBUFeedNotificationChannelModule.Header.swift */, - EC04424C7F33DCE60A159DBE /* SBUFeedNotificationChannelModule.List.swift */, - 15238F7AF3FCC54820539706 /* SBUFeedNotificationChannelModule.swift */, + 67D90A5B64F80F05DFDF149D /* SBUMentionLimitGuideCell.swift */, + B53AEE3091EA5ACDDB661ADE /* SBUSuggestedMentionList.swift */, + AB6023DE92499C843C275DA9 /* SBUQuoteMessageInputView.swift */, + 1D74683E239E77487D1F3EF6 /* SBUMessageInputMode.swift */, + 931AACCB2F5154288B8C779F /* ViewParams */, + C8563175FA393EE9F3A03E57 /* SBUMessageInputView.swift */, ); - name = Feed; + name = MessageInput; sourceTree = ""; }; - 5E970AEC147B2542EA4C8BE2 /* FileViewer */ = { + 6D39E5270C97431E613BE92D /* MessageSearch */ = { isa = PBXGroup; children = ( - 2800C578594DF8D51CCF2358 /* SBUFileViewController.swift */, + 52F765480752E5E845D98960 /* SBUMessageSearchViewController.Deprecated.swift */, ); - name = FileViewer; + name = MessageSearch; sourceTree = ""; }; - 61467B86FDAC47BF2BDDDC89 /* Configurations */ = { + 73088008D5629C7B8A4D214B /* MessageCellParams */ = { isa = PBXGroup; children = ( - AD92CDB46D353A3DDFC8A667 /* Debug.xcconfig */, - F91333691DCE4ACC814CF106 /* Release.xcconfig */, - 6335031FE81A51E28535ECAE /* Base.xcconfig */, + 3D303F8D1B6979687B61E9CE /* SBUUserMessageCellParams.swift */, + 382B2A8EC16B1456CF836A73 /* SBUUnknownMessageCellParams.swift */, + 356EA68A1B4B5838CBCA214A /* SBUAdminMessageCellParams.swift */, + CD084546421454A61DA3506F /* SBUBaseMessageCellParams.swift */, + EB90FBB0634828D05C2E9DDA /* SBUFileMessageCellParams.swift */, ); - name = Configurations; + name = MessageCellParams; sourceTree = ""; }; - 620AA63C102F6AB79E2469AB /* Cell */ = { + 74C1BDAEEF52501989097DFC /* CreateChannel */ = { isa = PBXGroup; children = ( - A44E8BACD0AB0059437754E7 /* SBUChannelPushSettingCell.swift */, + E5294F8454186C2623207EF2 /* SBUCreateChannelViewController.Deprecated.swift */, ); - name = Cell; + name = CreateChannel; sourceTree = ""; }; - 6454AB3AAEED2333B82F1A41 /* MessageCell */ = { + 7EF0D9388BF4957435FE096F /* SelectUser */ = { isa = PBXGroup; children = ( - 0EF6D14B8A6452C021024422 /* MessageCellParams */, - 2AB489D3EC25607508ECAE47 /* FileMessageContentView */, - B6F39D8624F82423FDD1E828 /* NotificationChannel */, - DB28B0A509C0E636C325FF71 /* Replies */, - F8050B1788B66E3D4B1B5B6C /* SBUBaseMessageCell.swift */, - B28225D9B1A2F11BF5291D8D /* OpenChannel */, - 9580F0FFAE8FE439A9832253 /* SBUFileMessageCell.swift */, - D8E99652BDFF94AC1960E864 /* SBUAdminMessageCell.swift */, - FFEF4310057466FD03756394 /* SBUContentBaseMessageCell.swift */, - FDA9516C8540210EB9D44CB1 /* SBUUnknownMessageCell.swift */, - D3F82FDCCD32A9269A190F63 /* SBUUserMessageCell.swift */, + 69182E174B1D66B575EEE506 /* SBURegisterOperatorViewController.swift */, + 3CF834D3E9056FDB3CB27320 /* SBUBaseSelectUserViewController.swift */, + B58C97A1BD425C578AA66DC8 /* SBUInviteUserViewController.swift */, + 45D22ED8B63A04DFAE340E65 /* CreateChannel */, ); - name = MessageCell; + name = SelectUser; sourceTree = ""; }; - 6730A5A383AB81FFF440AE64 /* ChannelSettings */ = { + 80AD91B7A3215C71E0DA17F8 /* Channel */ = { isa = PBXGroup; children = ( - EE1101168F87535D4961C514 /* SBUBaseChannelSettingsViewController.swift */, - EF925C91938FE084A6BBE723 /* SBUOpenChannelSettingsViewController.swift */, - EFCB011B83E298C2CE50E7BA /* Cell */, - 3E8A03E75C0EAD0F09C7231C /* View */, - 32D062C18AE404BA33940C2C /* SBUGroupChannelSettingsViewController.swift */, + 5B252662441E3CCF30C0B258 /* MessageCell */, + D79DC8911F69E0FF96EC8D0A /* SBUBaseChannelViewController.Deprecated.swift */, + 8CFB7118812FC29ED6D727ED /* SBUGroupChannelViewController.Unavailable.swift */, + F1FDEB5C1032B596C9A1E61C /* SBUOpenChannelViewController.Deprecated.swift */, + F2AC75E26C413053C406605A /* SBUOpenChannelViewController.Unavailable.swift */, + F55CF87153DF8E68989C6E5C /* SBUGroupChannelViewController.Deprecated.swift */, + 5CF3A14F160D730911531AA9 /* SBUBaseChannelViewController.Unavailable.swift */, ); - name = ChannelSettings; + name = Channel; sourceTree = ""; }; - 6BDCF9D604A84641EB7D11E7 /* Common */ = { - isa = PBXGroup; - children = ( - 20FD7DF375ECF9D3664116C1 /* SBUCommonDelegate.swift */, + 82A0196C42F01E66E6DD0549 /* Common */ = { + isa = PBXGroup; + children = ( + 539EF029708D8DC3BCC9C110 /* SBUStackView.swift */, + E3BC8FA6C941BEA7A2B28C89 /* SBUAnimation.swift */, + 29960A3C98ECF43AF2F1A6A3 /* SBUEmptyView.swift */, + 9B50EC08D2D3E676F56B6612 /* SBUCoverImageView.swift */, + E754F8CAD896211E31873142 /* PhotoLibrary */, + 7E5019034DBEDB9BDDE37851 /* SBUCommonItem.swift */, + 5D46ADF492A68DA66F6952AD /* SBULayoutableButton.swift */, + C816B157FADE8A1BE7DED4B3 /* User */, + F259F22451C2635E648DB93C /* SBUNavigationTitleView.swift */, + 12EF0CF39774DF30BA37B0DE /* SBUNotificationNavigationTitleView.swift */, + 607F27DD6B7985B07B2748BE /* SBUBarButtonItem.swift */, + 00D7327430E43A8DBA0C2A7D /* SBUActionSheet.swift */, + A0403058FECF395E73684230 /* SBUNotificationEmptyView.swift */, + 3A1B09BD25B331EB14AFA06D /* SBUAlertView.swift */, + EBAE1F1E92C2B617EEA70AE4 /* Menu */, + 5FD2514D5B32DFBDB808F8C9 /* SBUUnderLineTextField.swift */, + 135DE5AFC4027ED118AEEB20 /* UserCell */, + 9FDF11E883E7BE374B123C07 /* SBUTemplateLabel.swift */, + 713693AA41E41D77D20BD684 /* SBUMarginView.swift */, + A5213C262952F4E01D4BC34C /* SBUCommonViewControllerSet.swift */, + 74C6FD2E0756C4D65B85BB9C /* SBULoading.swift */, + 90F3D73E2831A61C3F1CD084 /* SBUCollectionViewFlowLayout.swift */, ); name = Common; sourceTree = ""; }; - 6FB4C65D0AC0F93C0EECC4CB /* NotificationSettings */ = { + 8526A7DB7F03706B763F80CD /* GroupChannel */ = { isa = PBXGroup; children = ( - 620AA63C102F6AB79E2469AB /* Cell */, - 24AF3D7554452FDBD776D617 /* SBUGroupChannelPushSettingsViewController.swift */, + 8FBD562FCA8AC842F2A15488 /* SBUGroupChannelListModule.List.swift */, + 6B84323AFC7847004297D297 /* SBUGroupChannelListModule.swift */, + DD6AE0E431EF834F0327513F /* SBUGroupChannelListModule.Header.swift */, ); - name = NotificationSettings; - sourceTree = ""; - }; - 7280982C8B0E636F963873E9 /* Menu */ = { - isa = PBXGroup; - children = ( - 55C045397CABC01200AFB0C2 /* SBUMenuCell.xib */, - 5501D67CA2EE5205D821CB9B /* SBUMenuSheetViewController.swift */, - 07A21BCF0A4E53CE588EF51C /* SBUMenuCell.swift */, - E28DEB730F0F5EAD2599330D /* SBUMenuView.swift */, - DBCE026F3180A4CF25EA3251 /* SBUBottomSheetController.swift */, - ); - name = Menu; + name = GroupChannel; sourceTree = ""; }; - 7282F603BE4ED2C1C12E95BC /* Life cycles */ = { + 873BAF7F11F64CAE69DDB5E6 /* ViewModel */ = { isa = PBXGroup; children = ( - 934234A0EF4D235264363528 /* SBUTableViewCell.swift */, - C2F4923F59AD1EBC2A50C072 /* SBUQuoteMessageInputViewProtocol.swift */, - 6C933FACFD609E17EAF3A41B /* SBUMessageCellProtocol.swift */, - D8EC95DFE5043773778216EC /* SBUViewLifeCycle.swift */, - 47E88E362FAD792F98F2A78F /* SBUQuotedMessageViewProtocol.swift */, - DA32A6610187C40542720C42 /* SBUView.swift */, + DF0927F43E9500DAD99B1F41 /* SBUViewModelDelegate.swift */, + 67B3FBF9234CD383122A7926 /* ChannelList */, + F4E2371313F2E104F290466F /* NotificationSettings */, + D365191D5B76D26299C11D24 /* Channel */, + 56698564D215D93E93337CCD /* ChannelSettings */, + 9F2A25BAD954E1BE1B72EB55 /* Common */, + 28D41E1C8CAD4B0C94941355 /* UserList */, + F4644DFFBA98BC78D9BB105B /* MessageSearch */, + 91FC92B6177D631A74F0A96A /* MessageThread */, + A9A417903E743623C21853B7 /* SelectUser */, ); - name = "Life cycles"; + name = ViewModel; sourceTree = ""; }; - 7E550FCF8CB8AE6866090DF1 /* SelectUser */ = { + 8A3A2B29C1608F460223ADE5 /* Cell */ = { isa = PBXGroup; children = ( - D6B74B5A10DA39A07B54151A /* RegisterOperator */, - 51D0A9B290598D8D0B98B82A /* InviteUser */, - E9AB4C46814838C10D2C0205 /* SBUBaseSelectUserModule.Header.swift */, - F219E063C516EE24242AA983 /* SBUBaseSelectUserModule.swift */, - F46AA396D9BE934B43FD1174 /* CreateChannel */, - B316160D5B1AB6B80189E7E4 /* SBUBaseSelectUserModule.List.swift */, + 062354D4B0C81C7FE0CA82E3 /* SBUOpenChannelSettingCell.swift */, + DE805A930D253FCF60687D45 /* SBUBaseChannelSettingCell.swift */, + 4B583B3D275AE73E233DEB8C /* SBUModerationCell.swift */, + EC22B1C48269D6887D5C6AC7 /* SBUGroupChannelSettingCell.swift */, ); - name = SelectUser; + name = Cell; sourceTree = ""; }; - 7EA295D92A27BCA04E6D372A /* ChannelList */ = { + 8A3A4B6CA4530FDA128F308A /* CreateChannel */ = { isa = PBXGroup; children = ( - 10B6EC355B1F9FA84C9BE62C /* SBUGroupChannelListViewModel.swift */, - 5E89FF2BFED7E12333AEC2CA /* SBUOpenChannelListViewModel.swift */, - 968542872CC091CBDB1DFEFF /* SBUBaseChannelListViewModel.swift */, + 2817D981E3127812732F6CB8 /* SBUCreateChannelViewModel.swift */, + B055EE22F478835A00CA165F /* SBUCreateOpenChannelViewModel.swift */, ); - name = ChannelList; + name = CreateChannel; sourceTree = ""; }; - 80A099BFD37C0DE4DF24CDFC /* SelectUser */ = { + 8AD350B6C041530C62E95B1D /* UserList */ = { isa = PBXGroup; children = ( - 3838C6B01193471668E61D8B /* SBUBaseSelectUserViewModel.swift */, - 1B3A0E4AD5C54511813DE524 /* SBURegisterOperatorViewModel.swift */, - 95DEB336A87A42FCF5890B7E /* CreateChannel */, - 7552D9C76567F65E4BF30A6C /* SBUInviteUserViewModel.swift */, + 56400AFB607A5052FA0BD185 /* SBUUserListModule.swift */, + E65DF69581A267BC918152E4 /* SBUUserListModule.List.swift */, + 9F0ABCF8C4D0C9E738CCF03B /* SBUUserListModule.Header.swift */, ); - name = SelectUser; + name = UserList; sourceTree = ""; }; - 80C6739F7619486F8DD29A70 /* Channel */ = { + 8B1F571DA0683A9DE8D9BA66 /* MessageSearch */ = { isa = PBXGroup; children = ( - 9BFCBB7542976A243385A501 /* ViewModel */, - 10CDD472EA50295DE7C22A82 /* Reaction */, - 7F8B39348EFD70EFB2B92ECA /* SBUFeedNotificationChannelViewController.swift */, - 78A945A960656A6CFD41CF53 /* SBUBaseChannelViewController.swift */, - 6454AB3AAEED2333B82F1A41 /* MessageCell */, - B95E0F5151616CF497DBF371 /* SBUGroupChannelViewController.swift */, - 82EA88DF264F846D2F0C4E6E /* MessageInput */, - C1E38C46D035BB263C2A6E94 /* CellView */, - 5E970AEC147B2542EA4C8BE2 /* FileViewer */, - 5C7A7D00853030A5B8CC35E6 /* SBUBaseChannelViewController.Keyboard.swift */, - CA7E6AC2CE054363910B5A15 /* SBUChatNotificationChannelViewController.swift */, - 342A903AB3E1AE94E64CC1D3 /* NewMessageInfo */, - 89E97777A1F0FB6681778017 /* SBUOpenChannelViewController.swift */, - EC98C3C2ED66ABED4B194071 /* Header */, + B3BADBDCA1E4F804594E28EE /* SBUMessageSearchViewController.swift */, + C36392F51400E7D9FE6E70D6 /* Cell */, ); - name = Channel; + name = MessageSearch; sourceTree = ""; }; - 82EA88DF264F846D2F0C4E6E /* MessageInput */ = { + 8CAB3F68091676FA543E1542 /* ChannelList */ = { isa = PBXGroup; children = ( - 11CE17442D685AF2F0F3126F /* SBUMentionLimitGuideCell.swift */, - 52BE4003625B0B9497157D4F /* SBUSuggestedMentionList.swift */, - 811175E29B62CC51D08456AF /* SBUQuoteMessageInputView.swift */, - AC02E78F4CE2F80F9545487F /* SBUMessageInputMode.swift */, - 90334A2EBB8F8CE28C6E7D09 /* ViewParams */, - 054ACAF67417362427AC37B3 /* SBUMessageInputView.swift */, + 97CED0717BD5064CEC6ED1A6 /* ChannelCell */, + 42E9DD64B6C61EBD3C1C191A /* SBUBaseChannelListViewController.swift */, + 15894570D0B51B352FA0ED47 /* SBUGroupChannelListViewController.swift */, + 4B5894CD5513ACF49D2F050B /* SBUOpenChannelListViewController.swift */, ); - name = MessageInput; + name = ChannelList; sourceTree = ""; }; - 84C3E47A1E3B074B6CE18941 /* OpenChannel */ = { + 8D941421068AE4912308C232 /* OpenChannel */ = { isa = PBXGroup; children = ( - 9AB44AEDA04823E0D2638560 /* SBUOpenChannelModule.List.swift */, - 9A8BD43643A99212F382A97C /* SBUOpenChannelModule.Media.swift */, - 9823E7A36CC90FF0309F0659 /* SBUOpenChannelModule.Input.swift */, - 7F6A102674F66FFD92F6B5F1 /* SBUOpenChannelModule.Header.swift */, - E92EE181BCEBEFD719968688 /* SBUOpenChannelModule.swift */, + 20E97065B02C3EF653AA9BFE /* SBUOpenChannelModule.List.swift */, + B61CC39B41A1B18E23FB3490 /* SBUOpenChannelModule.Media.swift */, + 6441CB53C5B7F5B43595FDE0 /* SBUOpenChannelModule.Input.swift */, + 4A489494BAC41C18B23BA9F4 /* SBUOpenChannelModule.Header.swift */, + FF54C51E054CA6E5FBCE1B78 /* SBUOpenChannelModule.swift */, ); name = OpenChannel; sourceTree = ""; }; - 87BA31D1E2829B38ACB31463 /* Mention */ = { - isa = PBXGroup; - children = ( - FE513E7FC425144397895629 /* SBUMentionConfiguration.swift */, - 7271E5BEFB29E3BA89FD418E /* SBUUserMentionConfiguration.swift */, - ); - name = Mention; - sourceTree = ""; - }; - 8970D9EAC904185B2EFF8476 /* MemberList */ = { + 91A0F8DB2D160E6EE75117D7 /* Cell */ = { isa = PBXGroup; children = ( - D8BAB85BDF95D5E887C31E11 /* SBUMemberListViewController.Deprecated.swift */, + 3DCB3A13C5D2451070BFC2CF /* SBUChannelPushSettingCell.swift */, ); - name = MemberList; + name = Cell; sourceTree = ""; }; - 8EBAAB906E67DF6EFD62C0F1 /* Audio */ = { + 91FC92B6177D631A74F0A96A /* MessageThread */ = { isa = PBXGroup; children = ( + CB65A828D9D6AE25D6CE2E6B /* SBUMessageThreadViewModel.swift */, ); - name = Audio; + name = MessageThread; sourceTree = ""; }; - 90334A2EBB8F8CE28C6E7D09 /* ViewParams */ = { + 9259817E6CFE84BDED0EF654 /* RegisterOperator */ = { isa = PBXGroup; children = ( - 487265ECD21AB6C507428924 /* SBUQuoteMessageInputViewParams.swift */, + 8BF8C4DE66C1A5FD674C9E97 /* SBURegisterOperatorModule.List.swift */, + 43919D1985BB3B3B94AF129A /* SBURegisterOperatorModule.Header.swift */, + BA921895742D477C03285410 /* SBURegisterOperatorModule.swift */, ); - name = ViewParams; + name = RegisterOperator; sourceTree = ""; }; - 92A0D42C0976BAEDB613BBCE /* MessageSearch */ = { + 928D7C3E8DB4C6B70F1C5659 /* NotificationSettings */ = { isa = PBXGroup; children = ( - 035E8FEA91B95E5C54F5DD6C /* SBUMessageSearchViewController.swift */, - D197EE48A933450378CAC19B /* Cell */, + 91A0F8DB2D160E6EE75117D7 /* Cell */, + 11572D2FFDE52AB3029C09A0 /* SBUGroupChannelPushSettingsViewController.swift */, ); - name = MessageSearch; + name = NotificationSettings; sourceTree = ""; }; - 942F7A94FE53F80D6047A6C9 /* MessageSearch */ = { + 92922E25DCE7C1E688419D1A /* Constant */ = { isa = PBXGroup; children = ( - 31059518A200873E3E3C9C83 /* SBUMessageSearchViewModel.swift */, + E9E8064C9F6058CFCFB616F1 /* SBUStringSet.Deprecated.swift */, + 3649D3789E8EBDC7EF00C32B /* SBUDateFormatSet.swift */, + DEF370AEF4C4B288DAE946B4 /* SBUConstant.swift */, + 35555F2C406CCFE6E5612D58 /* SBUStringSet.swift */, ); - name = MessageSearch; + name = Constant; sourceTree = ""; }; - 957F0B0238C935067AD04BEA /* Protocol */ = { + 931AACCB2F5154288B8C779F /* ViewParams */ = { isa = PBXGroup; children = ( - FBA2BBF2E0C3423587AC1D2F /* CommonProtocols.swift */, + B7BF8C9833FC3A738CA354DA /* SBUQuoteMessageInputViewParams.swift */, ); - name = Protocol; + name = ViewParams; sourceTree = ""; }; - 95DEB336A87A42FCF5890B7E /* CreateChannel */ = { + 93D52CB912B4C3BBE386FD7A /* Replies */ = { isa = PBXGroup; children = ( - 4EC209279A5BAC175A23A021 /* SBUCreateChannelViewModel.swift */, - 952478D52785A1D36726D91F /* SBUCreateOpenChannelViewModel.swift */, + 3B6FDFD018ABA26C24E6E13E /* MessageView */, + 2DDA6AFFD571B95BB3593994 /* ViewParams */, ); - name = CreateChannel; + name = Replies; sourceTree = ""; }; - 960551C6DB957A5024A52FE5 /* MessageView */ = { + 95180DCE1CF8FA3A1E64DFD4 /* Reaction */ = { isa = PBXGroup; children = ( - F5F73F77DA3F3EC73CA4C76A /* QuotedFileCommonContentView.swift */, - F8730C302A20C6AB04C8E3CE /* SBUQuotedBaseMessageView.swift */, - C5651798BD13BA06F892E084 /* SBUThreadInfoView.swift */, - 81F79491911AF741525EAAEB /* QuotedFileImageContentView.swift */, - 675E801AD68AEDC93B404365 /* SBUQuotedFileMessageView.swift */, - 8B11A1A8D201454F7017BA22 /* SBUQuotedUserMessageView.swift */, + D7DE405EF1C38D347A64CEA3 /* SBUParentMessageInfoReactionView.swift */, + 76ADA5DE8B16DA0B5BDBC47F /* SBUReactionCollectionViewCell.swift */, + 37CFA16E96C106D0B5B8EF5F /* SBUReactionsViewController.swift */, + 1591F4DAA796ECB8FFB371F4 /* SBUMessageReactionView.swift */, + CE39F327CFF82B3D46407736 /* SBUReactionCollectionViewCell.xib */, + C9A38753708F3E9B80EC608E /* SBUEmojiListViewController.swift */, ); - name = MessageView; + name = Reaction; sourceTree = ""; }; - 977CDE52AB417FD04ABE509A /* Module */ = { + 96E804CCF4CA2D4E98FD8F62 /* View */ = { isa = PBXGroup; children = ( - C67258D10522C96E99B993D3 /* ChannelList */, - DA94594171E1F68F24EA4409 /* NotificationSettings */, - 15E47AD604DEF06347904C12 /* Channel */, - 229076C2FFF79DA22F86967E /* ChannelSettings */, - 1A8B4D9A13601FAF75A8B4D9 /* UserList */, - 2D8A2605B1CF33AC9B6D337E /* SBUModuleSet.swift */, - D0BF9854160D3986F582DBF7 /* MessageSearch */, - 34E91684E4C9BF3F852909C7 /* MessageThread */, - 17DCD4A7B489DC601CD010DD /* Moderations */, - 7E550FCF8CB8AE6866090DF1 /* SelectUser */, + 04EF831CD94698C15BCB0DB3 /* SBUCreateChannelTypeSelector.swift */, ); - name = Module; + name = View; sourceTree = ""; }; - 9799BB042E9369BE9D54BA1A /* Configuration */ = { + 97CED0717BD5064CEC6ED1A6 /* ChannelCell */ = { isa = PBXGroup; children = ( - 1B946A363B2D8BD259C7206A /* MessageCell */, - 443CCD39FCDFA75AC5A3C58C /* Replies */, - 1AD1A0635E34629A38F6BA07 /* SBUConfigManager.swift */, - 8D9CE8D4093A517E597EE409 /* SBUConfig.OpenChannel.swift */, - C9EB748CD2CBF02EF66BCF78 /* SBUConfig.swift */, - C18EB37EFF7B856F40057C97 /* VoiceMessage */, - 999F96211E71DCA11024EDC6 /* SBUConfig.Base.swift */, - 192BA41FECD28693B4BB3502 /* SBUConfig.GroupChannel.swift */, - 87BA31D1E2829B38ACB31463 /* Mention */, - 9212466A3D47B284C595BD5B /* SBUConfig.Common.swift */, - F40EA1102B93ACE2F0BEB2A0 /* SBUDashboardConfig.swift */, - 8DE3A9D6B2936BFBF52DF142 /* SBUConfig.CodingKeys.swift */, + 676FB7EC1C23C565E051E1F0 /* SBUOpenChannelCell.swift */, + 3A27E6F2F1A6C7B6304574C0 /* SBUGroupChannelCell.swift */, + 67C16A37DB1C3424785A1AB5 /* SBUBaseChannelCell.swift */, ); - name = Configuration; + name = ChannelCell; sourceTree = ""; }; - 9BFCBB7542976A243385A501 /* ViewModel */ = { - isa = PBXGroup; - children = ( - 8E1E99C07C642C6A9B1C5EB4 /* SBUUserMessageTextViewModel.swift */, - 225FED394B06A6ABF48CB72B /* SBUMessageWebViewModel.swift */, + 9A8E9240B9B1078F9E534261 /* Extension */ = { + isa = PBXGroup; + children = ( + 4D028BDC8A47AAA486573102 /* UIStackView.SBUIKit.swift */, + 495B34282ADF94161150ADA8 /* URL+SBUKit.swift */, + F8949EC63DBE4F860CC826FE /* UserMessage+SBUIKit.swift */, + 0BD9ACDB8B556D7561B46E27 /* Array+SBUIKit.swift */, + 2946BCAF1C1894A25233975A /* UIColor+SBUIKit.swift */, + 8C17CC283F96E29BFA570FC6 /* Formatter+SBUIKit.swift */, + A26197BB4AB3B53E2EC65CFD /* UIImage+SBUIKit.swift */, + 739CBC98741FA24F0A8C9FDD /* UIButton+SBUIKit.swift */, + 4EC7BC2D22C1870C4CFDA1BA /* UINavigationController+SBUIKit.swift */, + A8C25B6E2535EA0E3C12CDB7 /* ChatSDK */, + 7BFB229304E65D0A05E99F27 /* String+SBUIKit.swift */, + A8738E119A036EA61AF4DDB3 /* CGSize+SBUIKit.swift */, + 5A4CDAA5185849CF0B3DE396 /* Float+SBUKit.swift */, + 0E60C6455A8005E71FA6A071 /* Data+SBUIKit.swift */, + CCE8FA5B06FEF67773D75F46 /* UIViewController+SBUIKit.swift */, + 0364CA5ABCAC9FB36CFC481F /* Date+SBUIKit.swift */, + 75D12C0907D566904D9C519A /* StringProtocol+SBUIKit.swift */, + 95A2C12F22B584E4CAD12A5F /* UIApplication+SBUIKit.swift */, + 062312A9D9F2CD98F6F8161F /* UIView+SBUIKit.swift */, + D9ED69F8BD57B20BC0053033 /* Sequence+SBUIKit.swift */, + D585FB7AECB9FEF173CB309E /* UIImageView+SBUIKit.swift */, + ECC0DFA42EDC52B376BF15C4 /* NSObject+SBUIKit.swift */, + 8A362E90D3D52496D2C73FFB /* UITextField+SBUIKit.swift */, ); - name = ViewModel; + name = Extension; sourceTree = ""; }; 9C037DD3280432DB00059696 /* QuickStart */ = { @@ -1729,7 +1776,7 @@ 9C3EBE2128091D2A00B5366B /* NotificationService */, 9C777D58241B9022006FFE25 /* Products */, A3BC29C7BEE55436EBCAD26A /* Frameworks */, - A07312D0A1653737183C71C2 /* Sources */, + 9D8FD5CE316DD4B79DE5412B /* Sources */, ); sourceTree = ""; }; @@ -1742,41 +1789,58 @@ name = Products; sourceTree = ""; }; - A07312D0A1653737183C71C2 /* Sources */ = { - isa = PBXGroup; - children = ( - 61467B86FDAC47BF2BDDDC89 /* Configurations */, - B7FF747B1A5B931E3543A27F /* ViewModel */, - 9799BB042E9369BE9D54BA1A /* Configuration */, - F2610E612158F3E635241AA3 /* Extension */, - B08F5A2647313E63BDF20389 /* Util */, - 609AD383D4557FDD55CD9CF7 /* SendbirdUI.swift */, - 3A48B77FA954F439F9C6FAFA /* SBUAvailable.swift */, - 977CDE52AB417FD04ABE509A /* Module */, - A6A806B689AFAAD36AF6C455 /* Enums */, - 29398563921FCAA5499D84DB /* CustomSyntaxTest */, - 957F0B0238C935067AD04BEA /* Protocol */, - 203B5B149DE9F3E72BADF7BC /* Manager */, - F7F3719BBE1D2128C2FCBEE3 /* SBUGlobalCustomParams.swift */, - 0A5234E6B941823F1C53AED6 /* Common */, - 2638A499FE06C20E88816223 /* Constant */, - E7166EAE6D454AEAF10AED3F /* Theme */, - B74A31A9B29477B26ECC1E5C /* Model */, - 11B0BB2D86AE7AB85203BEA7 /* View */, - 9E9818AC665BDD14CD3CD183 /* SendbirdUIKit.h */, - 9064B855E3702BFD11947D0B /* SBUGlobals.swift */, - B8FD0D59592E9E55BD997499 /* Resource */, - 4DFFC0462556FCD5C9C737B1 /* Deprecated */, + 9D8FD5CE316DD4B79DE5412B /* Sources */ = { + isa = PBXGroup; + children = ( + A92E3A373EAEB0D4C18C7D80 /* Configurations */, + 873BAF7F11F64CAE69DDB5E6 /* ViewModel */, + 67299E7A01D42F67190E3EB8 /* Configuration */, + 9A8E9240B9B1078F9E534261 /* Extension */, + 30ACC2A837932AF99D111AB0 /* Util */, + BC322E550782BD7ABC5C5A58 /* SendbirdUI.swift */, + 3DFB1BA9C56B4B12C760E328 /* SBUAvailable.swift */, + 170EDCEEDDB8FA96F51B177D /* Module */, + A389EBC5B3F0CEB2E3D1E065 /* Enums */, + 3F2FFB91BC16C95660E02842 /* CustomSyntaxTest */, + E921E9DC5591EA1D9FA905DF /* Protocol */, + CFDC1C82B0E2F624AF71605D /* Manager */, + 75063E61A0E70ABA99BBACD0 /* SBUGlobalCustomParams.swift */, + 92922E25DCE7C1E688419D1A /* Constant */, + 1DCA9018F1BB6B4EE9BDB83C /* Theme */, + FBB92675355E9EFDB2FAF43E /* Model */, + 1E11120EEBA83903700945D1 /* View */, + BA6376444FCC1AFC6E0E3F5D /* SendbirdUIKit.h */, + 54070888A703766E9FF4932B /* SBUGlobals.swift */, + 1035513CCE61FEE722F90B08 /* Resource */, + 0B3809DDC96E89ABB17F1685 /* Deprecated */, ); name = Sources; sourceTree = ""; }; - A0D4D16D08FC3D282FB95C4A /* User */ = { + 9F2A25BAD954E1BE1B72EB55 /* Common */ = { isa = PBXGroup; children = ( - A34A78A8E359E64DF0023F69 /* SBUUserProfileView.swift */, + 64F6D10790714D6A14898D5F /* SBUCommonDelegate.swift */, ); - name = User; + name = Common; + sourceTree = ""; + }; + 9FFD45BDEDA7D5975697FDB8 /* UserList */ = { + isa = PBXGroup; + children = ( + 8D7573333E9706211B9F00A7 /* SBUBaseSelectUserViewController.Deprecated.swift */, + ); + name = UserList; + sourceTree = ""; + }; + A389EBC5B3F0CEB2E3D1E065 /* Enums */ = { + isa = PBXGroup; + children = ( + 36E6537E1EDCFF75988B1D90 /* VoiceMessageStatus.swift */, + F6C55B0F6760A44A02165168 /* SBUIconSetType.swift */, + B6843194E27B667E8E28E0BA /* SBUEnums.swift */, + ); + name = Enums; sourceTree = ""; }; A3BC29C7BEE55436EBCAD26A /* Frameworks */ = { @@ -1788,14 +1852,30 @@ name = Frameworks; sourceTree = ""; }; - A6A806B689AFAAD36AF6C455 /* Enums */ = { + A8C161AD191DDC88266D0831 /* MessageCellParams */ = { isa = PBXGroup; children = ( - 37B480E51573F8FB9A8D70E3 /* VoiceMessageStatus.swift */, - 8D3FBA15AFA6B0FC450BECFA /* SBUIconSetType.swift */, - 77DF532D984B6B08350E2732 /* SBUEnums.swift */, + B13DEFB28B027C14E5CBCE67 /* SBUBaseMessageCellParams.Deprecated.swift */, ); - name = Enums; + name = MessageCellParams; + sourceTree = ""; + }; + A8C25B6E2535EA0E3C12CDB7 /* ChatSDK */ = { + isa = PBXGroup; + children = ( + 8A2079341D51EAD21E092378 /* BaseMessage+SBUIKit.swift */, + ); + name = ChatSDK; + sourceTree = ""; + }; + A92E3A373EAEB0D4C18C7D80 /* Configurations */ = { + isa = PBXGroup; + children = ( + 54957F4DA19C8957661E8522 /* Debug.xcconfig */, + C4965DAD4F7AE10C891037CE /* Release.xcconfig */, + 10CBDC8B7F93CB027DDF6956 /* Base.xcconfig */, + ); + name = Configurations; sourceTree = ""; }; A93AE84E2A383CAA00AFFF9C /* Customize */ = { @@ -1978,447 +2058,389 @@ path = Channel; sourceTree = ""; }; - AAE4FBC203B60D0E84A6238E /* NotificationSettings */ = { + A9A417903E743623C21853B7 /* SelectUser */ = { isa = PBXGroup; children = ( - F600DA6889F613ABC24585CC /* SBUGroupChannelPushSettingsViewModel.swift */, + 1ADE52523AC0CA4484EE6A1B /* SBUBaseSelectUserViewModel.swift */, + 4A3FACA4F09C6E96C666BEFA /* SBURegisterOperatorViewModel.swift */, + 8A3A4B6CA4530FDA128F308A /* CreateChannel */, + 37F02E4EAB3D2FF131E20B40 /* SBUInviteUserViewModel.swift */, ); - name = NotificationSettings; + name = SelectUser; sourceTree = ""; }; - AD4D03E9D0FB5CAB065CCA29 /* Moderations */ = { + AA4C8A92E858E88A24487D32 /* ViewParams */ = { isa = PBXGroup; children = ( - BD182802F8956D312B983165 /* SBUModerationsViewModel.Deprecated.swift */, - 38CF300FD04B96579B0C1F06 /* SBUModerationsViewController.Deprecated.swift */, + 9410DA61F900E011CC767F69 /* SBUCardListViewParams.swift */, + 29FE4DC6E08161FA775109F2 /* SBUCardViewParams.swift */, ); - name = Moderations; + name = ViewParams; sourceTree = ""; }; - ADFE7CF3C6665E13DF1B0F02 /* OpenChannel */ = { + AFD2E89B679EDFD99D971E67 /* NotificationSettings */ = { isa = PBXGroup; children = ( - 9471473B5B7A6E9DBDC8E05F /* SBUOpenChannelSettingsModule.List.swift */, - 1227FEAC6FFDA576E56143B4 /* SBUOpenChannelSettingsModule.swift */, - E0A49C3FE86E811FF8445624 /* SBUOpenChannelSettingsModule.Header.swift */, + 569EED9F8138E48EE1FB3657 /* SBUGroupChannelPushSettingsModule.List.swift */, + 200F98641EB0E321D04492BE /* SBUGroupChannelPushSettingsModule.swift */, + B51FAA8B8207EC8FCD83152F /* SBUGroupChannelPushSettingsModule.Header.swift */, ); - name = OpenChannel; + name = NotificationSettings; sourceTree = ""; }; - B08F5A2647313E63BDF20389 /* Util */ = { + B6B1F687B4DDD60A403C00CC /* Channel */ = { isa = PBXGroup; children = ( - D4D6A26277621792FB7BF434 /* SBUPropertyWrapper.swift */, - C29D8E45823A37E06A9E98DA /* SBUUtils.swift */, - 565A6A767F38D2AF55DB6BE9 /* SBULogger.swift */, - C8D4FF8041A0A03641D2B15B /* SBUMentionManager.swift */, - B40B29DC9BEE6CABF042A760 /* SBUDebouncer.swift */, + 066417A55F5D07207D31AC11 /* GroupChannel */, + 6894D7496318F18F4F5D3B05 /* NotificationChannel */, + DEFE037CFB2F5FF5EBBEAB6D /* SBUBaseChannelModule.Input.swift */, + 4F4EA21B4CE7B9E0E5EBF7A8 /* SBUBaseChannelModule.swift */, + DDD6216D37C4D9FCF994B249 /* SBUBaseChannelModule.Header.swift */, + 8D941421068AE4912308C232 /* OpenChannel */, + 35DD937013067D14126BD0F9 /* SBUBaseChannelModule.List.swift */, ); - name = Util; + name = Channel; sourceTree = ""; }; - B28225D9B1A2F11BF5291D8D /* OpenChannel */ = { + B800FE679BB0776FECB1E464 /* GroupChannel */ = { isa = PBXGroup; children = ( - 7E66C47995F9CA97AD3BE514 /* SBUOpenChannelFileMessageCell.swift */, - 621C767B4E4974F6CF8FFC1C /* SBUOpenChannelAdminMessageCell.swift */, - B52D5ABC0B9BF678F600D3E2 /* SBUOpenChannelContentBaseMessageCell.swift */, - A608337D7185D3739BDD2E16 /* SBUOpenChannelUserMessageCell.swift */, - EBC3A0E05DB738BE7255C9A1 /* SBUOpenChannelUnknownMessageCell.swift */, - A5423525CFD3E45A7758D21F /* SBUOpenChannelBaseMessageCell.swift */, + 352A9863F61A2790C87F88B5 /* SBUGroupChannelSettingsModule.swift */, + AF1B9B893196BD000B0374EB /* SBUGroupChannelSettingsModule.Header.swift */, + 17891AFBA0475E8476D8CD24 /* SBUGroupChannelSettingsModule.List.swift */, ); - name = OpenChannel; + name = GroupChannel; sourceTree = ""; }; - B4054D838A46096EB1361027 /* OpenChannel */ = { + B9410B992281BD3487FECE69 /* MessageThread */ = { isa = PBXGroup; children = ( + 438089065331BC0C313CE422 /* SBUMessageThreadModule.List.swift */, + 830455C9D718DDAB13F02345 /* SBUMessageThreadModule.swift */, + 205D0369C7A73E519D8FC874 /* SBUMessageThreadModule.Input.swift */, + 80CA5C17BDC94350D7BD209B /* SBUMessageThreadModule.Header.swift */, ); - name = OpenChannel; + name = MessageThread; sourceTree = ""; }; - B492A0A276C16128B9AC550D /* MessageThread */ = { + BA82DCE457B8C7E623CE4DC6 /* Replies */ = { isa = PBXGroup; children = ( - 50C104A47B01D17271BB9FA7 /* SBUMessageThreadViewController.swift */, - 9C3AAC4C6ADE19BBEC6B7F2A /* SBUMessageThreadTitleView.swift */, - ECCB5E0BE740839D9069F7F9 /* SBUParentMessageInfoView.swift */, + D6B64E11A6EC2642D288EE03 /* SBUReplyConfiguration.swift */, ); - name = MessageThread; + name = Replies; sourceTree = ""; }; - B4965B1C250C803BB90A9B5D /* GroupChannel */ = { + BC2D3F05C89CB5D18DB26AF8 /* Feed */ = { isa = PBXGroup; children = ( - C79E59683CD0F4CD44CEA213 /* SBUGroupChannelListModule.List.swift */, - F208FB4E87F4F52277A869AC /* SBUGroupChannelListModule.swift */, - DE0539E577070B022D52321F /* SBUGroupChannelListModule.Header.swift */, + 2361CD6262B91E929F1B7209 /* SBUFeedNotificationChannelModule.Header.swift */, + 5537CDCC1CF432FFDC664CF0 /* SBUFeedNotificationChannelModule.List.swift */, + 80F1D1310DCC7793D1E5A4C9 /* SBUFeedNotificationChannelModule.swift */, ); - name = GroupChannel; + name = Feed; sourceTree = ""; }; - B6F39D8624F82423FDD1E828 /* NotificationChannel */ = { + BC51BC3C69B06668C09E5C8A /* FileViewer */ = { isa = PBXGroup; children = ( - 0A266CC238ED86145A6C668B /* SBUNotificationCell.swift */, - 3F5CC65D0DA87A4C82E0596B /* SBUFeedNotificationCell.swift */, - 61B438D45AC7E74129D86CC7 /* SBUChatNotificationCell.swift */, + E8B60F5B32A6F17AB90B9332 /* SBUFileViewController.swift */, ); - name = NotificationChannel; + name = FileViewer; sourceTree = ""; }; - B74A31A9B29477B26ECC1E5C /* Model */ = { + C0CFC7679181D2E9BA96AE8F /* Replies */ = { isa = PBXGroup; children = ( - 2E98154B767F9A7624CEB674 /* SBUMention.swift */, - F172024CB74D1161310185AE /* SBUMessageCache.swift */, - 8A5C7231AE05F022FA044D2B /* SBUUser.swift */, - 781830138EF31F2B4A5043B6 /* SBUVoiceFileInfo.swift */, - F3415509B748ED4796AF8A01 /* SBUHighlightMessageInfo.swift */, - 0A80E9629AEACC35FF3A6C34 /* NotificationDataMock */, + 284F7DC346769776D8EE30DE /* SBUQuotedBaseMessageViewParams.Deprecated.swift */, ); - name = Model; + name = Replies; sourceTree = ""; }; - B7FF747B1A5B931E3543A27F /* ViewModel */ = { + C2AC539D1E1947B7B8F1BEFF /* NotificationChannel */ = { isa = PBXGroup; children = ( - 62A319714EEC647A0848BB65 /* SBUViewModelDelegate.swift */, - 7EA295D92A27BCA04E6D372A /* ChannelList */, - AAE4FBC203B60D0E84A6238E /* NotificationSettings */, - E0B47E9BC444EF1397EF6FE8 /* Channel */, - 1DAB1D4788A19BE329C4F23A /* ChannelSettings */, - 6BDCF9D604A84641EB7D11E7 /* Common */, - F2BA544270ADC8CD5F8FBB27 /* UserList */, - 942F7A94FE53F80D6047A6C9 /* MessageSearch */, - 5A964BDF8A437DC6971E0CE0 /* MessageThread */, - 0997E424B49DA8BE93D9D90A /* Moderations */, - 80A099BFD37C0DE4DF24CDFC /* SelectUser */, + 29D00CF158D63A4A17CE3A65 /* SBUNotificationCell.swift */, + 16817960D797451C3A427709 /* SBUFeedNotificationCell.swift */, + FC107E0A18147CE683EC91E9 /* SBUChatNotificationCell.swift */, ); - name = ViewModel; + name = NotificationChannel; sourceTree = ""; }; - B8FD0D59592E9E55BD997499 /* Resource */ = { + C36392F51400E7D9FE6E70D6 /* Cell */ = { isa = PBXGroup; children = ( - CE1AEC3AFF0FC94611681667 /* Assets.xcassets */, + CCC7DDF0A66F0FFEEF82ED95 /* SBUMessageSearchResultCell.swift */, ); - name = Resource; + name = Cell; sourceTree = ""; }; - BB03DA01B46FDC19ECD1BD8E /* Chat */ = { + C518D9006E2F5A07219A2DC0 /* View */ = { isa = PBXGroup; children = ( - AAECD08778DB45A5C7236BD7 /* SBUChatNotificationChannelModule.swift */, - ED724ED3BF021A9EDAC9724D /* SBUChatNotificationChannelModule.List.swift */, - C7787B27E7166DC56485A7ED /* SBUChatNotificationChannelModule.Header.swift */, + 886CD695D193D2A90F58239A /* SBUChannelSettingsChannelInfoView.swift */, ); - name = Chat; + name = View; sourceTree = ""; }; - C18EB37EFF7B856F40057C97 /* VoiceMessage */ = { + C6BFEEDDA4F93B9C3F9B8F16 /* ViewModel */ = { isa = PBXGroup; children = ( - 39BEE272D4DAA32D38E586B2 /* SBUVoiceMessageConfiguration.swift */, + 525830066E3E7E9F709999CC /* SBUUserMessageTextViewModel.swift */, + 3A78DF0EE384669D517F1EFF /* SBUMessageWebViewModel.swift */, ); - name = VoiceMessage; + name = ViewModel; sourceTree = ""; }; - C1E38C46D035BB263C2A6E94 /* CellView */ = { + C816B157FADE8A1BE7DED4B3 /* User */ = { isa = PBXGroup; children = ( - B758EA77426C5CF5D9199193 /* SBUMessageStateView.swift */, - 50CBF397951DFE5EEF62C30C /* SBUMessageProfileView.swift */, - 2735235C943965230632AE28 /* SBUUserMessageTextView.swift */, - 4EED70D90E0E015CAAE43F6D /* SBUUserNameView.swift */, - 80DAFB0E7E9BF59D6845304B /* SBUMessageWebView.swift */, - 3E1B4E9E1CCBFE985E7B200C /* SBUMessageDateView.swift */, - 11D2ADC805854D1A268AFF99 /* SBULinkClickableTextView.swift */, - 029D53831549FA6E8482C658 /* SBUOpenChannelMessageWebView.swift */, - 0911AF5747D1FA7A740E5492 /* SBUSelectableStackView.swift */, - A121C887E4DA50B514B0B9E3 /* SBUNotificationTimelineView.swift */, + 7F53DA57F10C8AB81E01CE69 /* SBUUserProfileView.swift */, ); - name = CellView; + name = User; sourceTree = ""; }; - C2E9E52D1AB2CB1AF0B4B0D5 /* View */ = { + C9D76DD6128781F7A86A0A92 /* VoiceNote */ = { isa = PBXGroup; children = ( - 5D4C44F792B1F604F7E9DE51 /* SBUCreateChannelTypeSelector.swift */, + F01E1B2674C8B83CCC103B21 /* SBUVoiceMessageInputView.swift */, ); - name = View; + name = VoiceNote; sourceTree = ""; }; - C3AFBD8F766B72F7354CB2D9 /* VoiceNote */ = { + CA71F7D6302CF6631E69452E /* Life cycles */ = { isa = PBXGroup; children = ( - 31777FAB460FAA0599216989 /* SBUVoiceMessageInputView.swift */, + 7C31E1EFE659E5D09CA47308 /* SBUTableViewCell.swift */, + 2C69F47B1886465E868AE8B0 /* SBUQuoteMessageInputViewProtocol.swift */, + B0242A04C68C344BB6708B70 /* SBUMessageCellProtocol.swift */, + 9782FEF03E2E566FD885B135 /* SBUViewLifeCycle.swift */, + 2B67E99871234741111585AB /* SBUQuotedMessageViewProtocol.swift */, + 8ABD5E2AED8CE130A331BA62 /* SBUView.swift */, ); - name = VoiceNote; + name = "Life cycles"; sourceTree = ""; }; - C67258D10522C96E99B993D3 /* ChannelList */ = { + CE110CA8A7848C72FF3CC1CE /* ChannelList */ = { isa = PBXGroup; children = ( - 6D461B2DCB8A1BEDFBC8AC69 /* SBUBaseChannelListModule.swift */, - B4965B1C250C803BB90A9B5D /* GroupChannel */, - 8E548C06CCD549424CEC34F2 /* SBUBaseChannelListModule.Header.swift */, - 5F3EECFB531A965DAB4B19A2 /* SBUBaseChannelListModule.List.swift */, - 5166073C00EB97E07D3E80D2 /* OpenChannel */, + B3EA868CDC4C8719B9149167 /* SBUBaseChannelListModule.swift */, + 8526A7DB7F03706B763F80CD /* GroupChannel */, + A256D76EF1C0017F91AD806D /* SBUBaseChannelListModule.Header.swift */, + B79CEFAEACC1109FD77E340F /* SBUBaseChannelListModule.List.swift */, + D6186C836BEF418D2715C4A5 /* OpenChannel */, ); name = ChannelList; sourceTree = ""; }; - C6A0F1D8F3D1444428E51993 /* PhotoLibrary */ = { + CFDC1C82B0E2F624AF71605D /* Manager */ = { isa = PBXGroup; children = ( - 05058743F65FD4376B7E87FB /* SBUPhotoAccess.swift */, - 95981CA2FE730F675313EF5B /* SBUPhotoCollectionViewCell.swift */, - 357A0961A979A80E184DA2DC /* SBUSelectablePhotoViewController.swift */, + B8FEF5628A48F6F103CD0B78 /* SBUEmojiManager.swift */, + E1B577FEF67968F5C29438E8 /* CacheManager */, + 614BB93926D5D70FC0E58976 /* SBUVoicePlayer.swift */, + 96A6DE7DF22D2F20741DAB17 /* SBUNotificationChannelManager.swift */, + 967EBB2B2AE20C3A6F96C4A5 /* SBUPendingMessageManager.swift */, + 2534EC903E25A70196766A5B /* SBUDownloadManager.swift */, + 7EE49605A85DA6FDED8BEC26 /* SBUVoiceRecorder.swift */, + 143457A990EED0E3D1728475 /* SBUPermissionManager.swift */, + 7AA06BE8E10B6BD3B4454F74 /* SBUToastManager.swift */, ); - name = PhotoLibrary; + name = Manager; sourceTree = ""; }; - D0695BEB904B51E1DB15FCEC /* SelectUser */ = { + D22095766D9293341388966C /* ChannelSettings */ = { isa = PBXGroup; children = ( - B78CE33A30FAC09232C89621 /* SBURegisterOperatorViewController.swift */, - 37CF1AD3DE002B76FB7B4950 /* SBUBaseSelectUserViewController.swift */, - 1D83D65E6CB8FDA0EC81E8FA /* SBUInviteUserViewController.swift */, - F17884F852637172DFDBCBA2 /* CreateChannel */, + A6D562DAC2263B035ABCC87F /* SBUBaseChannelSettingsModule.Header.swift */, + 8A281B4E19977F196654AAFC /* SBUBaseChannelSettingsModule.List.swift */, + 512B791476E28906E807EFE2 /* ChannelSettingItem */, + B800FE679BB0776FECB1E464 /* GroupChannel */, + 3F3BF87AC6D4B061EFF48654 /* SBUBaseChannelSettingsModule.swift */, + 237FF5A76CDEBFCD80499D5B /* OpenChannel */, ); - name = SelectUser; + name = ChannelSettings; sourceTree = ""; }; - D0BF9854160D3986F582DBF7 /* MessageSearch */ = { + D27F0041B25EED77B98E2FF5 /* UserList */ = { isa = PBXGroup; children = ( - 2AAA62FFF785C4E155B0E93A /* SBUMessageSearchModule.Header.swift */, - 6F6B34837ECDC59E6C211931 /* SBUMessageSearchModule.List.swift */, - 851B9B6F54F5C83ADC47FE15 /* SBUMessageSearchModule.swift */, + 059644F1D75A802598A9BDD8 /* SBUUserListViewController.swift */, ); - name = MessageSearch; + name = UserList; sourceTree = ""; }; - D0D240AFC4916FA614372E45 /* NotificationChannel */ = { + D365191D5B76D26299C11D24 /* Channel */ = { isa = PBXGroup; children = ( - BB03DA01B46FDC19ECD1BD8E /* Chat */, - 5D1D58367A04DE1F41566FC3 /* Feed */, + BE92C9E26D94FD5856A0C3CD /* SBUFeedNotificationChannelViewModel.swift */, + 82E581E6B59E82A41AB918CE /* SBUOpenChannelViewModel.swift */, + 9A17C41AA0B127D231588700 /* SBUBaseChannelViewModel.swift */, + 2ED7DEADCFAF2881A348FAC5 /* SBUChatNotificationChannelViewModel.swift */, + 7816F92501F6FF0E58DE1648 /* SBUGroupChannelViewModel.swift */, ); - name = NotificationChannel; - sourceTree = ""; - }; - D177A24919EA4280AE5FF648 /* Common */ = { - isa = PBXGroup; - children = ( - C1D7EEAE7EB8554E6F7CC264 /* SBUStackView.swift */, - F67994C0401225859A40F2F0 /* SBUAnimation.swift */, - B210056B6B1EE32EFD674B69 /* SBUEmptyView.swift */, - 377E6909811CC367981B0E8C /* SBUCoverImageView.swift */, - C6A0F1D8F3D1444428E51993 /* PhotoLibrary */, - 7C51929570EE2668A2B29D86 /* SBUCommonItem.swift */, - 2CA0A271F4390F304577E0B6 /* SBULayoutableButton.swift */, - A0D4D16D08FC3D282FB95C4A /* User */, - AD03322C5147411C0251EBA6 /* SBUNavigationTitleView.swift */, - 9FC0679799A9487D098BEE2E /* SBUNotificationNavigationTitleView.swift */, - D9C06AE8FDCECD30BAE3867C /* SBUBarButtonItem.swift */, - B4F04043A876059D24139F3B /* SBUActionSheet.swift */, - 31550ECA90C91A7794D1530E /* SBUNotificationEmptyView.swift */, - 6F3F525F474074DC040A812E /* SBUAlertView.swift */, - 7280982C8B0E636F963873E9 /* Menu */, - 70FF5914C321DA41EC891ECC /* SBUUnderLineTextField.swift */, - 330E6C891BD78CCFE29B4797 /* UserCell */, - 4DB0238E2EA4814143CA4CB9 /* SBUTemplateLabel.swift */, - 613670ACFECCD688E08DF403 /* SBUMarginView.swift */, - DF9B38CF91C898EDE89C0F82 /* SBUCommonViewControllerSet.swift */, - C922BA5D005F72781C50318A /* SBULoading.swift */, - 5B90D692651580FC135F2078 /* SBUCollectionViewFlowLayout.swift */, - ); - name = Common; + name = Channel; sourceTree = ""; }; - D197EE48A933450378CAC19B /* Cell */ = { + D6186C836BEF418D2715C4A5 /* OpenChannel */ = { isa = PBXGroup; children = ( - 8A848ADDAD718074DB17CCBF /* SBUMessageSearchResultCell.swift */, + 5F1207EA4BDF2AC9D83D5361 /* SBUOpenChannelListModule.swift */, + C318E1D97FD014498F1904C4 /* SBUOpenChannelListModule.List.swift */, + EC78BFD88CF1649749386DC3 /* SBUOpenChannelListModule.Header.swift */, ); - name = Cell; + name = OpenChannel; sourceTree = ""; }; - D22CA36C0CB442C189FE0297 /* MessageCellParams */ = { + DC26D0A2DE79566497D106DB /* SelectUser */ = { isa = PBXGroup; children = ( - 9B94C0B246A1E21F447B2430 /* SBUBaseMessageCellParams.Deprecated.swift */, + 9259817E6CFE84BDED0EF654 /* RegisterOperator */, + 5CABD3991EFB4C0E3AF574FA /* InviteUser */, + 4E012D233A4916004E16FD46 /* SBUBaseSelectUserModule.Header.swift */, + 70868C74358BC367A84D700B /* SBUBaseSelectUserModule.swift */, + 67DEBB240A88EECAFE5567FC /* CreateChannel */, + 68C1908059940FF0C5E817FB /* SBUBaseSelectUserModule.List.swift */, ); - name = MessageCellParams; + name = SelectUser; sourceTree = ""; }; - D6B74B5A10DA39A07B54151A /* RegisterOperator */ = { + E1B577FEF67968F5C29438E8 /* CacheManager */ = { isa = PBXGroup; children = ( - 8DB2EEA3B248BF1043AAF2A2 /* SBURegisterOperatorModule.List.swift */, - A281C6B4D10CD53B6A394C09 /* SBURegisterOperatorModule.Header.swift */, - 1163BFF7A52C73C8A3AE5F09 /* SBURegisterOperatorModule.swift */, + F90E3CB818E62FB7E4E0EC75 /* SBUCacheManager.Config.swift */, + 39AC484A4A814FC32054CB20 /* SBUCacheManager.File.swift */, + E3CEAD49823EF75C7268A6AA /* SBUCacheManager.Template.swift */, + 3E86D6B400BB6E8BD5722710 /* SBUCacheManager.Image.swift */, + B5F3ACE63ED31B56A3CF59B8 /* SBUCacheManager.swift */, + 494A6A866E985C8D4D7D808A /* SBUCacheManager.NotificationSetting.swift */, ); - name = RegisterOperator; + name = CacheManager; sourceTree = ""; }; - DA94594171E1F68F24EA4409 /* NotificationSettings */ = { + E222721B877523AB9A821AE2 /* MessageCell */ = { isa = PBXGroup; children = ( - 7A1E5B618E676836BB2C165C /* SBUGroupChannelPushSettingsModule.List.swift */, - A935AADB22314DDEC2CC761C /* SBUGroupChannelPushSettingsModule.swift */, - F5B11F963B9453E4B7713C05 /* SBUGroupChannelPushSettingsModule.Header.swift */, + 5F24BEE9F8B79663B8747595 /* SBUMessageCellConfiguration.swift */, ); - name = NotificationSettings; + name = MessageCell; sourceTree = ""; }; - DB28B0A509C0E636C325FF71 /* Replies */ = { + E3AADCB28A504B1518F7F6FA /* Mention */ = { isa = PBXGroup; children = ( - 960551C6DB957A5024A52FE5 /* MessageView */, - F419A1EFA0DB3F6B75C30570 /* ViewParams */, + 32C74D1F14FF4233F090D2C1 /* SBUMentionConfiguration.swift */, + C3F221D338B7FFFBF845E5F0 /* SBUUserMentionConfiguration.swift */, ); - name = Replies; + name = Mention; sourceTree = ""; }; - E0B47E9BC444EF1397EF6FE8 /* Channel */ = { + E754F8CAD896211E31873142 /* PhotoLibrary */ = { isa = PBXGroup; children = ( - 43969DA55E0A647D21D23BBA /* SBUFeedNotificationChannelViewModel.swift */, - 0291A1A364BEE942B4BA5CF0 /* SBUOpenChannelViewModel.swift */, - 5CACF979FBE591D818219313 /* SBUBaseChannelViewModel.swift */, - 00F661E595066B39C1C6128B /* SBUChatNotificationChannelViewModel.swift */, - C447D3DEE9C6EC06AF37E9BA /* SBUGroupChannelViewModel.swift */, + 4171AA7EE334F21E87D848D2 /* SBUPhotoAccess.swift */, + 43ED6D0121771F1230E5A5B7 /* SBUPhotoCollectionViewCell.swift */, + 47BA4561098AD5C86F00EEA4 /* SBUSelectablePhotoViewController.swift */, ); - name = Channel; + name = PhotoLibrary; sourceTree = ""; }; - E0E1E403D841AB45A2C3010D /* Moderations */ = { + E921E9DC5591EA1D9FA905DF /* Protocol */ = { isa = PBXGroup; children = ( - 44706646DA26FEB88A7CDA09 /* SBUModerationsViewController.swift */, + 878B201A67E39BF122C1A9BD /* CommonProtocols.swift */, ); - name = Moderations; + name = Protocol; sourceTree = ""; }; - E62A78D95D7E5FDE2F8D6514 /* MessageCell */ = { + EBAE1F1E92C2B617EEA70AE4 /* Menu */ = { isa = PBXGroup; children = ( - D22CA36C0CB442C189FE0297 /* MessageCellParams */, - 3F41704AF882DBACAC3DE753 /* Replies */, - 187C8310ECF1E1FF7DB1AC2F /* SBUContentBaseMessageCell.Deprecated.swift */, + 9D4AA0558E64825B0F17F574 /* SBUMenuCell.xib */, + 3130C6885B6F03030307296C /* SBUMenuSheetViewController.swift */, + 62BAC5FB8AF1858429E2D1A9 /* SBUMenuCell.swift */, + 4C71EE0DCA4B5108CED79395 /* SBUMenuView.swift */, + D9125E4D83EAE7DC6D533507 /* SBUBottomSheetController.swift */, ); - name = MessageCell; + name = Menu; sourceTree = ""; }; - E7166EAE6D454AEAF10AED3F /* Theme */ = { + ECBA915C532E802956658F10 /* MessageSearch */ = { isa = PBXGroup; children = ( - E7882BFC96E6EB23C2708896 /* SBUIconSet.swift */, - 6D41D8C41E15F268991B400E /* SBUColorSet.swift */, - 753B1D0857F6A810765645D3 /* SBUTheme+Type.swift */, - 2F1070DDD483158A02A53D3A /* SBUFontSet.swift */, - A5C41544D4A7B3F7784E1D7F /* SBUTheme.swift */, + 0AC43A90FFF9881B02D92292 /* SBUMessageSearchModule.Header.swift */, + C52C2151E18EFF9D2EA43BC9 /* SBUMessageSearchModule.List.swift */, + 368CE9BFF196247B5D1E3AD8 /* SBUMessageSearchModule.swift */, ); - name = Theme; + name = MessageSearch; sourceTree = ""; }; - E8CF7E7CFBC332A60A953335 /* CreateChannel */ = { + F4644DFFBA98BC78D9BB105B /* MessageSearch */ = { isa = PBXGroup; children = ( - 425B4764DF5B9E81D707AA21 /* SBUCreateChannelViewController.Deprecated.swift */, + 1B229A38B990D6B5BBBD3501 /* SBUMessageSearchViewModel.swift */, ); - name = CreateChannel; + name = MessageSearch; sourceTree = ""; }; - EC98C3C2ED66ABED4B194071 /* Header */ = { + F4E2371313F2E104F290466F /* NotificationSettings */ = { isa = PBXGroup; children = ( - C22F775EDC16A612E2DE772C /* SBUChannelInfoHeaderView.swift */, - FF9C6FC326CC02F1E2C5D462 /* SBUChannelTitleView.swift */, + 6AA0BFCF8457F64FDB576934 /* SBUGroupChannelPushSettingsViewModel.swift */, ); - name = Header; + name = NotificationSettings; sourceTree = ""; }; - EFCB011B83E298C2CE50E7BA /* Cell */ = { + F517C63AEFE129A98E028B3E /* ChannelSettings */ = { isa = PBXGroup; children = ( - D9E4BC1A6D7BF534BD6FEF63 /* SBUOpenChannelSettingCell.swift */, - F20FF26D5AD8C6E1583C2E56 /* SBUBaseChannelSettingCell.swift */, - 1B2D7A7DDF74835A7BB1094A /* SBUModerationCell.swift */, - 4ABBE6988A171FF288AACCAF /* SBUGroupChannelSettingCell.swift */, + 91BDECF3751DFD038B66CB5F /* SBUBaseChannelSettingsViewController.swift */, + 99128649F63B6F02C7BB7D3E /* SBUOpenChannelSettingsViewController.swift */, + 8A3A2B29C1608F460223ADE5 /* Cell */, + C518D9006E2F5A07219A2DC0 /* View */, + F4423B75C435CE393B7A3719 /* SBUGroupChannelSettingsViewController.swift */, ); - name = Cell; + name = ChannelSettings; sourceTree = ""; }; - F17884F852637172DFDBCBA2 /* CreateChannel */ = { + FA8186399CAF27C2996B2C5D /* ChannelList */ = { isa = PBXGroup; children = ( - C2E9E52D1AB2CB1AF0B4B0D5 /* View */, - B6C4C7A650C4C84BC509FA4F /* SBUCreateChannelViewController.swift */, - 6C2FD0115E4B1C3F9B2C6752 /* SBUCreateOpenChannelViewController.swift */, - ); - name = CreateChannel; - sourceTree = ""; - }; - F2610E612158F3E635241AA3 /* Extension */ = { - isa = PBXGroup; - children = ( - 0BDCEF729E67B076030182FF /* UIStackView.SBUIKit.swift */, - EBC6E2A199C600E1DFF279F1 /* URL+SBUKit.swift */, - 057756A478BF355F4C00DAB2 /* Array+SBUIKit.swift */, - 112861C0A1E3436555A2B95C /* UIColor+SBUIKit.swift */, - EB86164252E98E2983E75F37 /* Formatter+SBUIKit.swift */, - B81F436DE5CD010E6B8A7358 /* UIImage+SBUIKit.swift */, - F1EC28F24DF54CE742090E2F /* UIButton+SBUIKit.swift */, - 9B81D08012A06BC2BBB3EB3E /* UINavigationController+SBUIKit.swift */, - 4F90C0B9B7B0133AA160C837 /* ChatSDK */, - 98F3AA9693D851ECCC5BB64A /* String+SBUIKit.swift */, - C5045CE68870FB6D5C3D5A93 /* CGSize+SBUIKit.swift */, - EB42B29FC32D55BE76D42610 /* Float+SBUKit.swift */, - B8830A152490D77903A80228 /* Data+SBUIKit.swift */, - C0A29C1C9DE43ACB9DC04967 /* UIViewController+SBUIKit.swift */, - 67582C9620E1185355B189D3 /* Date+SBUIKit.swift */, - F3F33EE259D61404759642AB /* StringProtocol+SBUIKit.swift */, - 82B916F3E709BE44FF1C817F /* UIApplication+SBUIKit.swift */, - 8F8446A6307248E4512171F6 /* UIView+SBUIKit.swift */, - A252659AFE15AF12098C7D64 /* Sequence+SBUIKit.swift */, - A115272D074CE4E3DD5C829F /* UIImageView+SBUIKit.swift */, - 4CB24B4E4F94EFF4F3A78C33 /* NSObject+SBUIKit.swift */, - 3D51474B45780CEA21A5013E /* UITextField+SBUIKit.swift */, + 8E55A9D45478E16B27C31F0B /* SBUChannelListViewController.Deprecated.swift */, ); - name = Extension; + name = ChannelList; sourceTree = ""; }; - F2BA544270ADC8CD5F8FBB27 /* UserList */ = { + FB64AF266BA464286732DA35 /* Header */ = { isa = PBXGroup; children = ( - C547A841C0C271E3CD1DC85D /* SBUUserListViewModel.swift */, + BE2D08C19AF668E9F2DB696A /* SBUChannelInfoHeaderView.swift */, + BD4F25300A0550B56CB31D94 /* SBUChannelTitleView.swift */, ); - name = UserList; + name = Header; sourceTree = ""; }; - F419A1EFA0DB3F6B75C30570 /* ViewParams */ = { + FBB92675355E9EFDB2FAF43E /* Model */ = { isa = PBXGroup; children = ( - C3D84F3979F1B12BE5834091 /* SBUQuotedBaseMessageViewParams.swift */, + B24F1F99A1E1A54F02289F24 /* SBUMention.swift */, + 9DDA15F1F080F4D79113423B /* SBUMessageCache.swift */, + 42B5CF5B20F6251DC7AD977B /* SBUCardListData.swift */, + 46CBE3AE048714D2802A7BD3 /* SBUUser.swift */, + 290A3B248A5F7DCC58944BA4 /* SBUVoiceFileInfo.swift */, + 5CF9D0C6E1A03EC3B1A275CC /* SBUHighlightMessageInfo.swift */, + D2FA38DBE0FC75FDB570EF67 /* SBUQuickReplyOptions.swift */, ); - name = ViewParams; + name = Model; sourceTree = ""; }; - F46AA396D9BE934B43FD1174 /* CreateChannel */ = { + FCDEF86ABC9EFBB76CB301E3 /* Carousel */ = { isa = PBXGroup; children = ( - 1C47BB18B53560739C61A709 /* SBUCreateOpenChannelModule.ProfileInput.swift */, - 4A2C66B16A6C3E9FA473932D /* SBUCreateChannelModule.swift */, - 2376FC612D9880767AD54B72 /* SBUCreateOpenChannelModule.swift */, - DAD7F1829ACAE111E344DE29 /* SBUCreateOpenChannelModule.Header.swift */, - DBC7C99FF0EF09B1CEBD1811 /* SBUCreateChannelModule.Header.swift */, - 6F3C19D9A5CB31FE69B5177F /* SBUCreateChannelModule.List.swift */, + AA4C8A92E858E88A24487D32 /* ViewParams */, + 0DB47AC5257CA0EB3E785117 /* Views */, ); - name = CreateChannel; + name = Carousel; sourceTree = ""; }; /* End PBXGroup section */ @@ -2519,12 +2541,12 @@ 9C037E35280432DB00059696 /* Assets.xcassets in Resources */, 9C037E37280432DB00059696 /* Main.storyboard in Resources */, 9C037E36280432DB00059696 /* LaunchScreen.storyboard in Resources */, - CEF87985B78A17A47D88A74C /* Debug.xcconfig in Resources */, - EC796D3B6D1F7A0AEA40897F /* Release.xcconfig in Resources */, - 3F37F75F51C53D74C589C408 /* Base.xcconfig in Resources */, - 8E7D5E3A56F4F3C4BDE6992A /* SBUReactionCollectionViewCell.xib in Resources */, - 12ADAA683404B03C5B26E4EE /* SBUMenuCell.xib in Resources */, - 7C4BB4F858EF6EC90689F017 /* Assets.xcassets in Resources */, + 5B6DD325AB7CC63E76B2C0EE /* Debug.xcconfig in Resources */, + 85B31192167BCDC93FEC88B1 /* Release.xcconfig in Resources */, + 697202A7FD439E7892A3E98F /* Base.xcconfig in Resources */, + 21248F9B544715399BB59AC8 /* SBUReactionCollectionViewCell.xib in Resources */, + CCC036D8E13640D2A22C56AB /* SBUMenuCell.xib in Resources */, + A69015BBFF824DB7B074166F /* Assets.xcassets in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2620,335 +2642,345 @@ A93AE88C2A383CAA00AFFF9C /* ChannelVC_CustomInput.swift in Sources */, A93AE88E2A383CAA00AFFF9C /* ChannelVC_Overriding.swift in Sources */, A93AE8932A383CAA00AFFF9C /* ChannelSettingsVC_Overriding.swift in Sources */, - DF8BF2460DCBEE65625229C5 /* SBUViewModelDelegate.swift in Sources */, - 704F65F14931D07365F97AF1 /* SBUGroupChannelListViewModel.swift in Sources */, - 6AB28609315F93B55E8DCC8C /* SBUOpenChannelListViewModel.swift in Sources */, - C7984AD6E41FBA07E0CB7624 /* SBUBaseChannelListViewModel.swift in Sources */, - 2A1CE81F18C8F7C508668B8C /* SBUGroupChannelPushSettingsViewModel.swift in Sources */, - 700F4850098EEB43F4CA9582 /* SBUFeedNotificationChannelViewModel.swift in Sources */, - D7D5DAEDF8D5E4ACAF3DFBB0 /* SBUOpenChannelViewModel.swift in Sources */, - 41F03F33F920C6954F81F973 /* SBUBaseChannelViewModel.swift in Sources */, - 7FA009B25A7CDC1E4508650D /* SBUChatNotificationChannelViewModel.swift in Sources */, - 5B8250D81ACAA88D2FD362EB /* SBUGroupChannelViewModel.swift in Sources */, - C1611F2355D9BF68439F7930 /* SBUBaseChannelSettingsViewModel.swift in Sources */, - 7D09687AEA2EEE20B1CD412D /* SBUModerationsViewModel.swift in Sources */, - 47BB9F0DFF1A09E2FFD8F641 /* SBUGroupChannelSettingsViewModel.swift in Sources */, - F7882BEBEAF53151801FD6BB /* SBUOpenChannelSettingsViewModel.swift in Sources */, - AA12392FDEC2685019F1D869 /* SBUCommonDelegate.swift in Sources */, - D41DD826B9BDFEFC3CD3B401 /* SBUUserListViewModel.swift in Sources */, - 99315F509095613C8BDC7446 /* SBUMessageSearchViewModel.swift in Sources */, - 367431FF601B17098932AB65 /* SBUMessageThreadViewModel.swift in Sources */, - 70DB36DBD5A6FA79BA1CDA9F /* SBUBaseSelectUserViewModel.swift in Sources */, - DC39C98A72EF589379CF2F73 /* SBURegisterOperatorViewModel.swift in Sources */, - 61EA8BE17583BFCC1A241F5E /* SBUCreateChannelViewModel.swift in Sources */, - 5A45569F0A42529372ACFD8E /* SBUCreateOpenChannelViewModel.swift in Sources */, - 0C454D1E48781E6DC0D26DB2 /* SBUInviteUserViewModel.swift in Sources */, - 7F31CC0072F08EBAA5EC2FEC /* SBUMessageCellConfiguration.swift in Sources */, - 82A8AE0E750D41A5913F431B /* SBUReplyConfiguration.swift in Sources */, - 3F1CD10E555563C6155DC8F5 /* SBUConfigManager.swift in Sources */, - A80A0202777B8AC4D3C1A296 /* SBUConfig.OpenChannel.swift in Sources */, - 58E661DC5A226B6A6BA8F772 /* SBUConfig.swift in Sources */, - C01A33F0B62387025DEA6B6C /* SBUVoiceMessageConfiguration.swift in Sources */, - 19365B5FB787324D639C7333 /* SBUConfig.Base.swift in Sources */, - 79E8AFED5E5A572EF012E0F1 /* SBUConfig.GroupChannel.swift in Sources */, - B4507D6833D7113EDDFC4980 /* SBUMentionConfiguration.swift in Sources */, - BC69AA287BE5BB35721DEFE7 /* SBUUserMentionConfiguration.swift in Sources */, - 1A79BA8C9A9E34C2635FF75E /* SBUConfig.Common.swift in Sources */, - 596436965191BA331DB5D197 /* SBUDashboardConfig.swift in Sources */, - B2A93928188654E1066D86BF /* SBUConfig.CodingKeys.swift in Sources */, - F09E0C9552E2486FD908796B /* UIStackView.SBUIKit.swift in Sources */, - AC690D27DF5A7942564A7B6C /* URL+SBUKit.swift in Sources */, - F753458752650928111DF655 /* Array+SBUIKit.swift in Sources */, - 544397B4753B767BD0511715 /* UIColor+SBUIKit.swift in Sources */, - 608DB8199504538695D87C02 /* Formatter+SBUIKit.swift in Sources */, - 10D805486A6177AD4C5218D9 /* UIImage+SBUIKit.swift in Sources */, - F79193EE02046E1E56AAE64D /* UIButton+SBUIKit.swift in Sources */, - A4B1B64C51E1995B1E94C338 /* UINavigationController+SBUIKit.swift in Sources */, - CEC66185CB78F7CF2162846D /* BaseMessage+SBUIKit.swift in Sources */, - 7185616B445D3B6F44CA1DB3 /* String+SBUIKit.swift in Sources */, - AA1C6D00C5532E864BB4928F /* CGSize+SBUIKit.swift in Sources */, - E2632AA462191114FAF7A332 /* Float+SBUKit.swift in Sources */, - 9FE3E7C9DF3A279FFA065D0B /* Data+SBUIKit.swift in Sources */, - 2CE121B833C166CFDC1B2825 /* UIViewController+SBUIKit.swift in Sources */, - 686C45EA6BFBAD3227ED650C /* Date+SBUIKit.swift in Sources */, - 95EF5038E66658C169B88507 /* StringProtocol+SBUIKit.swift in Sources */, - FF65EA72B4BB553D60D6A76C /* UIApplication+SBUIKit.swift in Sources */, - 77460CC4AE77F01E2783203A /* UIView+SBUIKit.swift in Sources */, - 7906803E612158596182FE48 /* Sequence+SBUIKit.swift in Sources */, - C042185A3F6B38513B0C1D36 /* UIImageView+SBUIKit.swift in Sources */, - 0570B359788C26CD44FBED4C /* NSObject+SBUIKit.swift in Sources */, - 6F3FACE079B85FCCDE466D71 /* UITextField+SBUIKit.swift in Sources */, - 8637BB74495AA4975B9F819A /* SBUPropertyWrapper.swift in Sources */, - F2402179D99D344F3DAD4430 /* SBUUtils.swift in Sources */, - 27F111D939220AEB06C62BB2 /* SBULogger.swift in Sources */, - D8FAA8E11C46DF6EF9C9EB98 /* SBUMentionManager.swift in Sources */, - E3BFBE6B01EF7D52E4C786C2 /* SBUDebouncer.swift in Sources */, - A0DE6B12A8955CF2274AAD97 /* SendbirdUI.swift in Sources */, - A59EB3BBD05BAF173DBC7CBD /* SBUAvailable.swift in Sources */, - 8AF1981BAC2E860C072117D7 /* SBUBaseChannelListModule.swift in Sources */, - 6325BF62478F9E31A1D5E340 /* SBUGroupChannelListModule.List.swift in Sources */, - A6EC32CB87A0D0ECAC5A58F5 /* SBUGroupChannelListModule.swift in Sources */, - 6E0CB1EB1AA2C38EDBCBC54B /* SBUGroupChannelListModule.Header.swift in Sources */, - C1F6EB644C448AE6ACE9D9AC /* SBUBaseChannelListModule.Header.swift in Sources */, - F6F1212BD0BB5B97FAF60B89 /* SBUBaseChannelListModule.List.swift in Sources */, - 288A6678C8BC67995BB75A8C /* SBUOpenChannelListModule.swift in Sources */, - E314BEBAD8EDC01E154ABC6A /* SBUOpenChannelListModule.List.swift in Sources */, - 781826F57C5A135003EAFF07 /* SBUOpenChannelListModule.Header.swift in Sources */, - 4D585EB42DA342F4867C913C /* SBUGroupChannelPushSettingsModule.List.swift in Sources */, - CC320603E163E49D7A1DCD06 /* SBUGroupChannelPushSettingsModule.swift in Sources */, - ED1DA45B6BFC2A9870EC9B39 /* SBUGroupChannelPushSettingsModule.Header.swift in Sources */, - 07038DC679B3C2A63AA27E40 /* SBUGroupChannelModule.Input.swift in Sources */, - D09F4000016B9CE60DB09A16 /* SBUGroupChannelModule.List.swift in Sources */, - 8EA74192A9100F2F97D244C4 /* SBUGroupChannelModule.Header.swift in Sources */, - 777258EA0136FD36713AD101 /* SBUGroupChannelModule.swift in Sources */, - 1ECEDDF3EFDDFF767B15B284 /* SBUChatNotificationChannelModule.swift in Sources */, - 6D3E0DED03B5FEA39AC7553B /* SBUChatNotificationChannelModule.List.swift in Sources */, - 97DD45C674A05376A5F92FE1 /* SBUChatNotificationChannelModule.Header.swift in Sources */, - 6690341DFE2BBD486AB426FF /* SBUFeedNotificationChannelModule.Header.swift in Sources */, - 1A933245EAE1D6663380DA3A /* SBUFeedNotificationChannelModule.List.swift in Sources */, - FC20477502128A40BB6A5239 /* SBUFeedNotificationChannelModule.swift in Sources */, - 04B6FCC8BAD95506B544EA74 /* SBUBaseChannelModule.Input.swift in Sources */, - DB1EFBC9C0A1A61AEDA2DA32 /* SBUBaseChannelModule.swift in Sources */, - C79946163A1898F73998BBF1 /* SBUBaseChannelModule.Header.swift in Sources */, - 7F509955BA744BB5ABAF1E72 /* SBUOpenChannelModule.List.swift in Sources */, - 6FEF859687CD4CE1A9183321 /* SBUOpenChannelModule.Media.swift in Sources */, - 63979C1B0A162B067CB00EC6 /* SBUOpenChannelModule.Input.swift in Sources */, - 100B7305B7C5A55A5C12D831 /* SBUOpenChannelModule.Header.swift in Sources */, - 3572E18220CF0810F49C8EA3 /* SBUOpenChannelModule.swift in Sources */, - D4B76E637FB96132017F4DC5 /* SBUBaseChannelModule.List.swift in Sources */, - D5FC25E638142866BCC138FD /* SBUBaseChannelSettingsModule.Header.swift in Sources */, - 5FBEA976A53BBEC21FE04E6A /* SBUBaseChannelSettingsModule.List.swift in Sources */, - FBB6F81375C590A5373F4E49 /* SBUChannelSettingItem.swift in Sources */, - 1931318040E00D7FE988773F /* SBUGroupChannelSettingsModule.swift in Sources */, - 5EAB9B0078D89372B0C5F438 /* SBUGroupChannelSettingsModule.Header.swift in Sources */, - 0B9CEB30532D20896B465D6E /* SBUGroupChannelSettingsModule.List.swift in Sources */, - 2D9CFC52B32425A1645E429C /* SBUBaseChannelSettingsModule.swift in Sources */, - 887D4FAEA99259C95D1BAE9A /* SBUOpenChannelSettingsModule.List.swift in Sources */, - 7764576007FC5DFB201FBA0F /* SBUOpenChannelSettingsModule.swift in Sources */, - 5D5D977B380EBCAFB4B7FCDE /* SBUOpenChannelSettingsModule.Header.swift in Sources */, - 33DC44900B7E0BB33FDA5A04 /* SBUUserListModule.swift in Sources */, - 64614D2BB4DB3276017DF3A6 /* SBUUserListModule.List.swift in Sources */, - 4FC5148CB1F7D80369E615D7 /* SBUUserListModule.Header.swift in Sources */, - 1170729BF0413D2AA38C8B7C /* SBUModuleSet.swift in Sources */, - 3ED1EF76459BCC1DFC0A9CB2 /* SBUMessageSearchModule.Header.swift in Sources */, - 00663CC3076276F4FEBC2BE4 /* SBUMessageSearchModule.List.swift in Sources */, - 4ECE0DB1B01D994710DBAAA6 /* SBUMessageSearchModule.swift in Sources */, - BDA15F2F5029901D2885210E /* SBUMessageThreadModule.List.swift in Sources */, - B00057CF0EC04F7F26296144 /* SBUMessageThreadModule.swift in Sources */, - 5010329DB1CC8137B98C0216 /* SBUMessageThreadModule.Input.swift in Sources */, - D8FCDCBE4579863A74F4EDAB /* SBUMessageThreadModule.Header.swift in Sources */, - 884519BA535D31EC22E50151 /* SBUModerationsModule.List.swift in Sources */, - D4D4F2497F22DB64648DC891 /* SBUModerationsModule.swift in Sources */, - 9BE5978D63794E711F7649EC /* SBUModerationsModule.Header.swift in Sources */, - AE1876AC37C09301D1BC21C5 /* SBURegisterOperatorModule.List.swift in Sources */, - 0647CB80C85AAB29D3E9630C /* SBURegisterOperatorModule.Header.swift in Sources */, - 2AC13BE53AC2F78E3ACBEB1A /* SBURegisterOperatorModule.swift in Sources */, - AD7F17B1E639E128BF12E5E5 /* SBUInviteUserModule.List.swift in Sources */, - E5ED3913DBA813EDE3F16562 /* SBUInviteUserModule.swift in Sources */, - 228AD06D369AD2DE3E15FDE7 /* SBUInviteUserModule.Header.swift in Sources */, - E3DDDC74B95A881F8F49ED3D /* SBUBaseSelectUserModule.Header.swift in Sources */, - FA9C8DFEF2F2882A1F63D705 /* SBUBaseSelectUserModule.swift in Sources */, - 984DC2A9EF8895361819D5AE /* SBUCreateOpenChannelModule.ProfileInput.swift in Sources */, - 8EC236CE217428FC109F6F59 /* SBUCreateChannelModule.swift in Sources */, - 4F36177BDA09856DE1D6649A /* SBUCreateOpenChannelModule.swift in Sources */, - CFBC268025C2BCD7BF38B4B2 /* SBUCreateOpenChannelModule.Header.swift in Sources */, - 37AD72298B14A77EF4E1FC0F /* SBUCreateChannelModule.Header.swift in Sources */, - A5EA172A6592BA1437D8C669 /* SBUCreateChannelModule.List.swift in Sources */, - 540D05E0103210250964AFDB /* SBUBaseSelectUserModule.List.swift in Sources */, - 4D1E854F6D658754ECA13636 /* VoiceMessageStatus.swift in Sources */, - 092AE4173D1954A080C3E367 /* SBUIconSetType.swift in Sources */, - F27777BECC938C0738583B49 /* SBUEnums.swift in Sources */, - 009713E8973B2EA585486B24 /* MessageTemplateTestViewController.swift in Sources */, - C46FD98A46FFD205473640E4 /* MessageTemplateParser.swift in Sources */, - 218A4B0A4DCD9A8C3A18AD31 /* MessageTemplateRenderer.swift in Sources */, - E0E37E8DFCB221458915C9A2 /* CommonProtocols.swift in Sources */, - 1759E88619492814B7EFB7E6 /* SBUEmojiManager.swift in Sources */, - 89F576855C4A4C304F837E85 /* SBUCacheManager.Config.swift in Sources */, - F41F78A84F286290D4E1D518 /* SBUCacheManager.File.swift in Sources */, - 35E97A78ADB8728CC1CC335C /* SBUCacheManager.Template.swift in Sources */, - 5879EC5FFD9C40DD6ACF5C94 /* SBUCacheManager.Image.swift in Sources */, - CF511B75795E19A54516232B /* SBUCacheManager.swift in Sources */, - F15014510D41217A718942F6 /* SBUCacheManager.NotificationSetting.swift in Sources */, - 68E0DB672DBAF1F6271347DF /* SBUVoicePlayer.swift in Sources */, - 24D91363CE2FBBA13D826F0A /* SBUNotificationChannelManager.swift in Sources */, - 43DB5DCD98A8E743D48B163C /* SBUPendingMessageManager.swift in Sources */, - BF5987C0142A6B9BF38A2472 /* SBUDownloadManager.swift in Sources */, - 7ACA1C8CADE79FD1B5553629 /* SBUVoiceRecorder.swift in Sources */, - 14A6F806F49B123AEA9CFD72 /* SBUPermissionManager.swift in Sources */, - 67757579D6781AA266010059 /* SBUToastManager.swift in Sources */, - 8498D5CAC1900A97150EEC3C /* SBUGlobalCustomParams.swift in Sources */, - 2F18362D77AB0A8E6B48FC12 /* SBUStringSet.Deprecated.swift in Sources */, - A0B9535541C4C97B66CD31FF /* SBUDateFormatSet.swift in Sources */, - F715A9B2AA2FF1D48DB18FD8 /* SBUConstant.swift in Sources */, - BDA4D8292C1FCFED57A2EB49 /* SBUStringSet.swift in Sources */, - F01F876E3E5E3DAF10322698 /* SBUIconSet.swift in Sources */, - 4DD644534E3DBA9D6F8F2A57 /* SBUColorSet.swift in Sources */, - 6C30B774588B5176F2190080 /* SBUTheme+Type.swift in Sources */, - 9A7449826A8944B2ABC114FF /* SBUFontSet.swift in Sources */, - 1467751B060FA467945AE12D /* SBUTheme.swift in Sources */, - B273DADE59D08D070FBB3167 /* SBUMention.swift in Sources */, - 79ED128C7F7884332CC45D45 /* SBUMessageCache.swift in Sources */, - 61EC982CFD64138F34027F0B /* SBUUser.swift in Sources */, - 65F47CF825D3A08A8FDFBCEA /* SBUVoiceFileInfo.swift in Sources */, - F3B0C22131DB824AF1A733F7 /* SBUHighlightMessageInfo.swift in Sources */, - F23D56A8D0B60F207E799D22 /* SBUBaseViewController.swift in Sources */, - 5B76328B54650F20160C79BE /* SBUOpenChannelCell.swift in Sources */, - 1756F77B2ACB6BFDFFC5976E /* SBUGroupChannelCell.swift in Sources */, - 6326B5865D51B304B9C21A8E /* SBUBaseChannelCell.swift in Sources */, - F63E93FB326D0685CB802A8F /* SBUBaseChannelListViewController.swift in Sources */, - 087B5B0DA35646F6FD9642FB /* SBUGroupChannelListViewController.swift in Sources */, - 4AACFAFD23131C45541971D8 /* SBUOpenChannelListViewController.swift in Sources */, - 3F2441D99BCE8B7BD328C82E /* SBUChannelPushSettingCell.swift in Sources */, - E454360736E7E69F6616D9C5 /* SBUGroupChannelPushSettingsViewController.swift in Sources */, - 8AC1C0D2913275B3BE99F2AC /* SBUUserMessageTextViewModel.swift in Sources */, - DB401677D55110C454049B59 /* SBUMessageWebViewModel.swift in Sources */, - 33A62FB2116A7C09D7320F57 /* SBUParentMessageInfoReactionView.swift in Sources */, - CB9830F5FD9BDDAEBA3B2DEE /* SBUReactionCollectionViewCell.swift in Sources */, - 74EF28B3A843E005DC43CF31 /* SBUReactionsViewController.swift in Sources */, - 50BFBC8D61228F02E8270851 /* SBUMessageReactionView.swift in Sources */, - A67F5F0C146D6FEFC5EFD7DC /* SBUEmojiListViewController.swift in Sources */, - 87AAEC65E72FBDD6493FB912 /* SBUFeedNotificationChannelViewController.swift in Sources */, - D61CC59F01E516728211DA2C /* SBUBaseChannelViewController.swift in Sources */, - 488A1FB0E2272E5A24A7C8F7 /* SBUUserMessageCellParams.swift in Sources */, - 3485ABC6A240FFD3105FA276 /* SBUUnknownMessageCellParams.swift in Sources */, - 2D83F1B4E9D432E58DDFC5C6 /* SBUAdminMessageCellParams.swift in Sources */, - 059438527C4939CDCFD3B481 /* SBUBaseMessageCellParams.swift in Sources */, - AA02C52B8E99633E698415F9 /* SBUFileMessageCellParams.swift in Sources */, - 95833B78ECB894EE10BFBB12 /* SBUBaseFileContentView.swift in Sources */, - 51F4BAA84FBB19A7D998D61B /* SBUOpenChannelCommonContentView.swift in Sources */, - 01C18B8DBC483130C368C4F2 /* SBUVoiceContentView.swift in Sources */, - 0A15A0374FB0BE5413302BF3 /* SBUImageContentView.swift in Sources */, - 98FA074952D8EE6E1EB0BE17 /* SBUCommonContentView.swift in Sources */, - DD467C6A14CED966033B013F /* SBUOpenChannelImageContentView.swift in Sources */, - 63609EEBC614D3AE10FCB8D4 /* SBUNotificationCell.swift in Sources */, - 75A091A3ABE87F4A0BB5E702 /* SBUFeedNotificationCell.swift in Sources */, - E4A14696B40D8422BA270DC1 /* SBUChatNotificationCell.swift in Sources */, - 16599332CDD6B9121E271738 /* QuotedFileCommonContentView.swift in Sources */, - 18898F2968BDB7333ACFE928 /* SBUQuotedBaseMessageView.swift in Sources */, - AFB567CE360CEACCAE25F6D6 /* SBUThreadInfoView.swift in Sources */, - BF430CC7B2FEA1AFDCC4E3DD /* QuotedFileImageContentView.swift in Sources */, - 5D66B45F3BFED8ADA6E0213B /* SBUQuotedFileMessageView.swift in Sources */, - 9F2A65E1D0CAC6DAFF67AD60 /* SBUQuotedUserMessageView.swift in Sources */, - C226A544A791A7963341E9BC /* SBUQuotedBaseMessageViewParams.swift in Sources */, - F723A0AEAD049F1298D4D97E /* SBUBaseMessageCell.swift in Sources */, - A06B2B5A4BD5966BF8D1994F /* SBUOpenChannelFileMessageCell.swift in Sources */, - 44BBD8F94234CF769D61E297 /* SBUOpenChannelAdminMessageCell.swift in Sources */, - C1EFADC819832C529E0E74DA /* SBUOpenChannelContentBaseMessageCell.swift in Sources */, - 00CACD90764D4B9C0F004B5B /* SBUOpenChannelUserMessageCell.swift in Sources */, - DF13007C11232C6A75E9655D /* SBUOpenChannelUnknownMessageCell.swift in Sources */, - EBA7C5971338ABF3EC65AADB /* SBUOpenChannelBaseMessageCell.swift in Sources */, - ABFB0DFF31126EB5CF90F698 /* SBUFileMessageCell.swift in Sources */, - 9DDEA46E0A713006A8D67927 /* SBUAdminMessageCell.swift in Sources */, - 7463F2C63CAF489DA7F7D6EB /* SBUContentBaseMessageCell.swift in Sources */, - CEFC68C06A84F03F482478DF /* SBUUnknownMessageCell.swift in Sources */, - 2A7C88272E737A9BBEC54823 /* SBUUserMessageCell.swift in Sources */, - E9B96EA736AC89151ABDB2CA /* SBUGroupChannelViewController.swift in Sources */, - 71F2599F5A0D7D137A92AC0D /* SBUMentionLimitGuideCell.swift in Sources */, - 30548D597ACF6B6B3E53C651 /* SBUSuggestedMentionList.swift in Sources */, - 89EA13A76E7FCCC4B614D374 /* SBUQuoteMessageInputView.swift in Sources */, - 279211430FF7A2CD3E0B30D0 /* SBUMessageInputMode.swift in Sources */, - 58A8B6DE6270D704E1BAB419 /* SBUQuoteMessageInputViewParams.swift in Sources */, - 84DFA587AC1B587E29F6F795 /* SBUMessageInputView.swift in Sources */, - 3274818673F2ABCDAEE14FEE /* SBUMessageStateView.swift in Sources */, - 9829F3939B53D76E23FC6770 /* SBUMessageProfileView.swift in Sources */, - 5924487D5F2E9B88409B1DDD /* SBUUserMessageTextView.swift in Sources */, - 9376B72DB1A7C1CEE42199F0 /* SBUUserNameView.swift in Sources */, - 75D8859A2F12696EFEE635F4 /* SBUMessageWebView.swift in Sources */, - CAC6FB3EFF2BB1C3B268D172 /* SBUMessageDateView.swift in Sources */, - 6A002CB5758F89F495CF7409 /* SBULinkClickableTextView.swift in Sources */, - A48ECAFCEBD9FC58F454783E /* SBUOpenChannelMessageWebView.swift in Sources */, - EAD8DAE732BA67D5C3B593DF /* SBUSelectableStackView.swift in Sources */, - A469040E768D7CE086963282 /* SBUNotificationTimelineView.swift in Sources */, - 0D441CE2FF2FDE8C5FC8A7D8 /* SBUFileViewController.swift in Sources */, - 9DE2A8A9E4D812DC139D3B9B /* SBUBaseChannelViewController.Keyboard.swift in Sources */, - DC91A58F0EA1AED2847C4698 /* SBUChatNotificationChannelViewController.swift in Sources */, - E062E914B958E214881EAD7B /* SBUNewNotificationInfo.swift in Sources */, - EEEBE33E1FF8B8E8775550A8 /* SBUNewMessageInfo.swift in Sources */, - 760E0EBC8CF934A7F80E5D49 /* SBUOpenChannelViewController.swift in Sources */, - 011661A1D0F455EFA08AC19E /* SBUChannelInfoHeaderView.swift in Sources */, - C7B189B24777A51ADB907D14 /* SBUChannelTitleView.swift in Sources */, - 8DA4B6C647A90701542C858D /* SBUBaseChannelSettingsViewController.swift in Sources */, - 8A4BD70709983ED1646B8CBF /* SBUOpenChannelSettingsViewController.swift in Sources */, - 622BB8CD3214724778645CA3 /* SBUOpenChannelSettingCell.swift in Sources */, - F366355CF7B83B8EAABEE920 /* SBUBaseChannelSettingCell.swift in Sources */, - 3AB8E0FDBE6C80F19CB95F05 /* SBUModerationCell.swift in Sources */, - DD001ED3A1AF04B6D5B32A98 /* SBUGroupChannelSettingCell.swift in Sources */, - 4BAD1CF3680F1EEDAD736FBB /* SBUChannelSettingsChannelInfoView.swift in Sources */, - E143A36E963B1CDF5E18C6AB /* SBUGroupChannelSettingsViewController.swift in Sources */, - 400748702E1EC0DBCBFB0649 /* SBUVoiceMessageInputView.swift in Sources */, - 129DFF4DF0E55B7C4753DAF9 /* SBUStackView.swift in Sources */, - 6E39AE16167943B32E3EEC85 /* SBUAnimation.swift in Sources */, - 036BA25756C0051ACB937028 /* SBUEmptyView.swift in Sources */, - 5911594130AA8FE6F1F3ACFB /* SBUCoverImageView.swift in Sources */, - 5DAFED97AF6189F7AA679D01 /* SBUPhotoAccess.swift in Sources */, - 434905A9845265319CFBC3BB /* SBUPhotoCollectionViewCell.swift in Sources */, - FA03E68DB3E2294322803CA1 /* SBUSelectablePhotoViewController.swift in Sources */, - 8B8B5659262415DD655A7A23 /* SBUCommonItem.swift in Sources */, - 91E5E3CCF01693B9D92B4B33 /* SBULayoutableButton.swift in Sources */, - 82E29388B5BA66C827667748 /* SBUUserProfileView.swift in Sources */, - 9FAAA337E9855CB4E09F9101 /* SBUNavigationTitleView.swift in Sources */, - 379CA0680EB94EEB851646C0 /* SBUNotificationNavigationTitleView.swift in Sources */, - 9AD7CD2429D42DE005D04EB5 /* SBUBarButtonItem.swift in Sources */, - 5EDC41B31670F02C6E560118 /* SBUActionSheet.swift in Sources */, - E309BB5E7CC5B2E48D2F0579 /* SBUNotificationEmptyView.swift in Sources */, - 416F16EAC92F6A65B45A066D /* SBUAlertView.swift in Sources */, - 92247BDFC5B804214FFB4B91 /* SBUMenuSheetViewController.swift in Sources */, - 77F2800A2FFF6D12E3E13DBB /* SBUMenuCell.swift in Sources */, - B2715B26B4906E142DD3A0D7 /* SBUMenuView.swift in Sources */, - A3DE3AD63B6E587C07269BEA /* SBUBottomSheetController.swift in Sources */, - 321B8AD2040FFECFC1A61C2E /* SBUUnderLineTextField.swift in Sources */, - A6A5B9D68A193DDF27B9BF61 /* SBUUserCell.swift in Sources */, - E50ACF82A0CDE638EA5B03D8 /* SBUTemplateLabel.swift in Sources */, - 616D588BD28B6C18DA775E00 /* SBUMarginView.swift in Sources */, - 5D19C7911A1C991F7B9291CD /* SBUCommonViewControllerSet.swift in Sources */, - 46341B282B83E685C9AAD83D /* SBULoading.swift in Sources */, - 3EFA1456F3339A63B98BF47B /* SBUCollectionViewFlowLayout.swift in Sources */, - F2BB65025FE508D721D2E622 /* SBUUserListViewController.swift in Sources */, - DE6403EBA8F7B56A3AC08BF4 /* SBUViewControllerSet.swift in Sources */, - 4E84AA35DC194E4F47E48229 /* SBUMessageSearchViewController.swift in Sources */, - 8F1DA8219A12BC5F793FF2EC /* SBUMessageSearchResultCell.swift in Sources */, - A1AD0BE273C54C5FCEB6C91C /* SBUTableViewCell.swift in Sources */, - C373EB700C110605D48D9F69 /* SBUQuoteMessageInputViewProtocol.swift in Sources */, - CF3B168CFBA4566547EB013E /* SBUMessageCellProtocol.swift in Sources */, - DA2E65852860A674F8AE916E /* SBUViewLifeCycle.swift in Sources */, - 0DEE8185FE807B5093454057 /* SBUQuotedMessageViewProtocol.swift in Sources */, - 3B3BEDA110458D6CA727521C /* SBUView.swift in Sources */, - A405E011E4E23B4E0F202563 /* SBUMessageThreadViewController.swift in Sources */, - DBD084B2C9A72ECC5BD96D72 /* SBUMessageThreadTitleView.swift in Sources */, - 0481881EAC2E40146C3826F9 /* SBUParentMessageInfoView.swift in Sources */, - 93CA0B625E118700B5ACBE61 /* SBUModerationsViewController.swift in Sources */, - E856BB7DECABEEBF7CBD5A38 /* SBURegisterOperatorViewController.swift in Sources */, - 48E081A7234A3CB920E9DD14 /* SBUBaseSelectUserViewController.swift in Sources */, - BAF4F12B20926A34F95BB25B /* SBUInviteUserViewController.swift in Sources */, - CAA4720A9C9E74ED3F714F02 /* SBUCreateChannelTypeSelector.swift in Sources */, - 7D724AC64E9EE55C13B8F821 /* SBUCreateChannelViewController.swift in Sources */, - DF58F6C924AE3C381A379BA0 /* SBUCreateOpenChannelViewController.swift in Sources */, - ACC30EECD3592A0924B4054A /* SBUGlobals.swift in Sources */, - F03F6FFB4D7F94C4D4177374 /* SBUTableViewCell.Unavailable.swift in Sources */, - 65C72A928BF91DF9A6805593 /* SBUChannelListViewController.Deprecated.swift in Sources */, - 472389AA0507C7DE3BC0E63F /* SBUBaseMessageCellParams.Deprecated.swift in Sources */, - 52EE90CF001CE30EEC33C505 /* SBUQuotedBaseMessageViewParams.Deprecated.swift in Sources */, - B38AC20AFC5ECC4677603D84 /* SBUContentBaseMessageCell.Deprecated.swift in Sources */, - 527DE16C9DE65424A72A4F64 /* SBUBaseChannelViewController.Deprecated.swift in Sources */, - 6F6F8707EB35B2A5B26B3E88 /* SBUGroupChannelViewController.Unavailable.swift in Sources */, - 6F06B8B7CDE22F0CC7796518 /* SBUOpenChannelViewController.Deprecated.swift in Sources */, - 71C7A3BB63B3972D436494D9 /* SBUOpenChannelViewController.Unavailable.swift in Sources */, - FA8F1AAA7387BB6B8BF6D8A3 /* SBUGroupChannelViewController.Deprecated.swift in Sources */, - 9904E96BB95FFFE41048C68A /* SBUBaseChannelViewController.Unavailable.swift in Sources */, - 164D1C842DEE08B67F88D6E4 /* SBUBaseChannelSettingsViewController.Deprecated.swift in Sources */, - 13A5944057F16C3DAA81C72A /* SBUBaseViewController.Unavailable.swift in Sources */, - 2496FB07618DD4773674506E /* SBUMemberListViewController.Deprecated.swift in Sources */, - 00FEFEAADF755E7A7EECC55D /* SBUBaseSelectUserViewController.Deprecated.swift in Sources */, - 187E1DA04C9161FCAE1A357C /* SBUMessageSearchViewController.Deprecated.swift in Sources */, - 14254D7C5CA6903A624BEBA1 /* SBUView.Unavaliable.swift in Sources */, - 5C1FADE2150C64C65B850044 /* SBUGlobals.Deprecated.swift in Sources */, - ED0E9BA842269851945752B9 /* SBUCoverImageView.Deprecated.swift in Sources */, - 9E805C61A20E9DA322665214 /* SBUModerationsViewModel.Deprecated.swift in Sources */, - 89346179F3FC2CD3B5B73B33 /* SBUModerationsViewController.Deprecated.swift in Sources */, - 054870BE3A71BFC002F59223 /* SBUTheme.Deprecated.swift in Sources */, - C2E4BC06ED5EB99E6BC1A427 /* SBUCreateChannelViewController.Deprecated.swift in Sources */, - 714512610ED9082C9B9D5FD4 /* SBUModuleSet.Deprecated.swift in Sources */, - EB3CA2D1FD6933E4BD5C666C /* SBUEnums.Deprecated.swift in Sources */, + 30392C85DEAF3CE88D548878 /* SBUViewModelDelegate.swift in Sources */, + 83FE42EE9BC4C0A221701797 /* SBUGroupChannelListViewModel.swift in Sources */, + 92FD51959EFB9735A3243541 /* SBUOpenChannelListViewModel.swift in Sources */, + EB6725F370C41905C234683D /* SBUBaseChannelListViewModel.swift in Sources */, + B55270C6BA84BF590A5B7EAA /* SBUGroupChannelPushSettingsViewModel.swift in Sources */, + BA18A598585E2F6AB146D574 /* SBUFeedNotificationChannelViewModel.swift in Sources */, + 8F39DDDF4AF900D2B72F822C /* SBUOpenChannelViewModel.swift in Sources */, + 86C448E4C3945343102F034A /* SBUBaseChannelViewModel.swift in Sources */, + 33E6EF1A88D63B34898974D8 /* SBUChatNotificationChannelViewModel.swift in Sources */, + 62684DABBF2AF0E5BA80BEF4 /* SBUGroupChannelViewModel.swift in Sources */, + 688B0C5B60294418B9AA1624 /* SBUBaseChannelSettingsViewModel.swift in Sources */, + 2DDFE4F15167414910410405 /* SBUModerationsViewModel.swift in Sources */, + 20FDE641F6D8BD86665AAAFB /* SBUGroupChannelSettingsViewModel.swift in Sources */, + 8958060EE5118E0AC0B7DF13 /* SBUOpenChannelSettingsViewModel.swift in Sources */, + D552633B00342B61B1BBD9CA /* SBUCommonDelegate.swift in Sources */, + D340EDD109BB18566DDC4CDF /* SBUUserListViewModel.swift in Sources */, + D4A46D6466B8494894DDC593 /* SBUMessageSearchViewModel.swift in Sources */, + 4B229D072F1BF04C7951C180 /* SBUMessageThreadViewModel.swift in Sources */, + 9495618A76EFD99F02BAFC82 /* SBUBaseSelectUserViewModel.swift in Sources */, + DEE2DD92F2F58FDEE88403D0 /* SBURegisterOperatorViewModel.swift in Sources */, + 2A3893E35AFAFA3F463186B4 /* SBUCreateChannelViewModel.swift in Sources */, + 1FF2063F7BE38ACBAC7F12B0 /* SBUCreateOpenChannelViewModel.swift in Sources */, + FEDC8CE8484CA509DDFE98B9 /* SBUInviteUserViewModel.swift in Sources */, + FA8FBF71FB5E26D0733B0360 /* SBUMessageCellConfiguration.swift in Sources */, + 514A2B5407B92EEF8C36F49D /* SBUReplyConfiguration.swift in Sources */, + 9B617AA62F39FA7EEB096703 /* SBUConfigManager.swift in Sources */, + A471857472D83EA04CF1A4E6 /* SBUConfig.OpenChannel.swift in Sources */, + 7DD98F7DA23AB360DCB708EB /* SBUConfig.swift in Sources */, + 30BF2919A28ADCE92DEAAA98 /* SBUVoiceMessageConfiguration.swift in Sources */, + D91D7E7C5BF332489F787332 /* SBUConfig.Base.swift in Sources */, + 372298C984F23B5220932E58 /* SBUConfig.GroupChannel.swift in Sources */, + 18092E5DB401F7BD8F84B979 /* SBUMentionConfiguration.swift in Sources */, + EAE1C8C48593A92633DA0A18 /* SBUUserMentionConfiguration.swift in Sources */, + 848BC59A0055CD406B104199 /* SBUConfig.Common.swift in Sources */, + 652FE365791594A5C207041C /* SBUDashboardConfig.swift in Sources */, + 4F81C6904916898D1197D2ED /* SBUConfig.CodingKeys.swift in Sources */, + 9610D00DCAA1B0FC51087E3B /* UIStackView.SBUIKit.swift in Sources */, + 4A0BB58375B8DA2B278416D2 /* URL+SBUKit.swift in Sources */, + B4994381609C9BF47FBEF57A /* UserMessage+SBUIKit.swift in Sources */, + 5C75BBF75EC702DB93AA63C6 /* Array+SBUIKit.swift in Sources */, + B489241C82C6C6CA8B5F29CD /* UIColor+SBUIKit.swift in Sources */, + C40441C5407F2DEC5F7EEB9A /* Formatter+SBUIKit.swift in Sources */, + DD54B46CB0CBF778D85794FD /* UIImage+SBUIKit.swift in Sources */, + 0ECEB4811AC08C6EC1C58528 /* UIButton+SBUIKit.swift in Sources */, + B3CCE99BF3522C0531FC1717 /* UINavigationController+SBUIKit.swift in Sources */, + AC0903C2A29B6F4B83C77BBD /* BaseMessage+SBUIKit.swift in Sources */, + 52FDB8D18F3AD7CFFC9E1359 /* String+SBUIKit.swift in Sources */, + 865410ABAD61A0AB3A5BE060 /* CGSize+SBUIKit.swift in Sources */, + 33C6E7FF06F62A1DF1C67EB5 /* Float+SBUKit.swift in Sources */, + 6A7BE5E64EAAC90D783ADB6D /* Data+SBUIKit.swift in Sources */, + E9D41AEDF309F480D68E01AE /* UIViewController+SBUIKit.swift in Sources */, + 62764E2C277F29C22371B82A /* Date+SBUIKit.swift in Sources */, + 87BCFBFEDF6B024DA2016870 /* StringProtocol+SBUIKit.swift in Sources */, + 6BE6C6A70BBA87B2675EA1C8 /* UIApplication+SBUIKit.swift in Sources */, + A1445E3D526FE017018D66BE /* UIView+SBUIKit.swift in Sources */, + 1A6A4368D78F144C5FE3ADBB /* Sequence+SBUIKit.swift in Sources */, + 6D83159F34075B212DAF6F42 /* UIImageView+SBUIKit.swift in Sources */, + 41E228FA6BBF9AF58B53C92B /* NSObject+SBUIKit.swift in Sources */, + BB9E2290B4807337DA1665A2 /* UITextField+SBUIKit.swift in Sources */, + C0FCE237545685067B78591A /* SBUPropertyWrapper.swift in Sources */, + 8B91BCDB0055429AF9E05CC0 /* SBUUtils.swift in Sources */, + 70E474AF558721E5CE37BCE7 /* SBULogger.swift in Sources */, + 38319DC11A86E5B1328E9A18 /* SBUMentionManager.swift in Sources */, + 3C583A45205F13901177F1C2 /* SBUDebouncer.swift in Sources */, + 0E168BD89AFEE1AB43B551D5 /* SendbirdUI.swift in Sources */, + E3890B7C3ED4CA596AF7C779 /* SBUAvailable.swift in Sources */, + E76645BD5E0AD0C28BA4CA37 /* SBUBaseChannelListModule.swift in Sources */, + 26BCF5E0D8307EFF1479A86F /* SBUGroupChannelListModule.List.swift in Sources */, + 61DF9857A2FC8A3120747C54 /* SBUGroupChannelListModule.swift in Sources */, + C72C126CF15A0520AE6361D4 /* SBUGroupChannelListModule.Header.swift in Sources */, + 77F79A2724CE2000C20B139E /* SBUBaseChannelListModule.Header.swift in Sources */, + 0AFB0082B232C63FCB5EAD8D /* SBUBaseChannelListModule.List.swift in Sources */, + 6FD86EB779E730E1CF50EF18 /* SBUOpenChannelListModule.swift in Sources */, + A64AB13CA248A98D0201BCDC /* SBUOpenChannelListModule.List.swift in Sources */, + 4A1860FE67031674485212D6 /* SBUOpenChannelListModule.Header.swift in Sources */, + 0EBC6A2EF7C45FA4396955E9 /* SBUGroupChannelPushSettingsModule.List.swift in Sources */, + F2EED6679AD425B0C025F61A /* SBUGroupChannelPushSettingsModule.swift in Sources */, + 42B00790CD9291DA34A85E85 /* SBUGroupChannelPushSettingsModule.Header.swift in Sources */, + E7C9E6A8C19FAD9402B55BDD /* SBUGroupChannelModule.Input.swift in Sources */, + A68239E92EEFA809C637410D /* SBUGroupChannelModule.List.swift in Sources */, + BE11B3E4E36AD6A91744A889 /* SBUGroupChannelModule.Header.swift in Sources */, + 3B6231659F40565A993CD51F /* SBUGroupChannelModule.swift in Sources */, + F56326AF4FFD5F672D5752DD /* SBUChatNotificationChannelModule.swift in Sources */, + D160B1A9D3E85CC08D3D91FB /* SBUChatNotificationChannelModule.List.swift in Sources */, + 60AA894E9A57EAD3764E36BE /* SBUChatNotificationChannelModule.Header.swift in Sources */, + BD4940850B09118013C1EF23 /* SBUFeedNotificationChannelModule.Header.swift in Sources */, + CCCFA7256A3514A573D3FA4D /* SBUFeedNotificationChannelModule.List.swift in Sources */, + D9F3769FA4C4C7508A0CE388 /* SBUFeedNotificationChannelModule.swift in Sources */, + E82E20F8EA2533674503F58C /* SBUBaseChannelModule.Input.swift in Sources */, + D758D4D39E2105CA69493502 /* SBUBaseChannelModule.swift in Sources */, + 629A76C3E133A343D7BD7E18 /* SBUBaseChannelModule.Header.swift in Sources */, + 20A0F7ED95202731B3B706F1 /* SBUOpenChannelModule.List.swift in Sources */, + 5A5AF9D8E52DEDA8773102EF /* SBUOpenChannelModule.Media.swift in Sources */, + 32FEBD22020CD4E292657CA3 /* SBUOpenChannelModule.Input.swift in Sources */, + 9E2104B44A2917F6D2BB24A0 /* SBUOpenChannelModule.Header.swift in Sources */, + 463736BF64584B26B6422E2D /* SBUOpenChannelModule.swift in Sources */, + 35C898BA21587009945F7B48 /* SBUBaseChannelModule.List.swift in Sources */, + BD5C9DAAD95A93A52C916518 /* SBUBaseChannelSettingsModule.Header.swift in Sources */, + C65E5CF5C13D9F07A1EB10FE /* SBUBaseChannelSettingsModule.List.swift in Sources */, + B59A74209B278E9C7208FA3F /* SBUChannelSettingItem.swift in Sources */, + 8B2F74C8A7F82CAD6CF4C813 /* SBUGroupChannelSettingsModule.swift in Sources */, + 34A71C63441341FD42C3863C /* SBUGroupChannelSettingsModule.Header.swift in Sources */, + 74E12E2CC9244692237E46D8 /* SBUGroupChannelSettingsModule.List.swift in Sources */, + 733DBE012CBF279427470798 /* SBUBaseChannelSettingsModule.swift in Sources */, + CC25A0582EBC018EB3989E19 /* SBUOpenChannelSettingsModule.List.swift in Sources */, + 28E47774922D4A5DD7F46C87 /* SBUOpenChannelSettingsModule.swift in Sources */, + 33FBA35E96743CA0309E7E73 /* SBUOpenChannelSettingsModule.Header.swift in Sources */, + 2FC9446525D251FBA1F742A3 /* SBUUserListModule.swift in Sources */, + F14A3FFF8F509997AD3C700D /* SBUUserListModule.List.swift in Sources */, + 674DD5B63C8C03550078951B /* SBUUserListModule.Header.swift in Sources */, + 610C65D08A001E05D8082F0D /* SBUModuleSet.swift in Sources */, + 2F73D3F2D238614FB89D11F1 /* SBUMessageSearchModule.Header.swift in Sources */, + F5136F355EEEFB444B689799 /* SBUMessageSearchModule.List.swift in Sources */, + 8FA2500DCCB283E2F75BDE44 /* SBUMessageSearchModule.swift in Sources */, + E17285E0B5A6BC96528D74FD /* SBUMessageThreadModule.List.swift in Sources */, + 9879CB67F52DE1D5CDA00067 /* SBUMessageThreadModule.swift in Sources */, + 1AF19CF260897AA8EB457C4D /* SBUMessageThreadModule.Input.swift in Sources */, + 459D4ECE7A959AE5164E6AF9 /* SBUMessageThreadModule.Header.swift in Sources */, + 81D144689E2E0D4D38334D4A /* SBUModerationsModule.List.swift in Sources */, + 118C9119DEDDD0780158AF36 /* SBUModerationsModule.swift in Sources */, + E2CECB9DA864A9D18442B477 /* SBUModerationsModule.Header.swift in Sources */, + 0853423F7EB8FA80636CE64D /* SBURegisterOperatorModule.List.swift in Sources */, + D28A846777756DA70AA76E53 /* SBURegisterOperatorModule.Header.swift in Sources */, + 869B5D0C4393E15436626D11 /* SBURegisterOperatorModule.swift in Sources */, + 986AD031E568FF146ED73F5B /* SBUInviteUserModule.List.swift in Sources */, + EFB3535A9F8A469F16ABB02C /* SBUInviteUserModule.swift in Sources */, + 04F9189004FB7585BA47E5B5 /* SBUInviteUserModule.Header.swift in Sources */, + 047F4F51DECFF7423BD47185 /* SBUBaseSelectUserModule.Header.swift in Sources */, + C1786BE092A768ABBFF9EB29 /* SBUBaseSelectUserModule.swift in Sources */, + EEC0D70CCED2F322769373CA /* SBUCreateOpenChannelModule.ProfileInput.swift in Sources */, + 6717F9270C5E972BCE5865B3 /* SBUCreateChannelModule.swift in Sources */, + C0B219EBEFD0E431524EC9C5 /* SBUCreateOpenChannelModule.swift in Sources */, + 4D24D96C0DF7FBEAB1DD8FCE /* SBUCreateOpenChannelModule.Header.swift in Sources */, + B79BA8A3BAE059779DE092CD /* SBUCreateChannelModule.Header.swift in Sources */, + A333B991838310F5CD7FC0F0 /* SBUCreateChannelModule.List.swift in Sources */, + ABDD4B66F4BA70A752C86B1D /* SBUBaseSelectUserModule.List.swift in Sources */, + C37D97CC0EF7E7124273F6F3 /* VoiceMessageStatus.swift in Sources */, + BACAD3A46EDE7A21837BEAEF /* SBUIconSetType.swift in Sources */, + 86AB7D1D9541661027D3FD0A /* SBUEnums.swift in Sources */, + D4E5CC9695C26FF2154E9BEE /* MessageTemplateTestViewController.swift in Sources */, + 91CBB45E5C3A7D9F6A8D5315 /* MessageTemplateParser.swift in Sources */, + 7DF2D3D5F4651D2EAFEFD14F /* MessageTemplateRenderer.swift in Sources */, + 468AE7384E6BDAA08B2C16FB /* CommonProtocols.swift in Sources */, + E08F1AFC55A7C31755D6D402 /* SBUEmojiManager.swift in Sources */, + 53E951C4CFB39637D7046C02 /* SBUCacheManager.Config.swift in Sources */, + 09EB9C063EBDA52408D4FA85 /* SBUCacheManager.File.swift in Sources */, + 4494C9C48752F09FB91F781A /* SBUCacheManager.Template.swift in Sources */, + 15BAFC3F99DF359792234223 /* SBUCacheManager.Image.swift in Sources */, + A4289B597E9F69D130B3CFFB /* SBUCacheManager.swift in Sources */, + C2A9ABD13991E5D977562AD9 /* SBUCacheManager.NotificationSetting.swift in Sources */, + 8DAA47EA36788D2C97D01A95 /* SBUVoicePlayer.swift in Sources */, + 54A0E27E3729EF49D89B5496 /* SBUNotificationChannelManager.swift in Sources */, + 5B4BBC87EB848E478D5FFF03 /* SBUPendingMessageManager.swift in Sources */, + AC3E869BF863E216888A803D /* SBUDownloadManager.swift in Sources */, + 0A76874314C5EDB5CF27503E /* SBUVoiceRecorder.swift in Sources */, + 7F8A068071140B3AC49B138D /* SBUPermissionManager.swift in Sources */, + 44D54B69AA4427E6EA6E7CA0 /* SBUToastManager.swift in Sources */, + 6836CEE764DF31BA33E6D95D /* SBUGlobalCustomParams.swift in Sources */, + FDB7E7DED67AB15DD2E8B63C /* SBUStringSet.Deprecated.swift in Sources */, + C41816EBC8B4D8AF1DF068EC /* SBUDateFormatSet.swift in Sources */, + 7F09704A2781D4A09347D0FD /* SBUConstant.swift in Sources */, + 91F470EAA269360C2C57DA59 /* SBUStringSet.swift in Sources */, + 7E0061099FA15E4F09C70DC7 /* SBUIconSet.swift in Sources */, + D7EE5DDD8DFEDB60B328EFC2 /* SBUColorSet.swift in Sources */, + 65F33F4A16108B591B5BBC3E /* SBUTheme+Type.swift in Sources */, + EF81B28CD363E89D3D8AFB36 /* SBUFontSet.swift in Sources */, + 36551354B7A662BEA62EFEDC /* SBUTheme.swift in Sources */, + 16E2BBE4C5189D9ED5C7EFF2 /* SBUMention.swift in Sources */, + FAC7B4F43439CAEB7CB580D1 /* SBUMessageCache.swift in Sources */, + 36A41030BCC2C122A954D3AE /* SBUCardListData.swift in Sources */, + 37B2E3C0B4AA93B4B3CB99C3 /* SBUUser.swift in Sources */, + 4F5CF97AF96B9478ABAE25BA /* SBUVoiceFileInfo.swift in Sources */, + DE6FEE6382716D515CD38580 /* SBUHighlightMessageInfo.swift in Sources */, + 977953D54CBEF25B57973CF5 /* SBUQuickReplyOptions.swift in Sources */, + A50E2EF5E922E8069027C3B6 /* SBUBaseViewController.swift in Sources */, + 189142FB3B171C806586A3EB /* SBUOpenChannelCell.swift in Sources */, + DA668C9C240B145F74E3FDDB /* SBUGroupChannelCell.swift in Sources */, + B84861F0852D38E0995CBA6D /* SBUBaseChannelCell.swift in Sources */, + 124F9411334DD5B04C18CABB /* SBUBaseChannelListViewController.swift in Sources */, + AAED93AC2C6DAF63A5F1CDA0 /* SBUGroupChannelListViewController.swift in Sources */, + 9CFEB39EF9EE507E10F83844 /* SBUOpenChannelListViewController.swift in Sources */, + C1CAC3BBA699375D6B9ACC6F /* SBUChannelPushSettingCell.swift in Sources */, + 7BC91282F808B902473EA1D3 /* SBUGroupChannelPushSettingsViewController.swift in Sources */, + 65E24546CFDEAE843373C9B6 /* SBUUserMessageTextViewModel.swift in Sources */, + D99DC1AFBD85EBB87DFA8361 /* SBUMessageWebViewModel.swift in Sources */, + 73AA383CA0E2E41709DFE0A5 /* SBUParentMessageInfoReactionView.swift in Sources */, + 69B2DC493B67E96852479AC7 /* SBUReactionCollectionViewCell.swift in Sources */, + C2157B9518814C38D12D8643 /* SBUReactionsViewController.swift in Sources */, + F0DD954DB1EB0E8ECE118CEA /* SBUMessageReactionView.swift in Sources */, + AAA127F239BC9CC257344FE1 /* SBUEmojiListViewController.swift in Sources */, + 040AC00D666FEB82F3FFDB40 /* SBUFeedNotificationChannelViewController.swift in Sources */, + 8BBD05314A9A1ABC32B87F51 /* SBUBaseChannelViewController.swift in Sources */, + 66FE3862AA3392E131E6CE34 /* SBUUserMessageCellParams.swift in Sources */, + C094825D4F9214A818D38C6A /* SBUUnknownMessageCellParams.swift in Sources */, + 80944E51C3343E6EFE341FE9 /* SBUAdminMessageCellParams.swift in Sources */, + A3AE712CDD9E2893481D4C29 /* SBUBaseMessageCellParams.swift in Sources */, + F23E4189FBBFA33512EF5DEC /* SBUFileMessageCellParams.swift in Sources */, + DD9677A3E164868637E4BD2A /* SBUBaseFileContentView.swift in Sources */, + A700689413C6A94E6851A772 /* SBUOpenChannelCommonContentView.swift in Sources */, + F3107EBE647432FDD5806D74 /* SBUVoiceContentView.swift in Sources */, + A5842F5B9667C4FBC7F33129 /* SBUImageContentView.swift in Sources */, + 157C7AAF0965F96BFF92381D /* SBUCommonContentView.swift in Sources */, + EF944F947526E595FC7CEFA4 /* SBUOpenChannelImageContentView.swift in Sources */, + 14D9707E23C9D1C1ABD0F328 /* SBUNotificationCell.swift in Sources */, + 4251991ECE489097D609321B /* SBUFeedNotificationCell.swift in Sources */, + BF19198CF8D628EBDB2DC2B5 /* SBUChatNotificationCell.swift in Sources */, + 2DD6A5A8EDB69E319F1F5193 /* QuotedFileCommonContentView.swift in Sources */, + D35CA7636DDE11B650C80871 /* SBUQuotedBaseMessageView.swift in Sources */, + EF934FE8B266153F2278E5F8 /* SBUThreadInfoView.swift in Sources */, + A7CEC0069CF4635ED0F63B97 /* QuotedFileImageContentView.swift in Sources */, + 07D194B17D376AA739A0C09B /* SBUQuotedFileMessageView.swift in Sources */, + 1083AC925BEBDCC967BBFBBE /* SBUQuotedUserMessageView.swift in Sources */, + FBCACA409CD39894194A71BE /* SBUQuotedBaseMessageViewParams.swift in Sources */, + AC2594682E43936276E57E01 /* SBUCardListViewParams.swift in Sources */, + DA7D7C75D1FF80B279FAB1CC /* SBUCardViewParams.swift in Sources */, + D75C73FE857B2F0DDC646A21 /* SBUCardView.swift in Sources */, + A809E26409FD8039D8AA5A0C /* SBUCardListView.swift in Sources */, + E238BECD7F6B333017F2F88E /* SBUBaseMessageCell.swift in Sources */, + C25F16BCDC478DB4A79E527E /* SBUQuickReplyViewParams.swift in Sources */, + B6A3FEE4121A5F68781DE00B /* SBUQuickReplyOptionView.swift in Sources */, + 6E73591FF7FE836B4DE90A60 /* SBUQuickReplyView.swift in Sources */, + F5FE2DDEDD5F332448432BE7 /* SBUOpenChannelFileMessageCell.swift in Sources */, + 64BBFBF37B320E4536A9B31B /* SBUOpenChannelAdminMessageCell.swift in Sources */, + 3D4817ED4CB1A2D71A4D1E3C /* SBUOpenChannelContentBaseMessageCell.swift in Sources */, + 06ECEB7D5487DA195F0D4221 /* SBUOpenChannelUserMessageCell.swift in Sources */, + D7C1DB36CE7E301DC385A2A4 /* SBUOpenChannelUnknownMessageCell.swift in Sources */, + 0EF5C869A39E9A3AB0FE2C7D /* SBUOpenChannelBaseMessageCell.swift in Sources */, + 5C0B594E63EBCDCB8D5CC574 /* SBUFileMessageCell.swift in Sources */, + 8D347B2C7CDBC98F1ADBD48B /* SBUAdminMessageCell.swift in Sources */, + 62497F263AB61382EF74427B /* SBUContentBaseMessageCell.swift in Sources */, + 73DDCA9CDFF65BDDFA747FEC /* SBUUnknownMessageCell.swift in Sources */, + D2F4D7538277A968EA7A54CA /* SBUUserMessageCell.swift in Sources */, + AE7F4416CFF7E35A0BA05054 /* SBUGroupChannelViewController.swift in Sources */, + 2608EBAA49918C3643D0AF9C /* SBUMentionLimitGuideCell.swift in Sources */, + 96859F6F4ACCAC5131E38CD2 /* SBUSuggestedMentionList.swift in Sources */, + 40BF3A658FCB972817CAFEBE /* SBUQuoteMessageInputView.swift in Sources */, + 501BB478942C93F7FFCA4259 /* SBUMessageInputMode.swift in Sources */, + 425F3420D1FB75CD1F84CE04 /* SBUQuoteMessageInputViewParams.swift in Sources */, + 0545962D8795D49DD7E0336B /* SBUMessageInputView.swift in Sources */, + EE8378EFA7DAE41231A9430F /* SBUMessageStateView.swift in Sources */, + 43C257E0BC1811F69BF7D17B /* SBUMessageProfileView.swift in Sources */, + 8A1FC468C6EBB58DEFE1928A /* SBUUserMessageTextView.swift in Sources */, + C34094CFDD169221DCE5A1A1 /* SBUUserNameView.swift in Sources */, + D924B9B4F1281D992D65C1D0 /* SBUMessageWebView.swift in Sources */, + 2B3F901C52D232B9568A3192 /* SBUMessageDateView.swift in Sources */, + 11DEF4B427846B6B42CBD489 /* SBULinkClickableTextView.swift in Sources */, + E8C907C516F1122C29436245 /* SBUOpenChannelMessageWebView.swift in Sources */, + 4A8B91AD97A07485EF64669C /* SBUSelectableStackView.swift in Sources */, + 3D5BE2677DC8EF2C3E2B2F62 /* SBUNotificationTimelineView.swift in Sources */, + 5D583A33970D3FC6102CAF43 /* SBUFileViewController.swift in Sources */, + 4A76019E77806EABAA2B98F4 /* SBUBaseChannelViewController.Keyboard.swift in Sources */, + B5E3A15C9A112505DD267B9E /* SBUChatNotificationChannelViewController.swift in Sources */, + 7E252D4FAF2F74ACABEAF8C9 /* SBUNewNotificationInfo.swift in Sources */, + 7B64210DDD6C1AE3CCC87BED /* SBUNewMessageInfo.swift in Sources */, + CDB4A65DD0E7D562049C5318 /* SBUOpenChannelViewController.swift in Sources */, + 978F38F55EAA1C272B2C5DB6 /* SBUChannelInfoHeaderView.swift in Sources */, + 27685B0AE48C8153E1023439 /* SBUChannelTitleView.swift in Sources */, + 4DA7E2F08CDCEB82B487979E /* SBUBaseChannelSettingsViewController.swift in Sources */, + 5FF91091B7575AB61CF27CB2 /* SBUOpenChannelSettingsViewController.swift in Sources */, + A66046B502CB0BCA5315A64E /* SBUOpenChannelSettingCell.swift in Sources */, + 3970B9B3562C0E7802CEF7EC /* SBUBaseChannelSettingCell.swift in Sources */, + CF2BB482AAF61E1B6767EBFE /* SBUModerationCell.swift in Sources */, + 30C8B05E1826EA01EC1AEAA6 /* SBUGroupChannelSettingCell.swift in Sources */, + 64DD1B840C1E92493A392F7C /* SBUChannelSettingsChannelInfoView.swift in Sources */, + 8525A13D478D47DD84F45A25 /* SBUGroupChannelSettingsViewController.swift in Sources */, + A5B7E72C6368FCDD74AEF1B8 /* SBUVoiceMessageInputView.swift in Sources */, + FFD7158B2F755A3604CCB37E /* SBUStackView.swift in Sources */, + 1A16645927BDB0FC3506C2FF /* SBUAnimation.swift in Sources */, + 99FD78ED0C79BAA2D22E04C3 /* SBUEmptyView.swift in Sources */, + 2E68F8E06E59941129AE5B87 /* SBUCoverImageView.swift in Sources */, + 7C1A53ABC8487F7EE0B3F830 /* SBUPhotoAccess.swift in Sources */, + EABB428EC757BAABF2C97962 /* SBUPhotoCollectionViewCell.swift in Sources */, + EC35FFE88495FF0A5A38FEE3 /* SBUSelectablePhotoViewController.swift in Sources */, + 904ACA3583B5C738EB64B16B /* SBUCommonItem.swift in Sources */, + E129EE2E158EECC7BF6FD454 /* SBULayoutableButton.swift in Sources */, + B77661C9B01874945E90FC1B /* SBUUserProfileView.swift in Sources */, + 22E71F75DE0526CEF408198E /* SBUNavigationTitleView.swift in Sources */, + 49FA6D946C47B10ACD2AC34A /* SBUNotificationNavigationTitleView.swift in Sources */, + 5C81A470A71CFA952234DE71 /* SBUBarButtonItem.swift in Sources */, + 4A251932DACAABEBBDD7BE9F /* SBUActionSheet.swift in Sources */, + B05DACECB24AA7EDE2961B96 /* SBUNotificationEmptyView.swift in Sources */, + F3E17AF32440E9D991D45EC6 /* SBUAlertView.swift in Sources */, + 042C9635081A44EE150A2CF9 /* SBUMenuSheetViewController.swift in Sources */, + 549D93BAF313A9B9E0EE5C6A /* SBUMenuCell.swift in Sources */, + 9579216D3C35A1B9E61B58C9 /* SBUMenuView.swift in Sources */, + ECE55D66AD8CD16F3C02CD7D /* SBUBottomSheetController.swift in Sources */, + EF14B244C6C439798666D67B /* SBUUnderLineTextField.swift in Sources */, + 5E94D81C79656476D2CF1065 /* SBUUserCell.swift in Sources */, + 1E38327A289906E31C165B2E /* SBUTemplateLabel.swift in Sources */, + D823332F0C4F170C9EEA182A /* SBUMarginView.swift in Sources */, + 6C44C0894E7BE9D28491A344 /* SBUCommonViewControllerSet.swift in Sources */, + 0DE8BACD977927C94C9D39B5 /* SBULoading.swift in Sources */, + A944B2EB121743FB63FEB8E0 /* SBUCollectionViewFlowLayout.swift in Sources */, + 4537D65D3486E290AF853C6B /* SBUUserListViewController.swift in Sources */, + CF18CF7C05E22AC062794995 /* SBUViewControllerSet.swift in Sources */, + A499E0D65FA28C2FC35C23FF /* SBUMessageSearchViewController.swift in Sources */, + C1B4D8EF27D4603AF5B66A19 /* SBUMessageSearchResultCell.swift in Sources */, + 0668F46B4893D6933B00F4D4 /* SBUTableViewCell.swift in Sources */, + E54B381D3B80281E1AD90B28 /* SBUQuoteMessageInputViewProtocol.swift in Sources */, + CA43E23A233D00205D18E6D5 /* SBUMessageCellProtocol.swift in Sources */, + 96DEF3BF271E994351EEE328 /* SBUViewLifeCycle.swift in Sources */, + 392657B703FD4227B7C7DA01 /* SBUQuotedMessageViewProtocol.swift in Sources */, + 40BD7DB18A4FECDDF31EA12A /* SBUView.swift in Sources */, + 7DBD585EEF342A21DAF6D16F /* SBUMessageThreadViewController.swift in Sources */, + CD969A5BABB8B90573C7CF2E /* SBUMessageThreadTitleView.swift in Sources */, + 5E05158AF5E435510EBFD14F /* SBUParentMessageInfoView.swift in Sources */, + 90036F9C88EB982C894056B6 /* SBUModerationsViewController.swift in Sources */, + B7DFD86E79E157AB95319D03 /* SBURegisterOperatorViewController.swift in Sources */, + 9552CD72D86F06D4189166EE /* SBUBaseSelectUserViewController.swift in Sources */, + 000CACD01097469ACB2CAEFB /* SBUInviteUserViewController.swift in Sources */, + AEF09436D953FF270E82FBF8 /* SBUCreateChannelTypeSelector.swift in Sources */, + 4F2131C9018C06A80BAA7955 /* SBUCreateChannelViewController.swift in Sources */, + 8EC57258DFEFDEAD965504B4 /* SBUCreateOpenChannelViewController.swift in Sources */, + E1F16F7DEC6CEBB4D70717F9 /* SBUGlobals.swift in Sources */, + B551FADC2F4EDE8C50E622DE /* SBUTableViewCell.Unavailable.swift in Sources */, + D048F9FD4D6D63D10D50D906 /* SBUChannelListViewController.Deprecated.swift in Sources */, + E70C161220E79DEFC127A173 /* SBUBaseMessageCellParams.Deprecated.swift in Sources */, + 253D0D993938598848D32AA0 /* SBUQuotedBaseMessageViewParams.Deprecated.swift in Sources */, + E8B85EFE3B8B2CFB1C3D57D7 /* SBUContentBaseMessageCell.Deprecated.swift in Sources */, + 48889795BF90523C6409984A /* SBUBaseChannelViewController.Deprecated.swift in Sources */, + A4B8C416633C79F6E8533EED /* SBUGroupChannelViewController.Unavailable.swift in Sources */, + 43BA794B75B76D296E77E067 /* SBUOpenChannelViewController.Deprecated.swift in Sources */, + 4F4B4F5AFE50055AE1C92566 /* SBUOpenChannelViewController.Unavailable.swift in Sources */, + 8A5032533CD26E8898AA8B1E /* SBUGroupChannelViewController.Deprecated.swift in Sources */, + E23A58AB998CA33E9C3249C9 /* SBUBaseChannelViewController.Unavailable.swift in Sources */, + 729E7DC45EC8F9120B66754F /* SBUBaseChannelSettingsViewController.Deprecated.swift in Sources */, + 3A0D20C2B8AED5D983A6B5F6 /* SBUBaseViewController.Unavailable.swift in Sources */, + C6DA012E3BF72E8600C213A6 /* SBUMemberListViewController.Deprecated.swift in Sources */, + C183533F3EDD4731619CD079 /* SBUBaseSelectUserViewController.Deprecated.swift in Sources */, + 073528B58D6C1FEB80F792C2 /* SBUMessageSearchViewController.Deprecated.swift in Sources */, + E5885E1F4F4E1C6DAA1E111F /* SBUView.Unavaliable.swift in Sources */, + 59BA55190BFCADC3ABA8D2D6 /* SBUGlobals.Deprecated.swift in Sources */, + 4EFE2B98E8607E454CDB8FB7 /* SBUCoverImageView.Deprecated.swift in Sources */, + 377CCEE2C0EF4BF2CA1E9136 /* SBUModerationsViewModel.Deprecated.swift in Sources */, + 683F872E80FD02128D7FEDBE /* SBUModerationsViewController.Deprecated.swift in Sources */, + 181961AB737738707FF49A17 /* SBUTheme.Deprecated.swift in Sources */, + 91F8F344608EF48FB10D02FE /* SBUCreateChannelViewController.Deprecated.swift in Sources */, + AEBA9EB71976E93CE890ADDF /* SBUModuleSet.Deprecated.swift in Sources */, + CC593B7D202C28684FD1DC1A /* SBUEnums.Deprecated.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3093,7 +3125,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MARKETING_VERSION = 3.6.2; + MARKETING_VERSION = 3.7.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -3148,7 +3180,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MARKETING_VERSION = 3.6.2; + MARKETING_VERSION = 3.7.0; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; SDKROOT = iphoneos; diff --git a/SendBirdUIKit.podspec b/SendBirdUIKit.podspec index 09b4835b6..c10e7e3ca 100644 --- a/SendBirdUIKit.podspec +++ b/SendBirdUIKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SendBirdUIKit" - s.version = "3.6.2" + s.version = "3.7.0-beta.0" s.summary = "UIKit based on SendbirdChatSDK" s.description = "Sendbird UIKit is a framework composed of basic UI components based on SendbirdChatSDK." s.homepage = "https://sendbird.com" diff --git a/Sources/Configurations/Base.xcconfig b/Sources/Configurations/Base.xcconfig index c5519d339..9ea7846e1 100644 --- a/Sources/Configurations/Base.xcconfig +++ b/Sources/Configurations/Base.xcconfig @@ -9,5 +9,5 @@ // Configuration settings file format documentation can be found at: // https://help.apple.com/xcode/#/dev745c5c974 -SBU_APP_VERSION = 3.6.2 +SBU_APP_VERSION = 3.7.0 SENDBIRD_CHAT_SDK_VERSION = 4.9.5 diff --git a/Sources/Extension/UserMessage+SBUIKit.swift b/Sources/Extension/UserMessage+SBUIKit.swift new file mode 100644 index 000000000..f7c0ac342 --- /dev/null +++ b/Sources/Extension/UserMessage+SBUIKit.swift @@ -0,0 +1,26 @@ +// +// UserMessage+SBUIKit.swift +// SendbirdUIKit +// +// Created by Jaesung Lee on 2023/07/13. +// Copyright © 2023 Sendbird, Inc. All rights reserved. +// + +import Foundation +import SendbirdChatSDK + +extension UserMessage { + // MARK: - Quick Reply + public var quickReply: SBUQuickReplyOptions? { + guard let data = self.data.data(using: .utf8) else { return nil } + let options = try? JSONDecoder().decode(SBUQuickReplyOptions.self, from: data) + return options + } + + // MARK: - Card List + public var cardListData: [String: Any]? { + guard let data = self.data.data(using: .utf8) else { return nil } + let cardListData = try? JSONDecoder().decode([String: String].self, from: data) + return cardListData + } +} diff --git a/Sources/Model/SBUCardListData.swift b/Sources/Model/SBUCardListData.swift new file mode 100644 index 000000000..8085f9ffa --- /dev/null +++ b/Sources/Model/SBUCardListData.swift @@ -0,0 +1,22 @@ +// +// SBUCardListData.swift +// SendbirdUIKit +// +// Created by Jaesung Lee on 2023/07/14. +// Copyright © 2023 Sendbird, Inc. All rights reserved. +// + +import Foundation + +/// The generic typed data model that is used to configure the card list view. +/// - Important: Please define your data model `CardData`, which represents the type of each element in ``recommends`` inside ``SBUCardListData``. `CardData` must conform to `Codable`. +/// ```swift +/// var cardListData: SBUCardListData<{MyDataType}> +/// print(type(of: cardListData.recommends)) // [{MyDataType}] +/// ``` +/// - Since: 3.7.0 +public struct SBUCardListData: Codable { + /// The array of the data used for configuring ``SBUCardListView``. + /// - Since: 3.7.0 + public let recommends: [CardData] +} diff --git a/Sources/Model/SBUQuickReplyOptions.swift b/Sources/Model/SBUQuickReplyOptions.swift new file mode 100644 index 000000000..ed026ce41 --- /dev/null +++ b/Sources/Model/SBUQuickReplyOptions.swift @@ -0,0 +1,17 @@ +// +// SBUQuickReplyOptions.swift +// SendbirdUIKit +// +// Created by Jaesung Lee on 2023/07/13. +// Copyright © 2023 Sendbird, Inc. All rights reserved. +// + +import Foundation + +/// The quick reply options that are used for ``SBUQuickReplyView`` +/// - Since: 3.7.0 +public struct SBUQuickReplyOptions: Codable { + /// The options that are used for configuring ``SBUQuickReplyView``. e.g., `["How are you", "How's the weather today"]` + /// - Since: 3.7.0 + public let options: [String] +} diff --git a/Sources/Module/Channel/GroupChannel/SBUGroupChannelModule.List.swift b/Sources/Module/Channel/GroupChannel/SBUGroupChannelModule.List.swift index 93e1c6f7e..cb3dea91c 100644 --- a/Sources/Module/Channel/GroupChannel/SBUGroupChannelModule.List.swift +++ b/Sources/Module/Channel/GroupChannel/SBUGroupChannelModule.List.swift @@ -44,6 +44,12 @@ public protocol SBUGroupChannelModuleListDelegate: SBUBaseChannelModuleListDeleg /// - Parameter threadInfoView: The `SBUThreadInfoView` object from the tapped thread info. /// - Since: 3.3.0 func groupChannelModuleDidTapThreadInfoView(_ threadInfoView: SBUThreadInfoView) + + /// Called when one of the quick reply options is tapped. + /// - Parameters: + /// - text: The reply text that is selected by user + /// - Since: 3.7.0 + func groupChannelModule(_ listComponent: SBUGroupChannelModule.List, didSelectQuickReplyOption text: String) } /// Methods to get data source for list component in a group channel. @@ -406,6 +412,7 @@ extension SBUGroupChannelModule { // User message case let (userMessage, userMessageCell) as (UserMessage, SBUUserMessageCell): + let isLatestUserMessage = userMessage.messageId == fullMessageList.filter({ $0.sender != nil }).first?.messageId let configuration = SBUUserMessageCellParams( message: userMessage, hideDateView: isSameDay, @@ -414,12 +421,17 @@ extension SBUGroupChannelModule { receiptState: receiptState, useReaction: useReaction, withTextView: true, - joinedAt: self.channel?.joinedAt ?? 0 + joinedAt: self.channel?.joinedAt ?? 0, + shouldHideQuickReply: !isLatestUserMessage ) userMessageCell.configure(with: configuration) userMessageCell.configure(highlightInfo: self.highlightInfo) (userMessageCell.quotedMessageView as? SBUQuotedBaseMessageView)?.delegate = self (userMessageCell.threadInfoView as? SBUThreadInfoView)?.delegate = self + userMessageCell.quickReplySelectHandler = { optionView in + guard let text = optionView.text else { return } + self.delegate?.groupChannelModule(self, didSelectQuickReplyOption: text) + } self.setMessageCellAnimation(userMessageCell, message: userMessage, indexPath: indexPath) self.setMessageCellGestures(userMessageCell, message: userMessage, indexPath: indexPath) diff --git a/Sources/SBUGlobalCustomParams.swift b/Sources/SBUGlobalCustomParams.swift index 3dd47056d..7308c6c4a 100644 --- a/Sources/SBUGlobalCustomParams.swift +++ b/Sources/SBUGlobalCustomParams.swift @@ -147,4 +147,36 @@ public class SBUGlobalCustomParams { /// ``` /// - Since: 1.2.2 public static var messageListParamsBuilder: ((_ params: MessageListParams?) -> Void)? + + // MARK: - Card List + /// The closure that has `message.data` as a parameter named `messageData` and returns ``SBUCardViewParams`` array. + /// - Important: Use ``SBUCardListData`` to parse the value for `"recommends"` key in `messageData`. ``SBUCardListData`` uses generic type for ``SBUCardListData/recommends`` and the type should conform to `Codable` + /// - Note: When the message is sent by the chat bot, use `lowercased()` to `messageData` because the case-sensitive is not guaranteed. + /// - Parameter messageData: The string value that represents `message.data`. Use ``SBUCardListData`` to parse the value for `"recommends"` key in `messageData`. + /// - Returns: The array of ``SBUCardViewParams``. + /// ```swift + /// // `SBUCardListData` --> `[Event]` --> `[SBUCardViewParams]` + /// SBUGlobalCustomParams.cardViewParamsCollectionBuilder = { messageData in + /// // Use `SBUCardListData` generic struct when parsing the `messageData` + /// // When the message is sent by the chat bot, use `lowercased()` to `messageData` because the case-sensitive is not guaranteed. + /// let cardListData = try JSONDecoder().decode( + /// SBUCardListData<{DataType}>.self, + /// from: messageData.data(using: .utf8)! + /// ) + /// let recommends = cardListData.recommends // array of {DataType} + /// let items = recommends.compactMap { recommend in // type of {DataType} + /// SBUCardViewParams( + /// imageURL: {imageURL}, + /// title: {title}, + /// subtitle: {subtitle}, + /// description: {description}, + /// link: {link}} + /// ) + /// } + /// return items + /// } + /// ``` + /// - SeeAlso: ``SBUCardListData`` + /// - Since: 3.7.0 + public static var cardViewParamsCollectionBuilder: ((_ messageData: String) throws -> [SBUCardViewParams])? } diff --git a/Sources/SendbirdUI.swift b/Sources/SendbirdUI.swift index 7d5a5368b..ff2560888 100644 --- a/Sources/SendbirdUI.swift +++ b/Sources/SendbirdUI.swift @@ -159,7 +159,12 @@ public class SendbirdUI { let userId = currentUser.userId.trimmingCharacters(in: .whitespacesAndNewlines) let nickname = currentUser.nickname?.trimmingCharacters(in: .whitespacesAndNewlines) - SendbirdChat.connect(userId: userId, authToken: SBUGlobals.accessToken) { [userId, nickname] user, error in + + // TODO: Reset when the test server is no longer needed + SendbirdChat.connect( + userId: userId, + authToken: SBUGlobals.accessToken + ) { [userId, nickname] user, error in defer { SBUEmojiManager.loadAllEmojis { _, _ in } } diff --git a/Sources/Theme/SBUTheme.swift b/Sources/Theme/SBUTheme.swift index 189ea6ad6..fb23a4fbf 100644 --- a/Sources/Theme/SBUTheme.swift +++ b/Sources/Theme/SBUTheme.swift @@ -1386,6 +1386,9 @@ public class SBUMessageCellTheme { theme.playerPlayButtonTintColor = SBUColorSet.primary300 theme.playerPauseButtonTintColor = SBUColorSet.primary300 + // Card view + theme.selectableTitleFont = SBUFontSet.button2 + return theme } @@ -1524,6 +1527,9 @@ public class SBUMessageCellTheme { theme.playerPlayButtonTintColor = SBUColorSet.primary200 theme.playerPauseButtonTintColor = SBUColorSet.primary200 + // Card view + theme.selectableTitleFont = SBUFontSet.button2 + return theme } @@ -1662,6 +1668,9 @@ public class SBUMessageCellTheme { theme.playerPlayButtonTintColor = SBUColorSet.primary200 theme.playerPauseButtonTintColor = SBUColorSet.primary200 + // Card view + theme.selectableTitleFont = SBUFontSet.button2 + return theme } @@ -1755,7 +1764,8 @@ public class SBUMessageCellTheme { statusButtonBackgroundColor: UIColor = SBUColorSet.background50, loadingButtonTintColor: UIColor = SBUColorSet.primary200, playButtonTintColor: UIColor = SBUColorSet.primary300, - pauseButtonTintColor: UIColor = SBUColorSet.primary300 + pauseButtonTintColor: UIColor = SBUColorSet.primary300, + selectableTitleFont: UIFont = SBUFontSet.button2 ) { self.backgroundColor = backgroundColor @@ -1861,6 +1871,9 @@ public class SBUMessageCellTheme { self.playerLoadingButtonTintColor = loadingButtonTintColor self.playerPlayButtonTintColor = playButtonTintColor self.playerPauseButtonTintColor = pauseButtonTintColor + + // MARK: Card view + self.selectableTitleFont = selectableTitleFont } public var backgroundColor: UIColor @@ -2037,6 +2050,9 @@ public class SBUMessageCellTheme { public var playerLoadingButtonTintColor: UIColor public var playerPlayButtonTintColor: UIColor public var playerPauseButtonTintColor: UIColor + + // MARK: - Card view + public var selectableTitleFont: UIFont } // MARK: - User List Theme diff --git a/Sources/View/Channel/MessageCell/Carousel/ViewParams/SBUCardListViewParams.swift b/Sources/View/Channel/MessageCell/Carousel/ViewParams/SBUCardListViewParams.swift new file mode 100644 index 000000000..612484d78 --- /dev/null +++ b/Sources/View/Channel/MessageCell/Carousel/ViewParams/SBUCardListViewParams.swift @@ -0,0 +1,26 @@ +// +// SBUCardListViewParams.swift +// SendbirdUIKit +// +// Created by Jaesung Lee on 2023/07/13. +// Copyright © 2023 Sendbird, Inc. All rights reserved. +// + +import Foundation + +/// The data model used for configuring ``SBUCardListView``. +/// - Since: 3.7.0 +public struct SBUCardListViewParams { + /// The ID of message that contains card list view + /// - Since: 3.7.0 + public let messageId: Int64 + /// The params for each card view + /// - Since: 3.7.0 + public let items: [SBUCardViewParams] + /// Initializes ``SBUCardListViewParams``. + /// - Since: 3.7.0 + public init(messageId: Int64, items: [SBUCardViewParams]) { + self.messageId = messageId + self.items = items + } +} diff --git a/Sources/View/Channel/MessageCell/Carousel/ViewParams/SBUCardViewParams.swift b/Sources/View/Channel/MessageCell/Carousel/ViewParams/SBUCardViewParams.swift new file mode 100644 index 000000000..666b7ed7b --- /dev/null +++ b/Sources/View/Channel/MessageCell/Carousel/ViewParams/SBUCardViewParams.swift @@ -0,0 +1,49 @@ +// +// SBUCardViewParams.swift +// SendbirdUIKit +// +// Created by Jaesung Lee on 2023/07/13. +// Copyright © 2023 Sendbird, Inc. All rights reserved. +// + +import Foundation + +/// The data model used for configuring ``SBUCardView``. +/// - Since: 3.7.0 +public struct SBUCardViewParams { + /// The URL string for image + /// - Since: 3.7.0 + public let imageURL: String? + /// The title of the card + /// - Since: 3.7.0 + public let title: String? + /// The subtitle of the card + /// - Since: 3.7.0 + public let subtitle: String? + /// The description of the card + /// - Since: 3.7.0 + public let description: String? + /// The link that is used with `title` + /// - Since: 3.7.0 + public let link: String? + + /// If it's `true`, it has the link. + /// - Since: 3.7.0 + public var hasLink: Bool { link != nil } + + /// Initializes ``SBUCardViewParams``. + /// - Since: 3.7.0 + public init( + imageURL: String? = nil, + title: String? = nil, + subtitle: String? = nil, + description: String? = nil, + link: String? = nil + ) { + self.imageURL = imageURL + self.title = title + self.subtitle = subtitle + self.description = description + self.link = link + } +} diff --git a/Sources/View/Channel/MessageCell/Carousel/Views/SBUCardListView.swift b/Sources/View/Channel/MessageCell/Carousel/Views/SBUCardListView.swift new file mode 100644 index 000000000..839f76c85 --- /dev/null +++ b/Sources/View/Channel/MessageCell/Carousel/Views/SBUCardListView.swift @@ -0,0 +1,103 @@ +// +// SBUCardListView.swift +// SendbirdUIKit +// +// Created by Jaesung Lee on 2023/07/13. +// Copyright © 2023 Sendbird, Inc. All rights reserved. +// + +import UIKit +import SendbirdChatSDK + +public class SBUCardListView: SBUView { + public struct Metric { + public static var maxWidth = 258.0 + } + + // MARK: - Properties + /// The stack view that contains the list of ``SBUCardView`` + /// - Since: 3.7.0 + public var stackView: UIStackView = SBUStackView( + axis: .vertical, + alignment: .fill, + spacing: 8 + ) + + /// The view to provide top spacing to the ``stackView`` + /// - Since: 3.7.0 + public var topSpacer: UIView = { + let spacer = UIView() + spacer.sbu_constraint(height: 8) + return spacer + }() + + /// (Read-only) The array of ``SBUCardViewParams`` object returned by ``params`` + /// - Since: 3.7.0 + public var items: [SBUCardViewParams] { + self.params?.items ?? [] + } + + /// (Read-only) The ID of the message object returned by ``params`` + /// - Since: 3.7.0 + public var messageId: Int64? { + self.params?.messageId + } + + /// The data structure for ``SBUCardListViewParams``. Please use ``configure(with:)`` to update ``params`` + /// - Since: 3.7.0 + public private(set) var params: SBUCardListViewParams? + + // MARK: - Sendbird UIKit Life Cycle + + public override func setupViews() { + super.setupViews() + + let itemViews = self.createCardViews(items: self.items) + self.stackView.setVStack(itemViews) + self.stackView.insertArrangedSubview(self.topSpacer, at: 0) + self.addSubview(stackView) + } + + public override func setupLayouts() { + super.setupLayouts() + + self.sbu_constraint_lessThan(width: Metric.maxWidth) + + self.stackView + .sbu_constraint(equalTo: self, leading: 0, trailing: 0, top: 0, bottom: 0) + } + + public override func setupStyles() { + super.setupStyles() + + self.backgroundColor = .clear + self.stackView.backgroundColor = .clear + } + + /// Updates UI with ``SBUCardListViewParams`` object. + /// - Parameter configuration: ``SBUCardListViewParams`` object. + /// - Note: This method updates ``params`` and calls ``setupViews()``, ``setupLayouts()`` and ``setupStyles()`` + /// - Since: 3.7.0 + public func configure(with configuration: SBUCardListViewParams) { + self.params = configuration + + self.setupViews() + self.setupLayouts() + self.setupStyles() + + self.layoutIfNeeded() + } + + /// Creates ``SBUCardView`` instances with ``SBUCardViewParams``. + /// - Parameter items: The array of ``SBUCardViewParams``. + /// - Returns: The array of ``SBUCardView`` instances. + /// - Since: 3.7.0 + public func createCardViews(items: [SBUCardViewParams]) -> [SBUCardView] { + let itemViews = items.compactMap { item in + let view = SBUCardView() + view.configure(with: item) + return view + } + return itemViews + } +} diff --git a/Sources/View/Channel/MessageCell/Carousel/Views/SBUCardView.swift b/Sources/View/Channel/MessageCell/Carousel/Views/SBUCardView.swift new file mode 100644 index 000000000..7ff8b96b2 --- /dev/null +++ b/Sources/View/Channel/MessageCell/Carousel/Views/SBUCardView.swift @@ -0,0 +1,222 @@ +// +// SBUCardView.swift +// SendbirdUIKit +// +// Created by Jaesung Lee on 2023/07/13. +// Copyright © 2023 Sendbird, Inc. All rights reserved. +// + +import UIKit + +public class SBUCardView: SBUView { + public struct Metric { + public static var maxWidth = 258.0 + public static var textMinWidth = 10.0 + public static var imageSize = 40.0 + } + + // MARK: - Properties + /// The theme for ``SBUCardView`` that is type of ``SBUMessageCellTheme`` + /// - Since: 3.7.0 + public var theme: SBUMessageCellTheme = SBUTheme.messageCellTheme + + /// The URL of the image on the card. It's returned by ``SBUCardViewParams`` + /// - Since: 3.7.0 + public var imageURL: String? { self.params?.imageURL } + /// The title of the card. It's returned by ``SBUCardViewParams`` + /// - Since: 3.7.0 + public var title: String? { self.params?.title } + /// The subtitle of the card. It's returned by ``SBUCardViewParams`` + /// - Since: 3.7.0 + public var subtitle: String? { self.params?.subtitle } + /// The description of the card. It's returned by ``SBUCardViewParams`` + /// - Since: 3.7.0 + public var text: String? { self.params?.description } + /// The link of the card. It's returned by ``SBUCardViewParams`` + /// - Since: 3.7.0 + public var link: String? { self.params?.link } + + /// The data structure for ``SBUCardViewParams`` that is used for UI. Please use ``configure(with:)`` to update ``params`` + /// - Since: 3.7.0 + public private(set) var params: SBUCardViewParams? + + /// ``SBUStackView`` instance. The default value is a vertical stack view that contains ``mainInfoStackView`` and ``descriptionTextView`` + /// - Since: 3.7.0 + public var contentStackView = SBUStackView( + axis: .vertical, + alignment: .leading, + spacing: 0 + ) + /// ``SBUStackView`` instance. The default value is a horizontal stack view that contains ``imageView`` and ``titleStackView`` + /// - Since: 3.7.0 + public var mainInfoStackView = SBUStackView( + axis: .horizontal, + alignment: .top, + spacing: 12 + ) + + /// ``SBUStackView`` instance. The default value is a vertical stack view that contains ``titleLabel`` and ``subtitleLabel`` + /// - Since: 3.7.0 + public var titleStackView = SBUStackView( + axis: .vertical, + alignment: .leading, + spacing: 4 + ) + + /// The label that represents ``titleLabel`` + /// - Since: 3.7.0 + public var titleLabel = UILabel() + + /// The label that represents ``subtitle`` + /// - Since: 3.7.0 + public var subtitleLabel = UILabel() + + /// The image view that loads image with ``imageURL`` + /// - Since: 3.7.0 + public lazy var imageView: UIImageView = { + let imageView = UIImageView() + imageView.clipsToBounds = true + imageView.contentMode = .scaleAspectFill + return imageView + }() + + /// The text view that represents ``text`` + /// - Since: 3.7.0 + public var descriptionTextView: UITextView = { + let textView = UITextView() + textView.textAlignment = .left + textView.showsVerticalScrollIndicator = false + textView.showsHorizontalScrollIndicator = false + textView.isScrollEnabled = false + textView.isEditable = false + textView.isSelectable = false + textView.textContainer.lineFragmentPadding = 0 + textView.textContainerInset = .init(top: 12, left: 12, bottom: 12, right: 12) + + return textView + }() + + public var textLeftConstraint: NSLayoutConstraint? + public var textRightConstraint: NSLayoutConstraint? + + private var loadImageSession: URLSessionTask? { + willSet { + loadImageSession?.cancel() + } + } + + public override func setupViews() { + super.setupViews() + + self.imageView.isHidden = true + self.titleLabel.isHidden = self.title == nil + self.subtitleLabel.isHidden = self.subtitle == nil + self.descriptionTextView.isHidden = self.text == nil + + self.titleLabel.numberOfLines = 0 + self.subtitleLabel.numberOfLines = 0 + + self.contentStackView.setVStack([ + self.mainInfoStackView.setHStack([ + self.imageView, + self.titleStackView.setVStack([ + self.titleLabel, + self.subtitleLabel + ]) + ]), + self.descriptionTextView + ]) + + self.addSubview(contentStackView) + } + + public override func setupLayouts() { + super.setupLayouts() + + self.contentStackView + .sbu_constraint(equalTo: self, leading: 0, trailing: 0, top: 0, bottom: 0) + + self.mainInfoStackView.layoutMargins = .init(top: 12, left: 12, bottom: 12, right: 12) + self.mainInfoStackView.isLayoutMarginsRelativeArrangement = true + + let textHeightConstraint = self.descriptionTextView.heightAnchor.constraint( + greaterThanOrEqualToConstant: 16 + ) + NSLayoutConstraint.activate([ + textHeightConstraint + ]) + self.descriptionTextView + .sbu_constraint(equalTo: self.contentStackView, left: 0, right: 0) + + self.imageView + .sbu_constraint(width: Metric.imageSize, height: Metric.imageSize) + } + + public override func setupStyles() { + super.setupStyles() + + self.backgroundColor = self.theme.backgroundColor + self.layer.borderColor = self.theme.leftBackgroundColor.cgColor + self.layer.borderWidth = 1 + self.layer.cornerRadius = 16 + self.clipsToBounds = true + + self.imageView.layer.cornerRadius = Metric.imageSize / 2 + + self.titleLabel.textColor = self.params?.hasLink == true + ? self.theme.linkColor + : self.theme.userMessageLeftTextColor + self.titleLabel.font = self.theme.selectableTitleFont + + self.subtitleLabel.textColor = self.theme.userMessageLeftTextColor + self.subtitleLabel.font = self.theme.userMessageFont + + self.descriptionTextView.backgroundColor = self.theme.leftBackgroundColor + self.descriptionTextView.textColor = self.theme.userMessageLeftTextColor + self.descriptionTextView.font = self.theme.userMessageFont + } + + public override func setupActions() { + super.setupActions() + + if self.params?.hasLink == true { + let tapGesture = UITapGestureRecognizer(target: self, action: #selector(openURL)) + self.titleLabel.isUserInteractionEnabled = true + self.titleLabel.addGestureRecognizer(tapGesture) + } + } + + /// Updates UI with ``SBUCardViewParams`` object and loads image if ``imageURL`` has a value. + /// - Note: It updates ``params`` and calls ``setupViews()``, ``setupLayouts()``, ``setupStyles()`` and ``setupActions()``. + /// - Since: 3.7.0 + public func configure(with configuration: SBUCardViewParams) { + self.params = configuration + + self.setupViews() + self.setupLayouts() + self.setupStyles() + self.setupActions() + + self.layoutIfNeeded() + + if let imageURL = self.imageURL { + self.loadImageSession = self.imageView.loadImage(urlString: imageURL) { onSucceed in + self.imageView.isHidden = !onSucceed + } + } + + self.titleLabel.text = self.title + self.subtitleLabel.text = self.subtitle + self.descriptionTextView.text = self.text + } + + /// Opens URL with (``SBUCardViewParams/link``) + /// - Since: 3.7.0 + @objc + public func openURL() { + guard let urlString = self.params?.link else { return } + guard let url = URL(string: urlString) else { return } + guard UIApplication.shared.canOpenURL(url) else { return } + url.open() + } +} diff --git a/Sources/View/Channel/MessageCell/MessageCellParams/SBUUserMessageCellParams.swift b/Sources/View/Channel/MessageCell/MessageCellParams/SBUUserMessageCellParams.swift index 4f01a448c..b4ef69cda 100644 --- a/Sources/View/Channel/MessageCell/MessageCellParams/SBUUserMessageCellParams.swift +++ b/Sources/View/Channel/MessageCell/MessageCellParams/SBUUserMessageCellParams.swift @@ -14,11 +14,14 @@ public class SBUUserMessageCellParams: SBUBaseMessageCellParams { } public let useReaction: Bool public let withTextView: Bool + /// The boolead value to indicates that the message cell should hide quick reply. If it's `true`, never show the quick reply view even the `UserMessage/data` has the reply option values. + public let shouldHideQuickReply: Bool - public init(message: UserMessage, hideDateView: Bool, useMessagePosition: Bool, groupPosition: MessageGroupPosition = .none, receiptState: SBUMessageReceiptState = .none, useReaction: Bool = false, withTextView: Bool, isThreadMessage: Bool = false, joinedAt: Int64 = 0) { + public init(message: UserMessage, hideDateView: Bool, useMessagePosition: Bool, groupPosition: MessageGroupPosition = .none, receiptState: SBUMessageReceiptState = .none, useReaction: Bool = false, withTextView: Bool, isThreadMessage: Bool = false, joinedAt: Int64 = 0, shouldHideQuickReply: Bool = true) { self.useReaction = useReaction self.withTextView = withTextView + self.shouldHideQuickReply = shouldHideQuickReply var messagePosition: MessagePosition = .left if useMessagePosition { diff --git a/Sources/View/Channel/MessageCell/QuickReply/ViewParams/SBUQuickReplyViewParams.swift b/Sources/View/Channel/MessageCell/QuickReply/ViewParams/SBUQuickReplyViewParams.swift new file mode 100644 index 000000000..a52da622c --- /dev/null +++ b/Sources/View/Channel/MessageCell/QuickReply/ViewParams/SBUQuickReplyViewParams.swift @@ -0,0 +1,30 @@ +// +// SBUQuickReplyViewParams.swift +// SendbirdUIKit +// +// Created by Jaesung Lee on 2023/07/11. +// Copyright © 2023 Sendbird, Inc. All rights reserved. +// + +import Foundation +import SendbirdChatSDK + +/// The data model used for configuring ``SBUQuickReplyView``. +/// - Since: 3.7.0 +public struct SBUQuickReplyViewParams { + // MARK: - Properties + /// The ID of the message that provides quick reply. + /// - Since: 3.7.0 + public let messageId: Int64 + /// The list of the reply options. + /// - Since: 3.7.0 + public let replyOptions: [String] + + // MARK: - Initializer + /// Initializes ``SBUQuickReplyViewParams``. + /// - Since: 3.7.0 + public init(messageId: Int64, replyOptions: [String]) { + self.messageId = messageId + self.replyOptions = replyOptions + } +} diff --git a/Sources/View/Channel/MessageCell/QuickReply/Views/SBUQuickReplyOptionView.swift b/Sources/View/Channel/MessageCell/QuickReply/Views/SBUQuickReplyOptionView.swift new file mode 100644 index 000000000..c9c20fb13 --- /dev/null +++ b/Sources/View/Channel/MessageCell/QuickReply/Views/SBUQuickReplyOptionView.swift @@ -0,0 +1,122 @@ +// +// SBUQuickReplyOptionView.swift +// SendbirdUIKit +// +// Created by Jaesung Lee on 2023/07/11. +// Copyright © 2023 Sendbird, Inc. All rights reserved. +// + +import UIKit +import SendbirdChatSDK + +public protocol SBUQuickReplyOptionViewDelegate: AnyObject { + /// Called when `optionView` is selected. + /// - Parameter optionView: The selected ``SBUQuickReplyOptionView`` object + func quickReplyOptionViewDidSelect(_ optionView: SBUQuickReplyOptionView) +} + +public class SBUQuickReplyOptionView: SBUView { + // MARK: - Properties + /// The theme for ``SBUQuickReplyOptionView`` that is type of ``SBUMessageCellTheme``. + /// - Since: 3.7.0 + public var theme: SBUMessageCellTheme = SBUTheme.messageCellTheme + + /// The selectable stack view. The default value contains ``textView`` as arranged subview. + /// - Since: 3.7.0 + public var selectableStackView = SBUSelectableStackView() + + /// The view that shows the reply option text. + /// - Since: 3.7.0 + public var textView: UIView = SBUUserMessageTextView() + + /// The text of the reply option. + /// To update the text, use ``SBUQuickReplyOptionView/configure(with:delegate:)`` + /// ```swift + /// view.configure(with: "Another option") + /// ``` + /// - Since: 3.7.0 + public private(set) var text: String? + + /// The delegate that is type of ``SBUQuickReplyOptionViewDelegate`` + /// ```swift + /// view.delegate = self // `self` conforms to `SBUQuickReplyOptionViewDelegate` + /// // or + /// view.configure(with: "Another option", delegate: self) + /// ``` + /// - Since: 3.7.0 + public weak var delegate: SBUQuickReplyOptionViewDelegate? + + // MARK: - Sendbird UIKit Life Cycle + public override func setupViews() { + super.setupViews() + + self.selectableStackView.isSelected = false + self.selectableStackView.position = .right + self.selectableStackView.stackView.alignment = .trailing + + self.selectableStackView.setStack([ + self.textView + ]) + self.addSubview(selectableStackView) + } + + public override func setupLayouts() { + super.setupLayouts() + + self.selectableStackView + .sbu_constraint(equalTo: self, leading: 0, trailing: 0, top: 0, bottom: 0) + } + + public override func setupStyles() { + super.setupStyles() + + self.selectableStackView.layer.cornerRadius = 16 + self.selectableStackView.layer.borderWidth = 1 + self.selectableStackView.layer.borderColor = self.theme.rightBackgroundColor.cgColor + self.selectableStackView.rightPressedBackgroundColor = self.theme.leftBackgroundColor + self.selectableStackView.setupStyles() + } + + public override func setupActions() { + super.setupActions() + + let tapRecognizer = UITapGestureRecognizer( + target: self, + action: #selector(self.onSelectOption) + ) + self.textView.addGestureRecognizer(tapRecognizer) + } + + /// Calls ``SBUQuickReplyOptionViewDelegate/quickReplyOptionViewDidSelect(_:)`` + /// - NOTE: If ``text`` is `nil`, it won't invoke the delegate method. + /// - Since: 3.7.0 + @objc + public func onSelectOption() { + guard self.text != nil else { return } + self.selectableStackView.isSelected = true + self.delegate?.quickReplyOptionViewDidSelect(self) + } + + // MARK: - Configure + /// Configure ``SBUQuickReplyOptionView`` with `optionText`. + /// - Since: 3.7.0 + public func configure(with optionText: String, delegate: SBUQuickReplyOptionViewDelegate? = nil) { + self.text = optionText + self.delegate = delegate + + self.setupViews() + self.setupLayouts() + self.setupStyles() + self.setupActions() + + let textViewModel = SBUUserMessageTextViewModel( + message: nil, + position: .right, + text: optionText, + textColor: self.theme.rightBackgroundColor + ) + (self.textView as? SBUUserMessageTextView)?.configure(model: textViewModel) + + self.layoutIfNeeded() + } +} diff --git a/Sources/View/Channel/MessageCell/QuickReply/Views/SBUQuickReplyView.swift b/Sources/View/Channel/MessageCell/QuickReply/Views/SBUQuickReplyView.swift new file mode 100644 index 000000000..d24735ee5 --- /dev/null +++ b/Sources/View/Channel/MessageCell/QuickReply/Views/SBUQuickReplyView.swift @@ -0,0 +1,113 @@ +// +// SBUQuickReplyView.swift +// SendbirdUIKit +// +// Created by Jaesung Lee on 2023/07/11. +// Copyright © 2023 Sendbird, Inc. All rights reserved. +// + +import UIKit +import SendbirdChatSDK + +public protocol SBUQuickReplyViewDelegate: AnyObject { + /// Called when `optionView` is selected. + /// - Parameters: + /// - view: ``SBUQuickReplyView`` object. + /// - optionView: The selected ``SBUQuickReplyOptionView`` object. + func quickReplyView(_ view: SBUQuickReplyView, didSelectOption optionView: SBUQuickReplyOptionView) +} + +@IBDesignable +public class SBUQuickReplyView: SBUView, SBUQuickReplyOptionViewDelegate { + // MARK: - Properties + /// ``SBUStackView`` instance. The default value is a vertical stack view that contains ``topSpacer`` and the array of ``SBUQuickReplyOptionView``s + /// - Since: 3.7.0 + public var stackView: UIStackView = SBUStackView( + axis: .vertical, + alignment: .trailing, + spacing: 8 + ) + + /// The view to provide top spacing to the ``stackView`` + /// - Since: 3.7.0 + public var topSpacer: UIView = { + let view = UIView() + view.sbu_constraint(height: 12) + return view + }() + + /// (Read-only) The quick reply options as `String` array from ``SBUQuickReplyViewParams`` + /// - Since: 3.7.0 + public var options: [String] { + params?.replyOptions ?? [] + } + /// (Read-only) The message ID for quick reply which is from ``SBUQuickReplyViewParams`` + /// - Since: 3.7.0 + public var messageId: Int64? { + params?.messageId + } + + /// The data structure for ``SBUQuickReplyViewParams``. Please use ``configure(with:delegate:)`` to update ``params`` + /// - Since: 3.7.0 + public private(set) var params: SBUQuickReplyViewParams? + + /// The delegate that is type of ``SBUQuickReplyViewDelegate`` + /// - Since: 3.7.0 + public weak var delegate: SBUQuickReplyViewDelegate? + + // MARK: - Sendbird UIKit Life Cycle + + public override func setupViews() { + super.setupViews() + + let optionViews = self.createQuickReplyOptionViews(options: self.options) + self.stackView.setVStack(optionViews) + self.stackView.insertArrangedSubview(self.topSpacer, at: 0) + self.addSubview(stackView) + } + + public override func setupLayouts() { + super.setupLayouts() + + self.stackView + .sbu_constraint(equalTo: self, leading: 0, trailing: 0, top: 0, bottom: 0) + } + + public override func setupStyles() { + super.setupStyles() + } + + /// Updates UI with ``SBUQuickReplyViewParams`` object and ``SBUQuickReplyViewDelegate``. + /// - Parameters: + /// - configuration: ``SBUQuickReplyViewParams`` object. + /// - delegate: ``SBUQuickReplyViewDelegate``, the delegate object that handles the selection event sent by ``SBUQuickReplyOptionView``. + /// - Note: This method updates ``params`` and ``delegate`` then, calls ``setupViews()``, ``setupLayouts()`` and ``setupStyles()`` + /// - Since: 3.7.0 + public func configure(with configuration: SBUQuickReplyViewParams, delegate: SBUQuickReplyViewDelegate? = nil) { + self.params = configuration + self.delegate = delegate + + self.setupViews() + self.setupLayouts() + self.setupStyles() + } + + /// Creates ``SBUQuickReplyOptionView`` instances with ``SBUQuickReplyViewParams``. + /// - Parameter options: The array of ``SBUQuickReplyOptionView``. + /// - Returns: The array of ``SBUQuickReplyOptionView`` instances. + /// - Since: 3.7.0 + public func createQuickReplyOptionViews(options: [String]) -> [SBUQuickReplyOptionView] { + let optionViews = options.compactMap { option in + let view = SBUQuickReplyOptionView() + view.configure(with: option, delegate: self) + return view + } + return optionViews + } + + /// Called when a ``SBUQuickReplyOptionView`` is selected. It invokes ``SBUQuickReplyViewDelegate/quickReplyView(_:didSelectOption:)`` + /// - Since: 3.7.0 + public func quickReplyOptionViewDidSelect(_ optionView: SBUQuickReplyOptionView) { + self.delegate?.quickReplyView(self, didSelectOption: optionView) + } +} diff --git a/Sources/View/Channel/MessageCell/SBUUserMessageCell.swift b/Sources/View/Channel/MessageCell/SBUUserMessageCell.swift index d2c6d3745..a91ab2530 100644 --- a/Sources/View/Channel/MessageCell/SBUUserMessageCell.swift +++ b/Sources/View/Channel/MessageCell/SBUUserMessageCell.swift @@ -34,6 +34,28 @@ open class SBUUserMessageCell: SBUContentBaseMessageCell, SBUUserMessageTextView return webView }() + // MARK: - Quick Reply + + /// The boolean value whether the ``quickReplyView`` instance should appear or not. The default is `true` + /// - Important: If it's true, ``quickReplyView`` never appears even if the ``userMessage`` has quick reply options. + /// - Since: 3.7.0 + public private(set) var shouldHideQuickReply: Bool = true + + /// ``SBUQuickReplyView`` instance. + /// - Since: 3.7.0 + public private(set) var quickReplyView: SBUQuickReplyView? + + /// The action of ``SBUQuickReplyView`` that is called when a ``SBUQuickReplyOptionView`` is selected. + /// - Parameter selectedOptionView: The selected ``SBUQuickReplyOptionView`` object. + /// - Since: 3.7.0 + public var quickReplySelectHandler: ((_ selectedOptionView: SBUQuickReplyOptionView) -> Void)? + + // MARK: - Card List + + /// ``SBUCardListView`` instance. + /// - Since: 3.7.0 + public private(set) var cardListView: SBUCardListView? + // MARK: - View Lifecycle open override func setupViews() { super.setupViews() @@ -111,10 +133,33 @@ open class SBUUserMessageCell: SBUContentBaseMessageCell, SBUUserMessageTextView self.useQuotedMessage = configuration.useQuotedMessage self.useThreadInfo = configuration.useThreadInfo + self.shouldHideQuickReply = configuration.shouldHideQuickReply // Configure Content base message cell super.configure(with: configuration) + // MARK: Quick Reply + + if let quickReplyView = self.quickReplyView { + quickReplyView.removeFromSuperview() + self.quickReplyView = nil + } + + if let replyOptions = message.quickReply?.options, !replyOptions.isEmpty { + self.updateQuickReplyView(with: replyOptions) + } + + // MARK: Card List + if let cardListView = self.cardListView { + self.contentVStackView.removeArrangedSubview(cardListView) + } + + if let items = try? SBUGlobalCustomParams.cardViewParamsCollectionBuilder?(message.data) { + self.addCardListView(with: items) + } else { + self.cardListView = nil + } + // Set up message position of additionContainerView(reactionView) self.additionContainerView.position = self.position self.additionContainerView.isSelected = false @@ -138,6 +183,8 @@ open class SBUUserMessageCell: SBUContentBaseMessageCell, SBUUserMessageTextView self.additionContainerView.removeArrangedSubview(self.webView) self.webView.isHidden = true } + + self.layoutIfNeeded() } @available(*, deprecated, renamed: "configure(with:)") // 2.2.0 @@ -218,9 +265,66 @@ open class SBUUserMessageCell: SBUContentBaseMessageCell, SBUUserMessageTextView url.open() } + // MARK: - Quick Reply + public func updateQuickReplyView(with options: [String]) { + if shouldHideQuickReply { return } + guard let messageId = self.message?.messageId else { return } + let quickReplyView = SBUQuickReplyView() + let configuration = SBUQuickReplyViewParams( + messageId: messageId, + replyOptions: options + ) + quickReplyView.configure(with: configuration, delegate: self) + self.userNameStackView.addArrangedSubview(quickReplyView) + quickReplyView.sbu_constraint(equalTo: self.userNameStackView, leading: 0, trailing: 0) + + self.quickReplyView = quickReplyView + + self.layoutIfNeeded() + } + + // MARK: - Card List + public func addCardListView(with items: [SBUCardViewParams]) { + guard let messageId = self.message?.messageId else { return } + let cardListView = SBUCardListView() + let configuration = SBUCardListViewParams( + messageId: messageId, + items: items + ) + cardListView.configure(with: configuration) + self.contentVStackView.addArrangedSubview(cardListView) + + if let constraints = self.cardListView?.constraints { + self.cardListView?.removeConstraints(constraints) + } + switch self.position { + case .right: + cardListView.sbu_constraint(equalTo: self.mainContainerView, leading: 0) + cardListView.sbu_constraint(equalTo: self.contentVStackView, trailing: 0) + default: + cardListView.sbu_constraint(equalTo: self.contentVStackView, leading: 0) + cardListView.sbu_constraint(equalTo: self.mainContainerView, trailing: 0) + } + + self.cardListView = cardListView + + self.layoutIfNeeded() + } + // MARK: - Mention /// As a default, it calls `groupChannelModule(_:didTapMentionUser:)` in ``SBUGroupChannelModuleListDelegate``. open func userMessageTextView(_ textView: SBUUserMessageTextView, didTapMention user: SBUUser) { self.mentionTapHandler?(user) } } + +extension SBUUserMessageCell: SBUQuickReplyViewDelegate { + public func quickReplyView(_ view: SBUQuickReplyView, didSelectOption optionView: SBUQuickReplyOptionView) { + self.quickReplyView?.removeFromSuperview() + self.quickReplyView = nil + + self.layoutIfNeeded() + + self.quickReplySelectHandler?(optionView) + } +} diff --git a/Sources/View/Channel/SBUGroupChannelViewController.swift b/Sources/View/Channel/SBUGroupChannelViewController.swift index afd2b1c3b..5615b7dce 100644 --- a/Sources/View/Channel/SBUGroupChannelViewController.swift +++ b/Sources/View/Channel/SBUGroupChannelViewController.swift @@ -582,6 +582,15 @@ open class SBUGroupChannelViewController: SBUBaseChannelViewController, SBUGroup ) } + /// Called when one of the quick reply options is tapped. + /// - Parameters: + /// - text: The reply text that is selected by user + /// - Note: As a default, it sends user message with `text` by using ``viewModel`` + /// - Since: 3.7.0 + open func groupChannelModule(_ listComponent: SBUGroupChannelModule.List, didSelectQuickReplyOption text: String) { + self.viewModel?.sendUserMessage(text: text) + } + open override func baseChannelModule(_ listComponent: SBUBaseChannelModule.List, didTapVoiceMessage fileMessage: FileMessage, cell: UITableViewCell, forRowAt indexPath: IndexPath) { super.baseChannelModule(listComponent, didTapVoiceMessage: fileMessage, cell: cell, forRowAt: indexPath) diff --git a/Sources/View/Channel/ViewModel/SBUUserMessageTextViewModel.swift b/Sources/View/Channel/ViewModel/SBUUserMessageTextViewModel.swift index 6fe9811f5..132b3b2a0 100644 --- a/Sources/View/Channel/ViewModel/SBUUserMessageTextViewModel.swift +++ b/Sources/View/Channel/ViewModel/SBUUserMessageTextViewModel.swift @@ -188,7 +188,10 @@ public struct SBUUserMessageTextViewModel { } } + /// Adds ``SBUStringSet/Message_Edited`` string to the end of the message. + /// - Important: If the message sender is a chat bot, it finishes immediately. public func addEditedStateIfNeeded(with attributedString: NSMutableAttributedString) { + if self.message?.sender?.isBot == true { return } if let editTextColor = editTextColor, edited { let editedAttributedString = NSMutableAttributedString( string: " " + SBUStringSet.Message_Edited, diff --git a/Sources/View/Life cycles/SBUView.swift b/Sources/View/Life cycles/SBUView.swift index c593a5d89..1f96911b9 100644 --- a/Sources/View/Life cycles/SBUView.swift +++ b/Sources/View/Life cycles/SBUView.swift @@ -12,7 +12,7 @@ import UIKit /// - Since: 2.2.0 @IBDesignable -open class SBUView: UIView { +open class SBUView: UIView, SBUViewLifeCycle { /// Initializes `UIView` and set up subviews, auto layouts and actions for SendbirdUIKit. public init() { super.init(frame: .zero) @@ -44,9 +44,8 @@ open class SBUView: UIView { super.layoutSubviews() self.setupStyles() } -} - -extension SBUView: SBUViewLifeCycle { + + // MARK: - SBUViewLifeCycle open func setupViews() { } open func setupLayouts() { } diff --git a/Sources/View/Life cycles/SBUViewLifeCycle.swift b/Sources/View/Life cycles/SBUViewLifeCycle.swift index f605828d6..c0eeae099 100644 --- a/Sources/View/Life cycles/SBUViewLifeCycle.swift +++ b/Sources/View/Life cycles/SBUViewLifeCycle.swift @@ -12,7 +12,6 @@ import Foundation /// /// - Since: 2.2.0 -@objc public protocol SBUViewLifeCycle { /// This function handles the initialization of views. func setupViews()