Skip to content

Commit

Permalink
Merge pull request #126 from salemove/release/1.1.3
Browse files Browse the repository at this point in the history
Glia Core SDK Release 1.1.3
  • Loading branch information
EgorovEI authored Sep 22, 2023
2 parents 105854b + d3cb344 commit df864e2
Show file tree
Hide file tree
Showing 19 changed files with 1,081 additions and 178 deletions.
2 changes: 1 addition & 1 deletion GliaCoreSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'GliaCoreSDK'
s.version = '1.1.2'
s.version = '1.1.3'
s.summary = 'The Glia Core SDK'
s.description = 'The Glia Core SDK brings the in-person customer experience to iOS devices.'
s.homepage = 'https://www.glia.com/'
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -482,9 +482,6 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) GliaCore * _






@interface GliaCore (SWIFT_EXTENSION(GliaCoreSDK))
/// Deprecated.
- (void)requestVisitorCodeWithCompletion:(void (^ _Nonnull)(NSString * _Nullable, GliaCoreError * _Nullable))completion SWIFT_DEPRECATED_MSG("Use `GliaCore.CallVisualizer` to request visitor code.");
Expand All @@ -499,6 +496,10 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) GliaCore * _







@class MediaUpgradeOffer;

@interface GliaCore (SWIFT_EXTENSION(GliaCoreSDK))
Expand Down Expand Up @@ -533,6 +534,28 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) GliaCore * _



enum LogLevel : NSInteger;

@interface GliaCore (SWIFT_EXTENSION(GliaCoreSDK))
/// Configure log level
/// <ul>
/// <li>
/// parameters:
/// </li>
/// <li>
/// level: One of the ‘LogLevel’ values that the logger should use
/// </li>
/// </ul>
- (void)configureLogLevelWithLevel:(enum LogLevel)level;
@end


@interface GliaCore (SWIFT_EXTENSION(GliaCoreSDK))
/// Clear the use session of the client library
- (void)clearSession;
@end





Expand Down Expand Up @@ -599,28 +622,6 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) GliaCore * _
@end


enum LogLevel : NSInteger;

@interface GliaCore (SWIFT_EXTENSION(GliaCoreSDK))
/// Configure log level
/// <ul>
/// <li>
/// parameters:
/// </li>
/// <li>
/// level: One of the ‘LogLevel’ values that the logger should use
/// </li>
/// </ul>
- (void)configureLogLevelWithLevel:(enum LogLevel)level;
@end


@interface GliaCore (SWIFT_EXTENSION(GliaCoreSDK))
/// Clear the use session of the client library
- (void)clearSession;
@end


@interface GliaCore (SWIFT_EXTENSION(GliaCoreSDK))
/// Unavailable.
- (BOOL)configureWithSite:(NSString * _Nonnull)site error:(NSError * _Nullable * _Nullable)error SWIFT_UNAVAILABLE_MSG("Use `GliaCore.configure(_ configuration: Configuration)` instead.");
Expand All @@ -632,7 +633,6 @@ enum LogLevel : NSInteger;




@class Message;

@interface GliaCore (SWIFT_EXTENSION(GliaCoreSDK))
Expand Down Expand Up @@ -715,6 +715,7 @@ enum LogLevel : NSInteger;




@interface GliaCore (SWIFT_EXTENSION(GliaCoreSDK))
/// Waits until there is an active engagement handled by the SDK.
/// If the SDK already has an active engagement present, then it returns information about it through
Expand Down
Loading

0 comments on commit df864e2

Please sign in to comment.