Skip to content

Commit

Permalink
Glia Core SDK Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BitriseBot committed Nov 11, 2024
1 parent 7c24b7e commit d27e1b2
Show file tree
Hide file tree
Showing 19 changed files with 2,908 additions and 520 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.5.5'
s.version = '2.0.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 @@ -376,6 +376,8 @@ SWIFT_CLASS("_TtC11GliaCoreSDK10Engagement")





/// Error of the Engagement
typedef SWIFT_ENUM(NSInteger, EngagementError, open) {
/// The Operator is unavailable for an Engagement.
Expand Down Expand Up @@ -557,6 +559,22 @@ 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

@class MediaUpgradeOffer;

@interface GliaCore (SWIFT_EXTENSION(GliaCoreSDK))
Expand Down Expand Up @@ -587,22 +605,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
Loading

0 comments on commit d27e1b2

Please sign in to comment.