Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 5.0.6 #128

Merged
merged 1 commit into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion KustomerChat.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'KustomerChat'
s.version = '5.0.5'
s.version = '5.0.6'
s.swift_version = '5.0'
s.cocoapods_version = '>= 1.10.0'
s.authors = 'Kustomer.com'
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
// Generated by Apple Swift version 6.0 effective-5.10 (swiftlang-6.0.0.9.10 clang-1600.0.26.2)
#ifndef KUSTOMERCHAT_SWIFT_H
#define KUSTOMERCHAT_SWIFT_H
#pragma clang diagnostic push
Expand Down Expand Up @@ -42,6 +42,8 @@
#include <string.h>
#endif
#if defined(__cplusplus)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module"
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
# include <ptrauth.h>
#else
Expand All @@ -55,6 +57,7 @@
# endif
#pragma clang diagnostic pop
#endif
#pragma clang diagnostic pop
#endif

#if !defined(SWIFT_TYPEDEFS)
Expand Down Expand Up @@ -278,6 +281,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
@import CoreFoundation;
@import Foundation;
@import ObjectiveC;
@import QuartzCore;
@import UIKit;
Expand All @@ -293,6 +297,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#pragma clang diagnostic ignored "-Wunknown-pragmas"
#pragma clang diagnostic ignored "-Wnullability"
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
#pragma clang diagnostic ignored "-Wunsafe-buffer-usage"

#if __has_attribute(external_source_symbol)
# pragma push_macro("any")
Expand Down Expand Up @@ -370,6 +375,7 @@ SWIFT_CLASS("_TtC12KustomerChat12PushProvider")
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end

@class UITab;
@class NSString;
@class NSBundle;

