Skip to content

Commit fa065fd

Browse files
committed
Latest SDKs Updated
1 parent 0f6f1f0 commit fa065fd

File tree

15 files changed

+1
-41
lines changed

15 files changed

+1
-41
lines changed

Channelize.framework/Assets.car

0 Bytes
Binary file not shown.

Channelize.framework/Channelize

-1.11 MB
Binary file not shown.

Channelize.framework/Headers/Channelize-Swift.h

+1-41
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,8 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
164164
#endif
165165
#if __has_feature(modules)
166166
@import CoreGraphics;
167-
@import Dispatch;
168167
@import Foundation;
169168
@import InputBarAccessoryView;
170-
@import ObjectiveC;
171169
@import UIKit;
172170
#endif
173171

@@ -242,14 +240,6 @@ SWIFT_CLASS("_TtC10Channelize11CHTokenView")
242240
@end
243241

244242

245-
SWIFT_CLASS("_TtC10Channelize11Cancellable")
246-
@interface Cancellable : NSObject
247-
@property (nonatomic, readonly) BOOL isCancelled SWIFT_DEPRECATED_OBJC("Swift property 'Cancellable.isCancelled' uses '@objc' inference deprecated in Swift 4; add '@objc' to provide an Objective-C entrypoint");
248-
- (void)cancel SWIFT_DEPRECATED_OBJC("Swift method 'Cancellable.cancel()' uses '@objc' inference deprecated in Swift 4; add '@objc' to provide an Objective-C entrypoint");
249-
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
250-
@end
251-
252-
253243
@interface InputTextView (SWIFT_EXTENSION(Channelize)) <UITextViewDelegate>
254244
- (BOOL)textView:(UITextView * _Nonnull)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString * _Nonnull)text SWIFT_WARN_UNUSED_RESULT;
255245
@end
@@ -322,37 +312,9 @@ SWIFT_CLASS("_TtC10Channelize23RecentMessageController")
322312
@interface RecentMessageController (SWIFT_EXTENSION(Channelize))
323313
- (void)didAdminAddedWithConversationId:(NSString * _Nullable)conversationId isAdmin:(BOOL)isAdmin userId:(NSString * _Nullable)userId SWIFT_DEPRECATED_OBJC("Swift method 'RecentMessageController.didAdminAdded(conversationId:isAdmin:userId:)' uses '@objc' inference deprecated in Swift 4; add '@objc' to provide an Objective-C entrypoint");
324314
- (void)didChangeTypingStatusWithConversationId:(NSString * _Nullable)conversationId userId:(NSString * _Nullable)userId isTyping:(BOOL)isTyping SWIFT_DEPRECATED_OBJC("Swift method 'RecentMessageController.didChangeTypingStatus(conversationId:userId:isTyping:)' uses '@objc' inference deprecated in Swift 4; add '@objc' to provide an Objective-C entrypoint");
315+
- (void)didMessagesDeletedForEveryOneWithConversationId:(NSString * _Nullable)conversationId messageIds:(NSArray<NSString *> * _Nullable)messageIds SWIFT_DEPRECATED_OBJC("Swift method 'RecentMessageController.didMessagesDeletedForEveryOne(conversationId:messageIds:)' uses '@objc' inference deprecated in Swift 4; add '@objc' to provide an Objective-C entrypoint");
325316
@end
326317

327-
@class NSURLSession;
328-
@class NSError;
329-
330-
SWIFT_CLASS("_TtC10Channelize16SwiftLinkPreview")
331-
@interface SwiftLinkPreview : NSObject
332-
@property (nonatomic, strong) NSURLSession * _Nonnull session SWIFT_DEPRECATED_OBJC("Swift property 'SwiftLinkPreview.session' uses '@objc' inference deprecated in Swift 4; add '@objc' to provide an Objective-C entrypoint");
333-
@property (nonatomic, readonly, strong) dispatch_queue_t _Nonnull workQueue SWIFT_DEPRECATED_OBJC("Swift property 'SwiftLinkPreview.workQueue' uses '@objc' inference deprecated in Swift 4; add '@objc' to provide an Objective-C entrypoint");
334-
@property (nonatomic, readonly, strong) dispatch_queue_t _Nonnull responseQueue SWIFT_DEPRECATED_OBJC("Swift property 'SwiftLinkPreview.responseQueue' uses '@objc' inference deprecated in Swift 4; add '@objc' to provide an Objective-C entrypoint");
335-
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) dispatch_queue_t _Nonnull defaultWorkQueue SWIFT_DEPRECATED_OBJC("Swift property 'SwiftLinkPreview.defaultWorkQueue' uses '@objc' inference deprecated in Swift 4; add '@objc' to provide an Objective-C entrypoint");)
336-
+ (dispatch_queue_t _Nonnull)defaultWorkQueue SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_OBJC("Swift property 'SwiftLinkPreview.defaultWorkQueue' uses '@objc' inference deprecated in Swift 4; add '@objc' to provide an Objective-C entrypoint");
337-
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
338-
- (nonnull instancetype)initWithSession:(NSURLSession * _Nullable)session workQueue:(dispatch_queue_t _Nullable)workQueue responseQueue:(dispatch_queue_t _Nullable)responseQueue disableInMemoryCache:(BOOL)disableInMemoryCache cacheInvalidationTimeout:(NSTimeInterval)cacheInvalidationTimeout cacheCleanupInterval:(NSTimeInterval)cacheCleanupInterval OBJC_DESIGNATED_INITIALIZER;
339-
- (Cancellable * _Nonnull)previewLink:(NSString * _Nonnull)text onSuccess:(void (^ _Nonnull)(NSDictionary<NSString *, id> * _Nonnull))onSuccess onError:(void (^ _Nonnull)(NSError * _Nonnull))onError;
340-
@end
341-
342-
@class NSURLSessionTask;
343-
@class NSHTTPURLResponse;
344-
345-
@interface SwiftLinkPreview (SWIFT_EXTENSION(Channelize)) <NSURLSessionDataDelegate>
346-
- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task willPerformHTTPRedirection:(NSHTTPURLResponse * _Nonnull)response newRequest:(NSURLRequest * _Nonnull)request completionHandler:(void (^ _Nonnull)(NSURLRequest * _Nullable))completionHandler;
347-
@end
348-
349-
350-
@interface SwiftLinkPreview (SWIFT_EXTENSION(Channelize))
351-
- (NSURL * _Nullable)extractURLWithText:(NSString * _Nonnull)text SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_OBJC("Swift method 'SwiftLinkPreview.extractURL(text:)' uses '@objc' inference deprecated in Swift 4; add '@objc' to provide an Objective-C entrypoint");
352-
@end
353-
354-
355-
356318
@class UIFont;
357319
@class UIColor;
358320

@@ -474,8 +436,6 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) UIColor * _N
474436

475437

476438

477-
478-
479439

480440

481441

Channelize.framework/Info.plist

1 Byte
Binary file not shown.
Binary file not shown.
Binary file not shown.
64.3 KB
Binary file not shown.

Channelize_API.framework/Info.plist

1 Byte
Binary file not shown.
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
1 Byte
Binary file not shown.

0 commit comments

Comments
 (0)