Skip to content

Commit

Permalink
Glia Core SDK Release 0.35.14
Browse files Browse the repository at this point in the history
  • Loading branch information
BitriseBot authored and yurii-glia committed Apr 12, 2023
1 parent 456fb20 commit 37858cb
Show file tree
Hide file tree
Showing 20 changed files with 2,547 additions and 303 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ let package = Package(
),
.binaryTarget(
name: "SalemoveSDK",
url: "https://github.com/salemove/ios-bundle/releases/download/0.35.13/SalemoveSDK.xcframework.zip",
checksum: "9014f94eeaa2ee6f21473bfe529ed4c23f415cfe0f0a843170bb1c8610136a70"
url: "https://github.com/salemove/ios-bundle/releases/download/0.35.14/SalemoveSDK.xcframework.zip",
checksum: "5897a648d08857bf19eaae712b53111020030d2368642f58ab0654588d0bef74"
),
.target(
name: "GliaSDK",
Expand Down
2 changes: 1 addition & 1 deletion SalemoveSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SalemoveSDK'
s.version = '0.35.13'
s.version = '0.35.14'
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 SalemoveSDK.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>SalemoveSDK.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>SalemoveSDK.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
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ SWIFT_CLASS("_TtC11SalemoveSDK5Queue")
@property (nonatomic, readonly, copy) NSString * _Nonnull name;
/// Queue state
@property (nonatomic, readonly, strong) QueueState * _Nonnull state;
/// Indicates that queue is the default. true if Queue is default
/// Indicates that queue is the default. <code>true</code> if Queue is default
@property (nonatomic, readonly) BOOL isDefault;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
Expand Down Expand Up @@ -787,10 +787,17 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) Salemove * _




@interface Salemove (SWIFT_EXTENSION(SalemoveSDK))
/// Clear the use session of the client library
- (void)clearSession;
/// 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 @@ -864,22 +871,16 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) Salemove * _
@end



@interface Salemove (SWIFT_EXTENSION(SalemoveSDK))
/// 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;
/// Clear the use session of the client library
- (void)clearSession;
@end





@interface Salemove (SWIFT_EXTENSION(SalemoveSDK))
/// Send a chat message.
/// If the request is unsuccessful for any reason then the completion will have an Error.
Expand Down Expand Up @@ -1267,10 +1268,30 @@ SWIFT_CLASS("_TtC11SalemoveSDK19SalemoveAppDelegate") SWIFT_DEPRECATED_MSG("Depr
/// returns:
/// <code>true</code> if the application can be started with the specified launch options. Otherwise, it returns <code>false</code>.
- (BOOL)application:(UIApplication * _Nonnull)application didFinishLaunchingWithOptions:(NSDictionary<UIApplicationLaunchOptionsKey, id> * _Nullable)launchOptions;
/// Call this method when <code>application:didRegisterForRemoteNotificationsWithDeviceToken:</code> is called
/// from <code>UNUserNotificationCenterDelegate</code>.
/// Send all parameters that you receive in the delegate method as they are, without modifying them.
/// <h1>Reference</h1>
/// <a href="https://developer.apple.com/documentation/usernotifications/unusernotificationcenterdelegate">UNUserNotificationCenterDelegate</a>
/// \param application The current application.
///
/// \param deviceToken The data that holds the push notification device token.
///
- (void)application:(UIApplication * _Nonnull)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData * _Nonnull)deviceToken;
/// Call this method if it was unable to register your app with APNs or if your app is not properly configured for remote notifications. During development, make sure your app has the proper entitlements and that its App ID is configured to support push notifications.
/// \param application The current application.
///
/// \param error The error appeared during the registration device with APNs.
///
- (void)application:(UIApplication * _Nonnull)application didFailToRegisterForRemoteNotificationsWithError:(NSError * _Nonnull)error;
/// Handle the application active state and setup the internals.
/// \param application The current application.
///
- (void)applicationDidBecomeActive:(UIApplication * _Nonnull)application;
- (void)applicationWillResignActive:(UIApplication * _Nonnull)application;
- (void)applicationDidEnterBackground:(UIApplication * _Nonnull)application;
- (void)applicationWillEnterForeground:(UIApplication * _Nonnull)application;
- (void)applicationWillTerminate:(UIApplication * _Nonnull)application;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end

Expand Down
Loading

0 comments on commit 37858cb

Please sign in to comment.