Skip to content

Commit

Permalink
Merge pull request #151 from salemove/release/1.4.4
Browse files Browse the repository at this point in the history
Glia Core SDK Release 1.4.4
  • Loading branch information
EgorovEI authored May 15, 2024
2 parents fcebf38 + 43df8b5 commit b930d0d
Show file tree
Hide file tree
Showing 20 changed files with 3,189 additions and 1,629 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.4.3'
s.version = '1.4.4'
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_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>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>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -333,15 +333,9 @@ SWIFT_PROTOCOL("_TtP11GliaCoreSDK15AudioStreamable_")
- (void)mute;
/// Unmute the outgoing audio stream
- (void)unmute;
/// State of the audio stream
///
/// returns:
/// bool indicating if the stream is muted or not
/// State of the audio stream. Indicating if the stream is muted or not
@property (nonatomic, readonly) BOOL isMuted;
/// Source of the audio stream
///
/// returns:
/// bool indicating if the stream is local or remote
/// Source of the audio stream. Indicating if the stream is local or remote
@property (nonatomic, readonly) BOOL isRemote;
/// Handler used to detect if Visitor stream is put on hold or resumed from being put on hold by Operator
@property (nonatomic, copy) void (^ _Nullable onHold)(BOOL);
Expand Down Expand Up @@ -464,6 +458,14 @@ SWIFT_CLASS("_TtC11GliaCoreSDK17EngagementRequest")
SWIFT_PROTOCOL("_TtP11GliaCoreSDK13ErrorHandling_")
@protocol ErrorHandling
/// Called when there is a failure in the client library or in the Engagement flow
/// <ul>
/// <li>
/// parameters:
/// </li>
/// <li>
/// error: the <code>GliaCoreError</code>
/// </li>
/// </ul>
/// The Error may have one of the following causes:
/// <ul>
/// <li>
Expand All @@ -485,8 +487,6 @@ SWIFT_PROTOCOL("_TtP11GliaCoreSDK13ErrorHandling_")
/// <code>EngagementError.operatorLeft</code> - in the case when Operator leaves an active Engagement
/// </li>
/// </ul>
/// \param error the <code>GliaCoreError</code>
///
- (void)failWithError:(GliaCoreError * _Nonnull)error;
@end

Expand Down Expand Up @@ -1169,18 +1169,10 @@ SWIFT_CLASS("_TtC11GliaCoreSDK8Operator")



/// <ul>
/// <li>
/// Operator picture information
/// </li>
/// </ul>
/// Operator picture information
SWIFT_CLASS("_TtC11GliaCoreSDK15OperatorPicture")
@interface OperatorPicture : NSObject
/// <ul>
/// <li>
/// Returns The Operator picture URL if exists
/// </li>
/// </ul>
/// Returns The Operator picture URL if exists
@property (nonatomic, readonly, copy) NSString * _Nullable url;
/// Overriding of isEqual is necessary in order to compare the operators in the Widget SDK.
/// Without it, operator with the same data fields is considered different.
Expand Down
Loading

0 comments on commit b930d0d

Please sign in to comment.