Skip to content

Commit

Permalink
Glia Core SDK Release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BitriseBot authored and yurii-glia committed Mar 20, 2024
1 parent 2719373 commit bbee2de
Show file tree
Hide file tree
Showing 19 changed files with 2,797 additions and 832 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.3.10'
s.version = '1.4.0'
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 @@ -371,11 +371,15 @@ SWIFT_CLASS("_TtC11GliaCoreSDK10Engagement")
@property (nonatomic, readonly, copy) NSString * _Nonnull id;
/// The operator that is currently engaged with the visitor.
@property (nonatomic, readonly, strong) Operator * _Nullable engagedOperator;
/// The engagement identifier from which this has been
/// restarted.
@property (nonatomic, copy) NSString * _Nullable restartedFromEngagementId;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end



/// Error of the Engagement
typedef SWIFT_ENUM(NSInteger, EngagementError, open) {
/// The Operator is unavailable for an Engagement.
Expand Down Expand Up @@ -530,6 +534,10 @@ 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 All @@ -540,14 +548,25 @@ 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




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


@class MediaUpgradeOffer;

Expand Down Expand Up @@ -579,21 +598,6 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) GliaCore * _
- (void)requestMediaUpgradeWithOffer:(MediaUpgradeOffer * _Nonnull)offer completion:(void (^ _Nonnull)(BOOL, GliaCoreError * _Nullable))completion;
@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




Expand Down Expand Up @@ -766,7 +770,6 @@ 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 @@ -863,6 +866,7 @@ enum LogLevel : NSInteger;




@class QueueTicket;
@class Queue;

Expand Down
Loading

0 comments on commit bbee2de

Please sign in to comment.