Skip to content

Commit

Permalink
Glia Core iOS SDK Release 0.33.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dukhovnyi committed Apr 14, 2022
1 parent c3925c7 commit 04a1ef9
Show file tree
Hide file tree
Showing 16 changed files with 39 additions and 36 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ let package = Package(
),
.binaryTarget(
name: "SalemoveSDK",
url: "https://github.com/salemove/ios-bundle/releases/download/0.33.0/SalemoveSDK.xcframework.zip",
checksum: "daab8fd294ed3bce48587c27fd3da2a432922fb4c539ba7a3f50aaa6dd30b543"
url: "https://github.com/salemove/ios-bundle/releases/download/0.33.1/SalemoveSDK.xcframework.zip",
checksum: "6f911b712accb0d91c927d5c2c4fb60a4fb26255c71a7ad51da45e4744122158"
),
.target(
name: "GliaSDK",
Expand Down
10 changes: 5 additions & 5 deletions SalemoveSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = 'SalemoveSDK'
s.version = '0.32.3'
s.version = '0.33.1'
s.summary = 'The Salemove iOS library'
s.description = 'The Salemove iOS library brings the in-person customer experience to iOS devices.'
s.homepage = 'https://github.com/salemove/ios-sdk'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Salemove' => '[email protected]' }
s.source = { :git => 'git@github.com:salemove/ios-bundle.git', :tag => s.version.to_s }
s.source = { :git => 'https://github.com/salemove/ios-bundle.git', :tag => s.version.to_s }

s.module_name = 'SalemoveSDK'
s.ios.deployment_target = '12.0'
Expand All @@ -17,6 +17,6 @@ Pod::Spec.new do |s|
s.dependency 'SwiftPhoenixClient', '1.2.1-xcf'
s.dependency 'SocketIO', '9.2.0-xcf'
s.dependency 'Starscream', '3.1.1-xcf'
s.dependency 'glia-webrtc/bitcode', '0.0.3'
s.dependency 'TwilioVoice', '6.2.0'
end
s.dependency 'WebRTC-lib', '96.0.0'
s.dependency 'TwilioVoice', '6.3.1'
end
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</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>
<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>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -537,9 +537,9 @@ SWIFT_PROTOCOL("_TtP11SalemoveSDK15MessageHandling_")
/// An Operator for an Engagement
SWIFT_CLASS("_TtC11SalemoveSDK8Operator")
@interface Operator : NSObject
/// Operator name
/// Operator name.
@property (nonatomic, readonly, copy) NSString * _Nonnull name;
/// Operator picture, see OperatorPicture class for more details
/// Operator picture, see OperatorPicture class for more details.
@property (nonatomic, readonly, strong) OperatorPicture * _Nullable picture;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ public enum QueueStatus : Swift.String, Swift.Codable {
extension SalemoveSDK.Salemove {
@objc final public func configureLogLevel(level: SalemoveSDK.LogLevel)
}
@_hasMissingDesignatedInitializers @objc public class Operator : ObjectiveC.NSObject {
@objc public class Operator : ObjectiveC.NSObject {
@objc public var name: Swift.String {
get
}
Expand All @@ -902,6 +902,7 @@ extension SalemoveSDK.Salemove {
public var availableMedia: [SalemoveSDK.MediaType]? {
get
}
public init(id: Swift.String, name: Swift.String, picture: SalemoveSDK.OperatorPicture?, availableMedia: [SalemoveSDK.MediaType]?)
@objc deinit
}
public typealias InternalOperatorTypingStatusUpdate = (SalemoveSDK.OperatorTypingStatus) -> Swift.Void
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -539,9 +539,9 @@ SWIFT_PROTOCOL("_TtP11SalemoveSDK15MessageHandling_")
/// An Operator for an Engagement
SWIFT_CLASS("_TtC11SalemoveSDK8Operator")
@interface Operator : NSObject
/// Operator name
/// Operator name.
@property (nonatomic, readonly, copy) NSString * _Nonnull name;
/// Operator picture, see OperatorPicture class for more details
/// Operator picture, see OperatorPicture class for more details.
@property (nonatomic, readonly, strong) OperatorPicture * _Nullable picture;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
Expand Down Expand Up @@ -2024,9 +2024,9 @@ SWIFT_PROTOCOL("_TtP11SalemoveSDK15MessageHandling_")
/// An Operator for an Engagement
SWIFT_CLASS("_TtC11SalemoveSDK8Operator")
@interface Operator : NSObject
/// Operator name
/// Operator name.
@property (nonatomic, readonly, copy) NSString * _Nonnull name;
/// Operator picture, see OperatorPicture class for more details
/// Operator picture, see OperatorPicture class for more details.
@property (nonatomic, readonly, strong) OperatorPicture * _Nullable picture;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ public enum QueueStatus : Swift.String, Swift.Codable {
extension SalemoveSDK.Salemove {
@objc final public func configureLogLevel(level: SalemoveSDK.LogLevel)
}
@_hasMissingDesignatedInitializers @objc public class Operator : ObjectiveC.NSObject {
@objc public class Operator : ObjectiveC.NSObject {
@objc public var name: Swift.String {
get
}
Expand All @@ -902,6 +902,7 @@ extension SalemoveSDK.Salemove {
public var availableMedia: [SalemoveSDK.MediaType]? {
get
}
public init(id: Swift.String, name: Swift.String, picture: SalemoveSDK.OperatorPicture?, availableMedia: [SalemoveSDK.MediaType]?)
@objc deinit
}
public typealias InternalOperatorTypingStatusUpdate = (SalemoveSDK.OperatorTypingStatus) -> Swift.Void
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ public enum QueueStatus : Swift.String, Swift.Codable {
extension SalemoveSDK.Salemove {
@objc final public func configureLogLevel(level: SalemoveSDK.LogLevel)
}
@_hasMissingDesignatedInitializers @objc public class Operator : ObjectiveC.NSObject {
@objc public class Operator : ObjectiveC.NSObject {
@objc public var name: Swift.String {
get
}
Expand All @@ -902,6 +902,7 @@ extension SalemoveSDK.Salemove {
public var availableMedia: [SalemoveSDK.MediaType]? {
get
}
public init(id: Swift.String, name: Swift.String, picture: SalemoveSDK.OperatorPicture?, availableMedia: [SalemoveSDK.MediaType]?)
@objc deinit
}
public typealias InternalOperatorTypingStatusUpdate = (SalemoveSDK.OperatorTypingStatus) -> Swift.Void
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,39 +10,39 @@
</data>
<key>Headers/SalemoveSDK-Swift.h</key>
<data>
y23rvkE2+3bwIz6A1hX0rmryEao=
xBhici37nfEyice/r7t8JMfrzcA=
</data>
<key>Headers/SalemoveSDK.h</key>
<data>
PPpoXVTCg9G4UVxqqCQF8I//E58=
</data>
<key>Info.plist</key>
<data>
ndp5KUJQ/krFnPfa0vNawsnH0og=
rj5CPeq65RB6P8mZ1MxFDMs7fOc=
</data>
<key>Modules/SalemoveSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
<data>
q7xfV/DSjlbEs3a7R+rrEuzBmqI=
BJjdWEbbRJZbumqhWZWItE07/3c=
</data>
<key>Modules/SalemoveSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
<data>
hcD67Jo9MeGe0/FlRek9+zec0ho=
OAM+qdlcGh6sTdHEkRShpSVHY+Q=
</data>
<key>Modules/SalemoveSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<data>
KYAmIBTEW/Mw4DebLDDFpaqV0qw=
9GARXWfF135T86n7az5fAhnvLXI=
</data>
<key>Modules/SalemoveSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<data>
IYu0se2//e3DRJtEBKt5dfUbQ1s=
f6vuE+3RgeVYoOM/HPRaWB4BJTc=
</data>
<key>Modules/SalemoveSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
<data>
BeS+QepSdNi9pAg6F7jj/Ay/SxU=
FNxPTD63XeDVCM0HzEHtgYrJqUk=
</data>
<key>Modules/SalemoveSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<data>
gH6zLJvmZOqigSkJst9Tiztd1oo=
hsNnxk7dw/5EVF4CYpZcn7fBZ58=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand All @@ -62,7 +62,7 @@
<dict>
<key>hash2</key>
<data>
/SpjYcekW5sfZTzKrt1Gk3P+lKhmWvmp9fY4OtwHVfI=
kgMWRZ54Z+rtHW7ZlWtn8gi7JGuVp/ry74w7Najk7yY=
</data>
</dict>
<key>Headers/SalemoveSDK.h</key>
Expand All @@ -76,42 +76,42 @@
<dict>
<key>hash2</key>
<data>
5QURerYARBpR6a7KEiXz1ZhB9n4g1i4IW00LATraaQ4=
qaR3HawyzQI7ksJxmG8gDCDAdtpAhoPyKqiGafhvyFE=
</data>
</dict>
<key>Modules/SalemoveSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
Y0dg3zfn7Xz3pNxXFGthsIzUrnyL7dJDhwi+NhFlAc4=
fxD3VjbVPiUkj2iupGsdIC+kBce7Sdes3KEcYWjxais=
</data>
</dict>
<key>Modules/SalemoveSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
fiiWSBrz7Mz3eFwdYgc+Te9smnirM8xQpzf1gr29sKw=
mrNMFTcot2N6l5KNqUqhcrZ9tC77QZ0KRSfICKU8yGo=
</data>
</dict>
<key>Modules/SalemoveSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<dict>
<key>hash2</key>
<data>
ndCmpC8Qc+nsXkWvprzC3PRfZjpiuzuCpIxZMizbpu0=
9G1Xp+MDhI3of4u37W2lyk8AI4QQeLEJ19O64swXeRE=
</data>
</dict>
<key>Modules/SalemoveSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
SckDF68JXNjqp6uEHhCu47uHAuRwwl7kafge9of+51U=
fVIcXNNrNpw9Qb6eISu5pVVXpgm/RMvV6LbsIg5aF3U=
</data>
</dict>
<key>Modules/SalemoveSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
Z8GM+S1xkeh9Y74lYuMoFvcSrNWksrgJqSWcobsMMjo=
VmZBrkhbkXyJrqaK4Ijkwualajd59No0NabDo0gc2uE=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down

0 comments on commit 04a1ef9

Please sign in to comment.