Skip to content

Commit

Permalink
Merge pull request #170 from salemove/release/2.0.5
Browse files Browse the repository at this point in the history
Glia Core SDK Release 2.0.5
  • Loading branch information
EgorovEI authored Jan 24, 2025
2 parents 0885f51 + 4b1c571 commit 4b0c926
Show file tree
Hide file tree
Showing 22 changed files with 1,920 additions and 1,128 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 = '2.0.4'
s.version = '2.0.5'
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 @@ -8,32 +8,32 @@
<key>BinaryPath</key>
<string>GliaCoreSDK.framework/GliaCoreSDK</string>
<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>
<dict>
<key>BinaryPath</key>
<string>GliaCoreSDK.framework/GliaCoreSDK</string>
<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>
</array>
<key>CFBundlePackageType</key>
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 @@ -378,6 +378,18 @@ SWIFT_CLASS("_TtC11GliaCoreSDK10Engagement")




@interface Engagement (SWIFT_EXTENSION(GliaCoreSDK))
/// Calculates if engagement is transferred Secure Conversation.
/// \param engagement.
///
///
/// returns:
/// Boolean value indicating whether it’s transferred Secure Conversation.
+ (BOOL)isTransferredSecureConversation:(Engagement * _Nonnull)engagement SWIFT_WARN_UNUSED_RESULT;
@end


/// Error of the Engagement
typedef SWIFT_ENUM(NSInteger, EngagementError, open) {
/// The Operator is unavailable for an Engagement.
Expand Down Expand Up @@ -542,6 +554,9 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) GliaCore * _






@class Queue;

@interface GliaCore (SWIFT_EXTENSION(GliaCoreSDK))
Expand All @@ -556,10 +571,6 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) GliaCore * _







enum LogLevel : NSInteger;

@interface GliaCore (SWIFT_EXTENSION(GliaCoreSDK))
Expand Down Expand Up @@ -615,6 +626,13 @@ enum LogLevel : NSInteger;




@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 @@ -678,13 +696,6 @@ enum LogLevel : NSInteger;
@end



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


@class Message;

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

0 comments on commit 4b0c926

Please sign in to comment.