Skip to content

Commit

Permalink
Merge pull request #129 from salemove/release/1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sm-deployer authored Nov 2, 2023
2 parents be20688 + cd74d56 commit 89000ea
Show file tree
Hide file tree
Showing 20 changed files with 1,836 additions and 183 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.5'
s.version = '1.1.6'
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
10 changes: 5 additions & 5 deletions GliaCoreSDK.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>GliaCoreSDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>GliaCoreSDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,9 @@ 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 @@ -497,10 +500,6 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) GliaCore * _







@class MediaUpgradeOffer;

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





enum LogLevel : NSInteger;

@interface GliaCore (SWIFT_EXTENSION(GliaCoreSDK))
Expand All @@ -550,13 +551,14 @@ 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))
/// Uploads a file to an engagement. The uploaded file can be later sent as part of a chat message attachments.
/// If Glia’s servers require a security check for the uploaded file, then it will be triggered automatically. The completion
Expand Down Expand Up @@ -621,9 +623,6 @@ enum LogLevel : NSInteger;






@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 @@ -633,6 +632,8 @@ enum LogLevel : NSInteger;





@class Message;

@interface GliaCore (SWIFT_EXTENSION(GliaCoreSDK))
Expand Down
Loading

0 comments on commit 89000ea

Please sign in to comment.