Expand All @@ -382,6 +388,9 @@ SWIFT_CLASS("_TtC12KustomerChat24SupportTabViewController")
- (void)viewDidAppear:(BOOL)animated;
- (void)viewDidLoad;
- (void)viewDidLayoutSubviews;
/// <code>true</code> if the tab bar is currently hidden.
@property (nonatomic, getter=isTabBarHidden) BOOL tabBarHidden;
- (nonnull instancetype)initWithTabs:(NSArray<UITab *> * _Nonnull)tabs SWIFT_UNAVAILABLE;
- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil SWIFT_UNAVAILABLE;
@end

Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"ABIRoot": {
"kind": "Root",
"name": "TopLevel",
"printedName": "TopLevel",
"name": "NO_MODULE",
"printedName": "NO_MODULE",
"json_format_version": 8
},
"ConstValues": []
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name KustomerChat
// swift-module-flags-ignorable: -enable-bare-slash-regex
// swift-compiler-version: Apple Swift version 6.0 effective-5.10 (swiftlang-6.0.0.9.10 clang-1600.0.26.2)
// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name KustomerChat
// swift-module-flags-ignorable: -no-verify-emitted-module-interface
import AVFoundation
import CommonCrypto
import DeveloperToolsSupport
Expand Down Expand Up @@ -314,20 +314,20 @@ public enum KUSAlertResult {
}
public struct KUSAlertInfo {
}
@objc @_Concurrency.MainActor(unsafe) public class KUSSWAlert : ObjectiveC.NSObject, UIKit.UIAlertViewDelegate {
@_Concurrency.MainActor(unsafe) public static var lastTextEntered: [Swift.String?]
@_Concurrency.MainActor(unsafe) public static func showAlert(_ title: Swift.String?, message: Swift.String?, buttonTitle: Swift.String, _ completion: KustomerChat.KUSAlertCompletionHandler? = nil)
@_Concurrency.MainActor(unsafe) public init(title: Swift.String?, message: Swift.String?)
@_Concurrency.MainActor(unsafe) public func setCancelAction(_ buttonTitle: Swift.String, _ completion: KustomerChat.KUSAlertCompletionHandler? = nil) -> KustomerChat.KUSSWAlert
@_Concurrency.MainActor(unsafe) public func setCancelAction(_ buttonTitle: Swift.String) -> KustomerChat.KUSSWAlert
@_Concurrency.MainActor(unsafe) public func addAction(_ buttonTitle: Swift.String, _ completion: KustomerChat.KUSAlertCompletionHandler? = nil) -> KustomerChat.KUSSWAlert
@_Concurrency.MainActor(unsafe) public func addDestructiveAction(_ buttonTitle: Swift.String, _ completion: KustomerChat.KUSAlertCompletionHandler? = nil) -> KustomerChat.KUSSWAlert
@_Concurrency.MainActor(unsafe) public func addDefaultAction(_ buttonTitle: Swift.String, _ completion: KustomerChat.KUSAlertCompletionHandler? = nil) -> KustomerChat.KUSSWAlert
@_Concurrency.MainActor(unsafe) public func addAction(_ buttonTitle: Swift.String) -> KustomerChat.KUSSWAlert
@_Concurrency.MainActor(unsafe) public func addTextField(_ text: Swift.String, placeholder: Swift.String? = nil) -> KustomerChat.KUSSWAlert
@_Concurrency.MainActor(unsafe) public func addTextField(_ text: Swift.String) -> KustomerChat.KUSSWAlert
@_Concurrency.MainActor(unsafe) public func show()
@_Concurrency.MainActor(unsafe) public func showActionSheet()
@objc @_Concurrency.MainActor @preconcurrency public class KUSSWAlert : ObjectiveC.NSObject, UIKit.UIAlertViewDelegate {
@_Concurrency.MainActor @preconcurrency public static var lastTextEntered: [Swift.String?]
@_Concurrency.MainActor @preconcurrency public static func showAlert(_ title: Swift.String?, message: Swift.String?, buttonTitle: Swift.String, _ completion: KustomerChat.KUSAlertCompletionHandler? = nil)
@_Concurrency.MainActor @preconcurrency public init(title: Swift.String?, message: Swift.String?)
@_Concurrency.MainActor @preconcurrency public func setCancelAction(_ buttonTitle: Swift.String, _ completion: KustomerChat.KUSAlertCompletionHandler? = nil) -> KustomerChat.KUSSWAlert
@_Concurrency.MainActor @preconcurrency public func setCancelAction(_ buttonTitle: Swift.String) -> KustomerChat.KUSSWAlert
@_Concurrency.MainActor @preconcurrency public func addAction(_ buttonTitle: Swift.String, _ completion: KustomerChat.KUSAlertCompletionHandler? = nil) -> KustomerChat.KUSSWAlert
@_Concurrency.MainActor @preconcurrency public func addDestructiveAction(_ buttonTitle: Swift.String, _ completion: KustomerChat.KUSAlertCompletionHandler? = nil) -> KustomerChat.KUSSWAlert
@_Concurrency.MainActor @preconcurrency public func addDefaultAction(_ buttonTitle: Swift.String, _ completion: KustomerChat.KUSAlertCompletionHandler? = nil) -> KustomerChat.KUSSWAlert
@_Concurrency.MainActor @preconcurrency public func addAction(_ buttonTitle: Swift.String) -> KustomerChat.KUSSWAlert
@_Concurrency.MainActor @preconcurrency public func addTextField(_ text: Swift.String, placeholder: Swift.String? = nil) -> KustomerChat.KUSSWAlert
@_Concurrency.MainActor @preconcurrency public func addTextField(_ text: Swift.String) -> KustomerChat.KUSSWAlert
@_Concurrency.MainActor @preconcurrency public func show()
@_Concurrency.MainActor @preconcurrency public func showActionSheet()
@objc deinit
}
public struct KnowledgeBaseArticle : Swift.Decodable {
Expand Down Expand Up @@ -902,11 +902,11 @@ public enum KnowledgeBaseDataRow {
case category(category: KustomerChat.KnowledgeBaseCategory, didSelect: ((_ row: KustomerChat.KnowledgeBaseCategory) -> Swift.Void)?)
case article(article: KustomerChat.KnowledgeBaseArticle, didSelect: ((_ row: KustomerChat.KnowledgeBaseArticle) -> Swift.Void)?)
}
@objc @_Concurrency.MainActor(unsafe) final public class ConfettiView : UIKit.UIView {
@_Concurrency.MainActor(unsafe) @objc dynamic public init()
@_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@_Concurrency.MainActor(unsafe) final public func emit(with contents: [KustomerChat.ConfettiView.Content], for duration: Foundation.TimeInterval = 3.0)
@_Concurrency.MainActor(unsafe) @objc override final public func willMove(toSuperview newSuperview: UIKit.UIView?)
@objc @_Concurrency.MainActor @preconcurrency final public class ConfettiView : UIKit.UIView {
@_Concurrency.MainActor @preconcurrency @objc dynamic public init()
@_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@_Concurrency.MainActor @preconcurrency final public func emit(with contents: [KustomerChat.ConfettiView.Content], for duration: Foundation.TimeInterval = 3.0)
@_Concurrency.MainActor @preconcurrency @objc override final public func willMove(toSuperview newSuperview: UIKit.UIView?)
public enum Content {
public enum Shape {
case circle
Expand All @@ -921,7 +921,7 @@ public enum KnowledgeBaseDataRow {
@objc deinit
}
extension KustomerChat.ConfettiView : QuartzCore.CAAnimationDelegate {
@_Concurrency.MainActor(unsafe) @objc final public func animationDidStop(_ animation: QuartzCore.CAAnimation, finished flag: Swift.Bool)
@_Concurrency.MainActor @preconcurrency @objc final public func animationDidStop(_ animation: QuartzCore.CAAnimation, finished flag: Swift.Bool)
}
extension UserNotifications.UNNotification {
public func isFromKustomer() -> Swift.Bool
Expand Down Expand Up @@ -1272,7 +1272,7 @@ public enum KnowledgeBaseCategoryViewMode : Swift.CaseIterable {
public static func == (a: KustomerChat.KnowledgeBaseCategoryViewMode, b: KustomerChat.KnowledgeBaseCategoryViewMode) -> Swift.Bool
public func hash(into hasher: inout Swift.Hasher)
public typealias AllCases = [KustomerChat.KnowledgeBaseCategoryViewMode]
public static var allCases: [KustomerChat.KnowledgeBaseCategoryViewMode] {
nonisolated public static var allCases: [KustomerChat.KnowledgeBaseCategoryViewMode] {
get
}
public var hashValue: Swift.Int {
Expand Down Expand Up @@ -1550,7 +1550,7 @@ public typealias KUSCustomDescribe = [Swift.String : Any]
@objc deinit
}
extension KustomerChat.KustomerClient : UIKit.UIAdaptivePresentationControllerDelegate {
@_Concurrency.MainActor(unsafe) @objc final public func presentationControllerDidDismiss(_ presentationController: UIKit.UIPresentationController)
@_Concurrency.MainActor @preconcurrency @objc final public func presentationControllerDidDismiss(_ presentationController: UIKit.UIPresentationController)
}
public enum PushEnvironment : Swift.String {
case development
Expand Down Expand Up @@ -1592,23 +1592,27 @@ public enum PushEnvironment : Swift.String {
}
@objc deinit
}
@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) final public class SupportTabViewController : UIKit.UITabBarController {
@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency final public class SupportTabViewController : UIKit.UITabBarController {
@objc deinit
@_Concurrency.MainActor(unsafe) @objc override final public func viewDidDisappear(_ animated: Swift.Bool)
@_Concurrency.MainActor(unsafe) @objc override final public func viewWillDisappear(_ animated: Swift.Bool)
@_Concurrency.MainActor(unsafe) @objc override final public func viewWillAppear(_ animated: Swift.Bool)
@_Concurrency.MainActor(unsafe) @objc override final public func viewDidAppear(_ animated: Swift.Bool)
@_Concurrency.MainActor(unsafe) @objc override final public func viewDidLoad()
@_Concurrency.MainActor(unsafe) @objc override final public func viewDidLayoutSubviews()
@_Concurrency.MainActor(unsafe) final public var isCurrentlyVisible: Swift.Bool {
@_Concurrency.MainActor @preconcurrency @objc override final public func viewDidDisappear(_ animated: Swift.Bool)
@_Concurrency.MainActor @preconcurrency @objc override final public func viewWillDisappear(_ animated: Swift.Bool)
@_Concurrency.MainActor @preconcurrency @objc override final public func viewWillAppear(_ animated: Swift.Bool)
@_Concurrency.MainActor @preconcurrency @objc override final public func viewDidAppear(_ animated: Swift.Bool)
@_Concurrency.MainActor @preconcurrency @objc override final public func viewDidLoad()
@_Concurrency.MainActor @preconcurrency @objc override final public func viewDidLayoutSubviews()
@_Concurrency.MainActor @preconcurrency @objc override final public var isTabBarHidden: Swift.Bool {
@objc get
@objc set
}
@_Concurrency.MainActor @preconcurrency final public var isCurrentlyVisible: Swift.Bool {
get
}
}
extension KustomerChat.SupportTabViewController : KustomerChat.KUSChatListener {
@_Concurrency.MainActor(unsafe) final public func onUnreadCountChange(count: Swift.Int)
@_Concurrency.MainActor @preconcurrency final public func onUnreadCountChange(count: Swift.Int)
}
extension KustomerChat.SupportTabViewController : KustomerChat.CoordinatorDelegate {
@_Concurrency.MainActor(unsafe) final public func coordinatorDidHide(_ coordinator: any KustomerChat.Coordinator)
@_Concurrency.MainActor @preconcurrency final public func coordinatorDidHide(_ coordinator: any KustomerChat.Coordinator)
}
public struct BusinessHoliday : Swift.Codable {
public func encode(to encoder: any Swift.Encoder) throws
Expand Down Expand Up @@ -1793,6 +1797,7 @@ extension KustomerChat.KustomerLanguage : Swift.RawRepresentable {}
extension KustomerChat.KustomerAssetLanguage : Swift.Equatable {}
extension KustomerChat.KustomerAssetLanguage : Swift.Hashable {}
extension KustomerChat.KustomerAssetLanguage : Swift.RawRepresentable {}
extension KustomerChat.KUSSWAlert : Swift.Sendable {}
extension KustomerChat.Weekday : Swift.Equatable {}
extension KustomerChat.Weekday : Swift.Hashable {}
extension KustomerChat.Weekday : Swift.RawRepresentable {}
Expand Down
Binary file not shown.
Loading
Loading