Skip to content

Commit

Permalink
0.0.43
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-desimone committed Feb 8, 2024
1 parent 18d0974 commit 8d40c8d
Show file tree
Hide file tree
Showing 55 changed files with 11,162 additions and 7,586 deletions.
2 changes: 1 addition & 1 deletion ViafouraCore.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'ViafouraCore'
s.version = '0.0.42'
s.version = '0.0.43'
s.swift_versions = ['5.0']
s.summary = 'Viafoura SDK'
s.description = 'This SDK allows you to integrate Viafoura tools into your iOS app.'
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
@import CoreData;
@import CoreFoundation;
@import Foundation;
@import UIKit;
Expand Down Expand Up @@ -327,6 +328,22 @@ SWIFT_CLASS("_TtC11ViafouraSDK23ChatReplyViewController")
- (void)textViewDidChange:(UITextView * _Nonnull)textView;
@end

@class NSEntityDescription;
@class NSManagedObjectContext;

SWIFT_CLASS_NAMED("EventLog")
@interface EventLog : NSManagedObject
- (nonnull instancetype)initWithEntity:(NSEntityDescription * _Nonnull)entity insertIntoManagedObjectContext:(NSManagedObjectContext * _Nullable)context OBJC_DESIGNATED_INITIALIZER;
@end


@class NSDate;

@interface EventLog (SWIFT_EXTENSION(ViafouraSDK))
@property (nonatomic, copy) NSDate * _Nullable createdAt;
@property (nonatomic, copy) NSString * _Nullable jsonValue;
@end


SWIFT_CLASS("_TtC11ViafouraSDK24SingleChatViewController")
@interface SingleChatViewController : VFUIViewController
Expand Down Expand Up @@ -354,6 +371,7 @@ SWIFT_CLASS("_TtC11ViafouraSDK24SingleChatViewController")




SWIFT_CLASS("_TtC11ViafouraSDK8VFAdView")
@interface VFAdView : UIView
- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
Expand Down Expand Up @@ -542,12 +560,12 @@ SWIFT_CLASS("_TtC11ViafouraSDK24VFLiveChatViewController")



@interface VFLiveChatViewController (SWIFT_EXTENSION(ViafouraSDK)) <UITextViewDelegate>
- (void)textViewDidChange:(UITextView * _Nonnull)textView;
@end



@interface VFLiveChatViewController (SWIFT_EXTENSION(ViafouraSDK)) <UITextViewDelegate>
- (void)textViewDidChange:(UITextView * _Nonnull)textView;
@end



Expand Down Expand Up @@ -630,6 +648,7 @@ SWIFT_CLASS("_TtC11ViafouraSDK20VFPollViewController")
@end



@class UITextField;

@interface VFPollViewController (SWIFT_EXTENSION(ViafouraSDK)) <UITextFieldDelegate>
Expand All @@ -638,7 +657,6 @@ SWIFT_CLASS("_TtC11ViafouraSDK20VFPollViewController")




SWIFT_CLASS("_TtC11ViafouraSDK23VFPoweredByViafouraView")
@interface VFPoweredByViafouraView : UIView
- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
Expand All @@ -657,6 +675,7 @@ SWIFT_CLASS("_TtC11ViafouraSDK31VFPreviewCommentsViewController")




@interface VFPreviewCommentsViewController (SWIFT_EXTENSION(ViafouraSDK))
- (void)didMoveToParentViewController:(UIViewController * _Nullable)parent;
@end
Expand All @@ -677,7 +696,6 @@ SWIFT_CLASS("_TtC11ViafouraSDK31VFPreviewCommentsViewController")




SWIFT_CLASS("_TtC11ViafouraSDK23VFProfileViewController")
@interface VFProfileViewController : VFUIViewController
- (void)viewDidLoad;
Expand Down Expand Up @@ -749,6 +767,13 @@ SWIFT_CLASS("_TtC11ViafouraSDK10VFSpamView")
@end


SWIFT_CLASS("_TtC11ViafouraSDK8VFSwitch")
@interface VFSwitch : UISwitch
- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
@end


SWIFT_CLASS("_TtC11ViafouraSDK9VFTabView")
@interface VFTabView : UIView
- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
Expand Down Expand Up @@ -787,13 +812,13 @@ SWIFT_CLASS("_TtC11ViafouraSDK32VFVerticalTrendingViewController")
@end




@interface VFVerticalTrendingViewController (SWIFT_EXTENSION(ViafouraSDK))
- (void)observeValueForKeyPath:(NSString * _Nullable)keyPath ofObject:(id _Nullable)object change:(NSDictionary<NSKeyValueChangeKey, id> * _Nullable)change context:(void * _Nullable)context;
@end




@interface VFVerticalTrendingViewController (SWIFT_EXTENSION(ViafouraSDK))
- (void)didMoveToParentViewController:(UIViewController * _Nullable)parent;
@end
Expand Down
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 8d40c8d

Please sign in to comment.