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 4.0.1 #90

Merged
merged 1 commit into from
Mar 8, 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 = '4.0.0'
s.version = '4.0.1'
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 @@ -10,34 +10,34 @@
<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>
<dict>
<key>BinaryPath</key>
<string>KustomerChat.framework/KustomerChat</string>
<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>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if defined(__OBJC__)



@class NSCoder;

/// :nodoc:
Expand Down Expand Up @@ -342,6 +343,7 @@ SWIFT_CLASS("_TtC12KustomerChat14KustomerClient")




@class UIPresentationController;

@interface KustomerClient (SWIFT_EXTENSION(KustomerChat)) <UIAdaptivePresentationControllerDelegate>
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -1595,8 +1595,9 @@ public enum KustomerLogType : Swift.String {
case warning
case error
case info
@available(*, deprecated, message: "V2 of Logging will not support this value")
case fatal
@available(*, deprecated)
@available(*, deprecated, message: "V2 of Logging will not support this value")
case multithreadingWarning
public init?(rawValue: Swift.String)
public typealias RawValue = Swift.String
Expand Down Expand Up @@ -1826,6 +1827,7 @@ public struct KUSChatMessage : Swift.CustomStringConvertible, Swift.Decodable {
public var conversationId: Swift.String?
public var brandId: Swift.String?
public var createdAt: Foundation.Date?
public var importedAt: Foundation.Date?
public var status: KustomerChat.KUSChatMessageStatus?
public var messageType: KustomerChat.KUSMessageType?
public var direction: KustomerChat.KUSChatMessageDirection?
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -1595,8 +1595,9 @@ public enum KustomerLogType : Swift.String {
case warning
case error
case info
@available(*, deprecated, message: "V2 of Logging will not support this value")
case fatal
@available(*, deprecated)
@available(*, deprecated, message: "V2 of Logging will not support this value")
case multithreadingWarning
public init?(rawValue: Swift.String)
public typealias RawValue = Swift.String
Expand Down Expand Up @@ -1826,6 +1827,7 @@ public struct KUSChatMessage : Swift.CustomStringConvertible, Swift.Decodable {
public var conversationId: Swift.String?
public var brandId: Swift.String?
public var createdAt: Foundation.Date?
public var importedAt: Foundation.Date?
public var status: KustomerChat.KUSChatMessageStatus?
public var messageType: KustomerChat.KUSMessageType?
public var direction: KustomerChat.KUSChatMessageDirection?
Expand Down
Loading