Skip to content

Commit

Permalink
Glia Core SDK Release 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
BitriseBot authored and yurii-glia committed Sep 13, 2023
1 parent 70013ee commit 105854b
Show file tree
Hide file tree
Showing 19 changed files with 493 additions and 481 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.1'
s.version = '1.1.2'
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 modified GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/GliaCoreSDK
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,12 @@ 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.");
@end





Expand Down Expand Up @@ -609,37 +615,24 @@ enum LogLevel : NSInteger;
@end



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






@interface GliaCore (SWIFT_EXTENSION(GliaCoreSDK))
/// Change the site used by the client library.
/// \param site The siteID that should be selected.
///
///
/// throws:
/// <code>ConfigurationError.invalidSite</code>
/// Unavailable.
- (BOOL)configureWithSite:(NSString * _Nonnull)site error:(NSError * _Nullable * _Nullable)error SWIFT_UNAVAILABLE_MSG("Use `GliaCore.configure(_ configuration: Configuration)` instead.");
/// Change the environment used by the client library.
/// \param environment The environment baseURL that should be selected.
///
///
/// throws:
/// <code>ConfigurationError.invalidEnvironment</code>
/// Unavailable.
- (BOOL)configureWithEnvironment:(NSString * _Nonnull)environment error:(NSError * _Nullable * _Nullable)error SWIFT_UNAVAILABLE_MSG("Use `GliaCore.configure(_ configuration: Configuration)` instead.");
/// Deprecated.
- (void)requestVisitorCodeWithCompletion:(void (^ _Nonnull)(NSString * _Nullable, GliaCoreError * _Nullable))completion SWIFT_DEPRECATED_MSG("Use `GliaCore.CallVisualizer` to request visitor code.");
@end






@class Message;

@interface GliaCore (SWIFT_EXTENSION(GliaCoreSDK))
Expand Down Expand Up @@ -721,6 +714,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 Expand Up @@ -816,6 +810,7 @@ enum LogLevel : NSInteger;
@end



@class QueueTicket;
@class Queue;

Expand Down Expand Up @@ -948,7 +943,6 @@ enum LogLevel : NSInteger;
@end



@class UIApplication;

/// The basic gateway class that interacts with the client library through the app delegate
Expand Down
Loading

0 comments on commit 105854b

Please sign in to comment.