Skip to content

Commit

Permalink
Version 2.7.8
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelBoyce committed Mar 14, 2023
1 parent 5938f38 commit 49fe725
Show file tree
Hide file tree
Showing 24 changed files with 4,361 additions and 4,847 deletions.
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 = '2.7.7'
s.version = '2.7.8'
s.swift_version = '5.0'
s.cocoapods_version = '>= 1.10.0'
s.authors = 'Kustomer.com'
Expand Down
10 changes: 5 additions & 5 deletions KustomerChat.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,32 @@
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>KustomerChat.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>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>KustomerChat.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.
Binary file not shown.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ final public class KUSKBArticle : KustomerChat.KUSKBItemBase, Swift.CustomString
public func getChatSettings() -> KustomerChat.KUSChatSettings
public func isChatAvailable() -> Swift.Bool?
public func createConversation(firstCustomerMessage text: Swift.String? = nil, title: Swift.String? = nil, customDescribe: KustomerChat.KUSCustomDescribe? = nil, action: KustomerChat.KUSMessageAction? = nil, mllNode: KustomerChat.KUSMLLNode? = nil, image: UIKit.UIImage? = nil, fileURL: Foundation.URL? = nil, overrideAssistantId: Swift.String? = nil, initialMessages: [KustomerChat.KUSInitialMessage]? = nil, completion: @escaping ((Swift.Result<(conversation: KustomerChat.KUSConversation, messages: [KustomerChat.KUSChatMessage], customer: KustomerChat.KUSCustomer?), KustomerChat.KError>) -> Swift.Void))
public func sendChatMessage(text: Swift.String, conversationId: Swift.String, completion: @escaping ((Swift.Result<(message: KustomerChat.KUSChatMessage, conversation: KustomerChat.KUSConversation), KustomerChat.KError>) -> Swift.Void))
public func sendChatMessage(text: Swift.String, conversationId: Swift.String, initialAgentMessages: [KustomerChat.KUSInitialMessage]? = nil, completion: @escaping ((Swift.Result<(message: KustomerChat.KUSChatMessage, conversation: KustomerChat.KUSConversation), KustomerChat.KError>) -> Swift.Void))
public func sendChatMessage(action: KustomerChat.KUSMessageAction, conversationId: Swift.String, additionalParams: [Swift.String : Any]? = nil, completion _outerCompletion: @escaping (Swift.Result<(message: KustomerChat.KUSChatMessage, conversation: KustomerChat.KUSConversation), KustomerChat.KError>) -> Swift.Void)
public func sendChatMessage(text: Swift.String, assistant: KustomerChat.KUSAssistant, conversationId: Swift.String, completion _outerCompletion: @escaping (Swift.Result<(message: KustomerChat.KUSChatMessage, conversation: KustomerChat.KUSConversation), KustomerChat.KError>) -> Swift.Void)
public func sendChatMessage(mllNode: KustomerChat.KUSMLLNode, conversationId: Swift.String, additionalParams: [Swift.String : Any]? = nil, completion _outerCompletion: @escaping (Swift.Result<(message: KustomerChat.KUSChatMessage, conversation: KustomerChat.KUSConversation), KustomerChat.KError>) -> Swift.Void)
Expand Down Expand Up @@ -1101,7 +1101,10 @@ public struct KUSConversation : Swift.CustomStringConvertible, Swift.Codable {
public var id: Swift.String?
public var createdAt: Foundation.Date?
public var lastMessageAt: Foundation.Date?
public var status: KustomerChat.KUSConversationStatus?
@available(*, deprecated, message: "`status` field no longer supported - use `lockedAt` or `lockReason` to determine the status of a KUSConversation")
public var status: KustomerChat.KUSConversationStatus? {
get
}
public var brandId: Swift.String?
public var lockedAt: Foundation.Date?
public var lockedByCustomer: Swift.Bool?
Expand Down Expand Up @@ -1613,8 +1616,6 @@ public typealias KUSCustomDescribe = [Swift.String : Swift.String]
get
}
final public func changeActiveAssistant(_ na: KustomerChat.ActiveAssistantOptions)
@available(*, deprecated, message: "Changing brand ID's on the fly is no longer supported")
final public func changeBrand(brandId nbid: Swift.String, completion: ((Swift.Result<Swift.Void, KustomerChat.KError>) -> Swift.Void)? = nil)
final public func changeBusinessSchedule(scheduleId: Swift.String?, completion: ((Swift.Result<Swift.Void, KustomerChat.KError>) -> Swift.Void)? = nil)
final public func getActiveAssistantID() -> Swift.String?
final public func getActiveAssistantStartDialog() -> Swift.String?
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ final public class KUSKBArticle : KustomerChat.KUSKBItemBase, Swift.CustomString
public func getChatSettings() -> KustomerChat.KUSChatSettings
public func isChatAvailable() -> Swift.Bool?
public func createConversation(firstCustomerMessage text: Swift.String? = nil, title: Swift.String? = nil, customDescribe: KustomerChat.KUSCustomDescribe? = nil, action: KustomerChat.KUSMessageAction? = nil, mllNode: KustomerChat.KUSMLLNode? = nil, image: UIKit.UIImage? = nil, fileURL: Foundation.URL? = nil, overrideAssistantId: Swift.String? = nil, initialMessages: [KustomerChat.KUSInitialMessage]? = nil, completion: @escaping ((Swift.Result<(conversation: KustomerChat.KUSConversation, messages: [KustomerChat.KUSChatMessage], customer: KustomerChat.KUSCustomer?), KustomerChat.KError>) -> Swift.Void))
public func sendChatMessage(text: Swift.String, conversationId: Swift.String, completion: @escaping ((Swift.Result<(message: KustomerChat.KUSChatMessage, conversation: KustomerChat.KUSConversation), KustomerChat.KError>) -> Swift.Void))
public func sendChatMessage(text: Swift.String, conversationId: Swift.String, initialAgentMessages: [KustomerChat.KUSInitialMessage]? = nil, completion: @escaping ((Swift.Result<(message: KustomerChat.KUSChatMessage, conversation: KustomerChat.KUSConversation), KustomerChat.KError>) -> Swift.Void))
public func sendChatMessage(action: KustomerChat.KUSMessageAction, conversationId: Swift.String, additionalParams: [Swift.String : Any]? = nil, completion _outerCompletion: @escaping (Swift.Result<(message: KustomerChat.KUSChatMessage, conversation: KustomerChat.KUSConversation), KustomerChat.KError>) -> Swift.Void)
public func sendChatMessage(text: Swift.String, assistant: KustomerChat.KUSAssistant, conversationId: Swift.String, completion _outerCompletion: @escaping (Swift.Result<(message: KustomerChat.KUSChatMessage, conversation: KustomerChat.KUSConversation), KustomerChat.KError>) -> Swift.Void)
public func sendChatMessage(mllNode: KustomerChat.KUSMLLNode, conversationId: Swift.String, additionalParams: [Swift.String : Any]? = nil, completion _outerCompletion: @escaping (Swift.Result<(message: KustomerChat.KUSChatMessage, conversation: KustomerChat.KUSConversation), KustomerChat.KError>) -> Swift.Void)
Expand Down Expand Up @@ -1101,7 +1101,10 @@ public struct KUSConversation : Swift.CustomStringConvertible, Swift.Codable {
public var id: Swift.String?
public var createdAt: Foundation.Date?
public var lastMessageAt: Foundation.Date?
public var status: KustomerChat.KUSConversationStatus?
@available(*, deprecated, message: "`status` field no longer supported - use `lockedAt` or `lockReason` to determine the status of a KUSConversation")
public var status: KustomerChat.KUSConversationStatus? {
get
}
public var brandId: Swift.String?
public var lockedAt: Foundation.Date?
public var lockedByCustomer: Swift.Bool?
Expand Down Expand Up @@ -1613,8 +1616,6 @@ public typealias KUSCustomDescribe = [Swift.String : Swift.String]
get
}
final public func changeActiveAssistant(_ na: KustomerChat.ActiveAssistantOptions)
@available(*, deprecated, message: "Changing brand ID's on the fly is no longer supported")
final public func changeBrand(brandId nbid: Swift.String, completion: ((Swift.Result<Swift.Void, KustomerChat.KError>) -> Swift.Void)? = nil)
final public func changeBusinessSchedule(scheduleId: Swift.String?, completion: ((Swift.Result<Swift.Void, KustomerChat.KError>) -> Swift.Void)? = nil)
final public func getActiveAssistantID() -> Swift.String?
final public func getActiveAssistantStartDialog() -> Swift.String?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<dict>
<key>Assets.car</key>
<data>
lfNsQdeVE4Byuzg/z0PAoQBW9KM=
CY+9H62nnlJVyj4JBhOVckRX1Cs=
</data>
<key>Headers/KustomerChat-Swift.h</key>
<data>
Expand All @@ -18,27 +18,27 @@
</data>
<key>Info.plist</key>
<data>
kBoq211GZk3m4G2Y+1nAM0c/ok0=
sp0cnxrQJ2+DzhUzQb8E6xBtUp0=
</data>
<key>Modules/KustomerChat.swiftmodule/arm64-apple-ios.abi.json</key>
<data>
/4wIWvSI/nLTk2H3BW5WBHQvROo=
E9PrpxApft6mQdP08zUZ1tH2HUY=
</data>
<key>Modules/KustomerChat.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
<data>
/GL8PQs+rmaWYtWMP1CMzpTQx60=
6ZB6JP4apzmFITT6iHInbwQXE3s=
</data>
<key>Modules/KustomerChat.swiftmodule/arm64-apple-ios.swiftdoc</key>
<data>
TvKlkJuH/xnSe/RYUQnaBYu/BjM=
qVC+Rucb6ttsR4xHi0mdd+lMX4w=
</data>
<key>Modules/KustomerChat.swiftmodule/arm64-apple-ios.swiftinterface</key>
<data>
/GL8PQs+rmaWYtWMP1CMzpTQx60=
6ZB6JP4apzmFITT6iHInbwQXE3s=
</data>
<key>Modules/KustomerChat.swiftmodule/arm64-apple-ios.swiftmodule</key>
<data>
vokniUdvFz/Qvbw46u2PUrcE7U8=
lJ4/f1u8mknkjeAZol4Rzrxwo/s=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -1059,7 +1059,7 @@
<dict>
<key>hash2</key>
<data>
kH7cxw6330fMJwDEcbMXPnVR6EgQt3he0QmcuvLXrBs=
pVW2Agpuvpu/O1lNSKwtK8EJkJyNAinKgWIBePpKl3w=
</data>
</dict>
<key>Headers/KustomerChat-Swift.h</key>
Expand All @@ -1080,35 +1080,35 @@
<dict>
<key>hash2</key>
<data>
cE2K5ocugv+yMr2ThFlG1ORA3cMyneenAWZzHGygNqo=
3oI+Cv3Yyq8DtHwtBlLB5VriMSl0iAzEgJdWrmmXKX8=
</data>
</dict>
<key>Modules/KustomerChat.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
dgG/fFp9U5PF8VIPmtwJgP9AzL6oeSwQX/YFqB3DXZQ=
tI3qmopejYdqaPnEHAJsvGMo6jo0ED7Q/y2QOgXWE6c=
</data>
</dict>
<key>Modules/KustomerChat.swiftmodule/arm64-apple-ios.swiftdoc</key>
<dict>
<key>hash2</key>
<data>
/70Ii5Ciwmk8s6V6gPqEmyDVNZKyfQdlAM6h3OeyPno=
O/jKOnO9wIXNKjZ/kBzPtNKncnUQt7CUnx854yMLQ/k=
</data>
</dict>
<key>Modules/KustomerChat.swiftmodule/arm64-apple-ios.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
dgG/fFp9U5PF8VIPmtwJgP9AzL6oeSwQX/YFqB3DXZQ=
tI3qmopejYdqaPnEHAJsvGMo6jo0ED7Q/y2QOgXWE6c=
</data>
</dict>
<key>Modules/KustomerChat.swiftmodule/arm64-apple-ios.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
wgK4CGfWBKTTe7LQc54phP58H6va9TqO4jIPbuUuX7w=
1GuxeDsxktXpCVSgUKEsRsvQKSNB9K0iZ5LUIE/0qjQ=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>2.7.7</string>
<string>2.7.8</string>
<key>CFBundleVersion</key>
<string>2</string>
</dict>
Expand Down
Loading

0 comments on commit 49fe725

Please sign in to comment.