Skip to content

Commit

Permalink
CircleCI update SpotIMCore.xcframework to version 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oded-regev committed Mar 15, 2022
1 parent 7dd79da commit e6e6d7a
Show file tree
Hide file tree
Showing 49 changed files with 2,505 additions and 501 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This library provides an easy integration with Spot.IM into a native iOS app.

#### Using [CocoaPods](https://cocoapods.org)
1. Set dependency as follows:
`pod 'SpotIMCore', '1.9.3'`
`pod 'SpotIMCore', '1.10.0'`
2. Execute `pod install` in Terminal
3. Open workspace file and run

Expand All @@ -22,7 +22,7 @@ The Swift Package Manager is a tool for automating the distribution of Swift cod
Once you have your Swift package set up, adding SpotIM as a dependency is as easy as adding it to the dependencies value of your Package.swift.
```
dependencies: [
.package(url: "https://github.com/SpotIM/spotim-ios-sdk-pod.git", .upToNextMajor(from: "1.9.3"))
.package(url: "https://github.com/SpotIM/spotim-ios-sdk-pod.git", .upToNextMajor(from: "1.10.0"))
]
```

Expand Down
2 changes: 1 addition & 1 deletion SpotIMCore.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'SpotIMCore'
s.version = '1.9.3'
s.version = '1.10.0'
s.swift_versions = ['5.0']
s.summary = 'OpenWeb SDK'
s.description = 'This SDK allows you to integrate OpenWeb into your iOS app.'
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,9 @@ SWIFT_CLASS("_TtC10SpotImCore20SPShowCommentsButton")









Expand Down Expand Up @@ -553,6 +556,9 @@ SWIFT_CLASS("_TtC10SpotImCore20SPShowCommentsButton")









Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -292,11 +292,23 @@ public enum CustomizableView {
case showCommentsButton(button: SpotImCore.SPShowCommentsButton)
case preConversationHeader(titleLabel: UIKit.UILabel, counterLabel: UIKit.UILabel)
case commentCreationActionButton(button: SpotImCore.OWBaseButton)
case readOnlyLabel(label: UIKit.UILabel)
case emptyStateReadOnlyLabel(label: UIKit.UILabel)
}
public protocol SpotImCustomUIDelegate : AnyObject {
func customizeView(view: SpotImCore.CustomizableView, isDarkMode: Swift.Bool)
}
public typealias SPShowFullConversationCompletionHandler = (_ success: Swift.Bool, _ error: SpotImCore.SpotImError?) -> Swift.Void
public typealias SPOpenNewCommentCompletionHandler = (_ success: Swift.Bool, _ error: SpotImCore.SpotImError?) -> Swift.Void
public enum SPViewControllerPresentationalMode {
case present
case push
public static func == (a: SpotImCore.SPViewControllerPresentationalMode, b: SpotImCore.SPViewControllerPresentationalMode) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
extension SpotImCore.SpotImLoginDelegate {
public func presentControllerForSSOFlow(with spotNavController: UIKit.UIViewController)
public func startLoginFlow()
Expand All @@ -307,6 +319,8 @@ public let SPOTIM_NAV_CONTROL_TAG: Swift.Int
final public func setLayoutDelegate(delegate: SpotImCore.SpotImLayoutDelegate)
final public func setCustomUIDelegate(delegate: SpotImCore.SpotImCustomUIDelegate)
final public func preConversationController(withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, numberOfPreLoadedMessages: Swift.Int = 2, navigationController: UIKit.UINavigationController, completion: @escaping (UIKit.UIViewController) -> Swift.Void)
final public func openFullConversationViewController(navigationController: UIKit.UINavigationController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, presentationalMode: SpotImCore.SPViewControllerPresentationalMode = .push, selectedCommentId: Swift.String? = nil, completion: SpotImCore.SPShowFullConversationCompletionHandler? = nil)
final public func openNewCommentViewController(navigationController: UIKit.UINavigationController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, fullConversationPresentationalMode: SpotImCore.SPViewControllerPresentationalMode = .push, completion: SpotImCore.SPOpenNewCommentCompletionHandler? = nil)
final public func pushFullConversationViewController(navigationController: UIKit.UINavigationController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, completion: SpotImCore.SPShowFullConversationCompletionHandler? = nil)
final public func pushFullConversationViewController(navigationController: UIKit.UINavigationController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, selectedCommentId: Swift.String?, completion: SpotImCore.SPShowFullConversationCompletionHandler? = nil)
final public func presentFullConversationViewController(inViewController viewController: UIKit.UIViewController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, selectedCommentId: Swift.String?, completion: SpotImCore.SPShowFullConversationCompletionHandler? = nil)
Expand Down Expand Up @@ -407,6 +421,8 @@ extension SpotImCore.SpotImReadOnlyMode : Swift.Equatable {}
extension SpotImCore.SpotImReadOnlyMode : Swift.Hashable {}
extension SpotImCore.OWParserError : Swift.Equatable {}
extension SpotImCore.OWParserError : Swift.Hashable {}
extension SpotImCore.SPViewControllerPresentationalMode : Swift.Equatable {}
extension SpotImCore.SPViewControllerPresentationalMode : Swift.Hashable {}
extension SpotImCore.SPUserInterfaceStyle : Swift.Equatable {}
extension SpotImCore.SPUserInterfaceStyle : Swift.Hashable {}
extension SpotImCore.SPUserInterfaceStyle : Swift.RawRepresentable {}
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -292,11 +292,23 @@ public enum CustomizableView {
case showCommentsButton(button: SpotImCore.SPShowCommentsButton)
case preConversationHeader(titleLabel: UIKit.UILabel, counterLabel: UIKit.UILabel)
case commentCreationActionButton(button: SpotImCore.OWBaseButton)
case readOnlyLabel(label: UIKit.UILabel)
case emptyStateReadOnlyLabel(label: UIKit.UILabel)
}
public protocol SpotImCustomUIDelegate : AnyObject {
func customizeView(view: SpotImCore.CustomizableView, isDarkMode: Swift.Bool)
}
public typealias SPShowFullConversationCompletionHandler = (_ success: Swift.Bool, _ error: SpotImCore.SpotImError?) -> Swift.Void
public typealias SPOpenNewCommentCompletionHandler = (_ success: Swift.Bool, _ error: SpotImCore.SpotImError?) -> Swift.Void
public enum SPViewControllerPresentationalMode {
case present
case push
public static func == (a: SpotImCore.SPViewControllerPresentationalMode, b: SpotImCore.SPViewControllerPresentationalMode) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
extension SpotImCore.SpotImLoginDelegate {
public func presentControllerForSSOFlow(with spotNavController: UIKit.UIViewController)
public func startLoginFlow()
Expand All @@ -307,6 +319,8 @@ public let SPOTIM_NAV_CONTROL_TAG: Swift.Int
final public func setLayoutDelegate(delegate: SpotImCore.SpotImLayoutDelegate)
final public func setCustomUIDelegate(delegate: SpotImCore.SpotImCustomUIDelegate)
final public func preConversationController(withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, numberOfPreLoadedMessages: Swift.Int = 2, navigationController: UIKit.UINavigationController, completion: @escaping (UIKit.UIViewController) -> Swift.Void)
final public func openFullConversationViewController(navigationController: UIKit.UINavigationController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, presentationalMode: SpotImCore.SPViewControllerPresentationalMode = .push, selectedCommentId: Swift.String? = nil, completion: SpotImCore.SPShowFullConversationCompletionHandler? = nil)
final public func openNewCommentViewController(navigationController: UIKit.UINavigationController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, fullConversationPresentationalMode: SpotImCore.SPViewControllerPresentationalMode = .push, completion: SpotImCore.SPOpenNewCommentCompletionHandler? = nil)
final public func pushFullConversationViewController(navigationController: UIKit.UINavigationController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, completion: SpotImCore.SPShowFullConversationCompletionHandler? = nil)
final public func pushFullConversationViewController(navigationController: UIKit.UINavigationController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, selectedCommentId: Swift.String?, completion: SpotImCore.SPShowFullConversationCompletionHandler? = nil)
final public func presentFullConversationViewController(inViewController viewController: UIKit.UIViewController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, selectedCommentId: Swift.String?, completion: SpotImCore.SPShowFullConversationCompletionHandler? = nil)
Expand Down Expand Up @@ -407,6 +421,8 @@ extension SpotImCore.SpotImReadOnlyMode : Swift.Equatable {}
extension SpotImCore.SpotImReadOnlyMode : Swift.Hashable {}
extension SpotImCore.OWParserError : Swift.Equatable {}
extension SpotImCore.OWParserError : Swift.Hashable {}
extension SpotImCore.SPViewControllerPresentationalMode : Swift.Equatable {}
extension SpotImCore.SPViewControllerPresentationalMode : Swift.Hashable {}
extension SpotImCore.SPUserInterfaceStyle : Swift.Equatable {}
extension SpotImCore.SPUserInterfaceStyle : Swift.Hashable {}
extension SpotImCore.SPUserInterfaceStyle : Swift.RawRepresentable {}
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -292,11 +292,23 @@ public enum CustomizableView {
case showCommentsButton(button: SpotImCore.SPShowCommentsButton)
case preConversationHeader(titleLabel: UIKit.UILabel, counterLabel: UIKit.UILabel)
case commentCreationActionButton(button: SpotImCore.OWBaseButton)
case readOnlyLabel(label: UIKit.UILabel)
case emptyStateReadOnlyLabel(label: UIKit.UILabel)
}
public protocol SpotImCustomUIDelegate : AnyObject {
func customizeView(view: SpotImCore.CustomizableView, isDarkMode: Swift.Bool)
}
public typealias SPShowFullConversationCompletionHandler = (_ success: Swift.Bool, _ error: SpotImCore.SpotImError?) -> Swift.Void
public typealias SPOpenNewCommentCompletionHandler = (_ success: Swift.Bool, _ error: SpotImCore.SpotImError?) -> Swift.Void
public enum SPViewControllerPresentationalMode {
case present
case push
public static func == (a: SpotImCore.SPViewControllerPresentationalMode, b: SpotImCore.SPViewControllerPresentationalMode) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
extension SpotImCore.SpotImLoginDelegate {
public func presentControllerForSSOFlow(with spotNavController: UIKit.UIViewController)
public func startLoginFlow()
Expand All @@ -307,6 +319,8 @@ public let SPOTIM_NAV_CONTROL_TAG: Swift.Int
final public func setLayoutDelegate(delegate: SpotImCore.SpotImLayoutDelegate)
final public func setCustomUIDelegate(delegate: SpotImCore.SpotImCustomUIDelegate)
final public func preConversationController(withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, numberOfPreLoadedMessages: Swift.Int = 2, navigationController: UIKit.UINavigationController, completion: @escaping (UIKit.UIViewController) -> Swift.Void)
final public func openFullConversationViewController(navigationController: UIKit.UINavigationController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, presentationalMode: SpotImCore.SPViewControllerPresentationalMode = .push, selectedCommentId: Swift.String? = nil, completion: SpotImCore.SPShowFullConversationCompletionHandler? = nil)
final public func openNewCommentViewController(navigationController: UIKit.UINavigationController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, fullConversationPresentationalMode: SpotImCore.SPViewControllerPresentationalMode = .push, completion: SpotImCore.SPOpenNewCommentCompletionHandler? = nil)
final public func pushFullConversationViewController(navigationController: UIKit.UINavigationController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, completion: SpotImCore.SPShowFullConversationCompletionHandler? = nil)
final public func pushFullConversationViewController(navigationController: UIKit.UINavigationController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, selectedCommentId: Swift.String?, completion: SpotImCore.SPShowFullConversationCompletionHandler? = nil)
final public func presentFullConversationViewController(inViewController viewController: UIKit.UIViewController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, selectedCommentId: Swift.String?, completion: SpotImCore.SPShowFullConversationCompletionHandler? = nil)
Expand Down Expand Up @@ -407,6 +421,8 @@ extension SpotImCore.SpotImReadOnlyMode : Swift.Equatable {}
extension SpotImCore.SpotImReadOnlyMode : Swift.Hashable {}
extension SpotImCore.OWParserError : Swift.Equatable {}
extension SpotImCore.OWParserError : Swift.Hashable {}
extension SpotImCore.SPViewControllerPresentationalMode : Swift.Equatable {}
extension SpotImCore.SPViewControllerPresentationalMode : Swift.Hashable {}
extension SpotImCore.SPUserInterfaceStyle : Swift.Equatable {}
extension SpotImCore.SPUserInterfaceStyle : Swift.Hashable {}
extension SpotImCore.SPUserInterfaceStyle : Swift.RawRepresentable {}
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -292,11 +292,23 @@ public enum CustomizableView {
case showCommentsButton(button: SpotImCore.SPShowCommentsButton)
case preConversationHeader(titleLabel: UIKit.UILabel, counterLabel: UIKit.UILabel)
case commentCreationActionButton(button: SpotImCore.OWBaseButton)
case readOnlyLabel(label: UIKit.UILabel)
case emptyStateReadOnlyLabel(label: UIKit.UILabel)
}
public protocol SpotImCustomUIDelegate : AnyObject {
func customizeView(view: SpotImCore.CustomizableView, isDarkMode: Swift.Bool)
}
public typealias SPShowFullConversationCompletionHandler = (_ success: Swift.Bool, _ error: SpotImCore.SpotImError?) -> Swift.Void
public typealias SPOpenNewCommentCompletionHandler = (_ success: Swift.Bool, _ error: SpotImCore.SpotImError?) -> Swift.Void
public enum SPViewControllerPresentationalMode {
case present
case push
public static func == (a: SpotImCore.SPViewControllerPresentationalMode, b: SpotImCore.SPViewControllerPresentationalMode) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public var hashValue: Swift.Int {
get
}
}
extension SpotImCore.SpotImLoginDelegate {
public func presentControllerForSSOFlow(with spotNavController: UIKit.UIViewController)
public func startLoginFlow()
Expand All @@ -307,6 +319,8 @@ public let SPOTIM_NAV_CONTROL_TAG: Swift.Int
final public func setLayoutDelegate(delegate: SpotImCore.SpotImLayoutDelegate)
final public func setCustomUIDelegate(delegate: SpotImCore.SpotImCustomUIDelegate)
final public func preConversationController(withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, numberOfPreLoadedMessages: Swift.Int = 2, navigationController: UIKit.UINavigationController, completion: @escaping (UIKit.UIViewController) -> Swift.Void)
final public func openFullConversationViewController(navigationController: UIKit.UINavigationController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, presentationalMode: SpotImCore.SPViewControllerPresentationalMode = .push, selectedCommentId: Swift.String? = nil, completion: SpotImCore.SPShowFullConversationCompletionHandler? = nil)
final public func openNewCommentViewController(navigationController: UIKit.UINavigationController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, fullConversationPresentationalMode: SpotImCore.SPViewControllerPresentationalMode = .push, completion: SpotImCore.SPOpenNewCommentCompletionHandler? = nil)
final public func pushFullConversationViewController(navigationController: UIKit.UINavigationController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, completion: SpotImCore.SPShowFullConversationCompletionHandler? = nil)
final public func pushFullConversationViewController(navigationController: UIKit.UINavigationController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, selectedCommentId: Swift.String?, completion: SpotImCore.SPShowFullConversationCompletionHandler? = nil)
final public func presentFullConversationViewController(inViewController viewController: UIKit.UIViewController, withPostId postId: Swift.String, articleMetadata: SpotImCore.SpotImArticleMetadata, selectedCommentId: Swift.String?, completion: SpotImCore.SPShowFullConversationCompletionHandler? = nil)
Expand Down Expand Up @@ -407,6 +421,8 @@ extension SpotImCore.SpotImReadOnlyMode : Swift.Equatable {}
extension SpotImCore.SpotImReadOnlyMode : Swift.Hashable {}
extension SpotImCore.OWParserError : Swift.Equatable {}
extension SpotImCore.OWParserError : Swift.Hashable {}
extension SpotImCore.SPViewControllerPresentationalMode : Swift.Equatable {}
extension SpotImCore.SPViewControllerPresentationalMode : Swift.Hashable {}
extension SpotImCore.SPUserInterfaceStyle : Swift.Equatable {}
extension SpotImCore.SPUserInterfaceStyle : Swift.Hashable {}
extension SpotImCore.SPUserInterfaceStyle : Swift.RawRepresentable {}
Expand Down
Loading

0 comments on commit e6e6d7a

Please sign in to comment.