Skip to content

Commit

Permalink
v 1.14.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunilkumarr committed Jan 9, 2024
1 parent a8ac476 commit d327b54
Show file tree
Hide file tree
Showing 22 changed files with 35 additions and 25 deletions.
2 changes: 1 addition & 1 deletion BrandMessenger.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "BrandMessenger"
s.version = "1.14.3"
s.version = "1.14.4"
s.summary = "BrandMessenger"
s.description = "Messaging and Chat API for Mobile Apps and Websites"
s.homepage = "https://khoros.com"
Expand Down
14 changes: 7 additions & 7 deletions BrandMessengerCore.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,32 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>ios-arm64_i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>BrandMessengerCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
<string>i386</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_i386_x86_64-simulator</string>
<string>ios-arm64_armv7</string>
<key>LibraryPath</key>
<string>BrandMessengerCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
<string>armv7</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.
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,8 @@ extern NSString *const KBM_GENERIC_NOTIFICATION_TITLE_TEXT;
+ (BOOL)validateJsonClass:(NSDictionary *)jsonClass;

+ (BOOL)validateJsonArrayClass:(NSArray *)jsonClass;

+ (BOOL)validateJsonMutableArrayClass:(NSMutableArray *)mutableArrayClass;
@end

NS_ASSUME_NONNULL_END
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,8 @@ extern NSString *const KBM_GENERIC_NOTIFICATION_TITLE_TEXT;
+ (BOOL)validateJsonClass:(NSDictionary *)jsonClass;

+ (BOOL)validateJsonArrayClass:(NSArray *)jsonClass;

+ (BOOL)validateJsonMutableArrayClass:(NSMutableArray *)mutableArrayClass;
@end

NS_ASSUME_NONNULL_END
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@
</data>
<key>Headers/KBMUtilityClass.h</key>
<data>
/nBgnexQ5+CaZBQTZhCK7+Qju/s=
2ra2aNrjjO4Q6jpZylRkHRC/+Q8=
</data>
<key>Headers/KBMWidget.h</key>
<data>
Expand Down Expand Up @@ -582,7 +582,7 @@
</data>
<key>Info.plist</key>
<data>
juhq2QGpLRn29F8wDiuP0F9EiRs=
mlbaDhoNpy3gLGXm+m70t0oJon8=
</data>
<key>MQTTClient.momd/MQTTClient.mom</key>
<data>
Expand Down Expand Up @@ -1843,11 +1843,11 @@
<dict>
<key>hash</key>
<data>
/nBgnexQ5+CaZBQTZhCK7+Qju/s=
2ra2aNrjjO4Q6jpZylRkHRC/+Q8=
</data>
<key>hash2</key>
<data>
kv1DSOvhoayrwMjRzD8sggKFbOK7Zl9xXlzGfd62K60=
maqlhOGk7MYs4xSG1SoMYD15T1/oSLI6+V+BuBzbVGE=
</data>
</dict>
<key>Headers/KBMWidget.h</key>
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,7 @@ public protocol KBMConversationViewModelDelegate : AnyObject {
func willSendMessage()
func updateTyingStatus(status: Swift.Bool, userId: Swift.String)
func deleteQuickReplyMessage(indexPath: Foundation.IndexPath)
func reloadTableView()
}
@objc open class KBMConversationViewModel : ObjectiveC.NSObject {
open var contactId: Swift.String? {
Expand Down Expand Up @@ -1013,7 +1014,7 @@ public protocol KBMMessageViewModel {
var fileMetaInfo: BrandMessengerCore.KBMFileMetaInfo? { get }
var receiverId: Swift.String? { get }
var isReplyMessage: Swift.Bool { get }
var metadata: [Swift.String : Any]? { get }
var metadata: [Swift.String : Any]? { get set }
var source: Swift.Int16 { get }
var contentType: RichMessageKit.Message.ContentType { get }
var authorName: Swift.String? { get }
Expand Down Expand Up @@ -1272,6 +1273,7 @@ extension BrandMessengerUI.KBMConversationViewController : BrandMessengerUI.KBMC
@objc @_Concurrency.MainActor(unsafe) dynamic open func loadingStarted()
@objc @_Concurrency.MainActor(unsafe) dynamic open func loadingFinished(error _: Swift.Error?)
@_Concurrency.MainActor(unsafe) public func messageUpdated()
@_Concurrency.MainActor(unsafe) public func reloadTableView()
@_Concurrency.MainActor(unsafe) public func updateMessageAt(indexPath: Foundation.IndexPath)
@_Concurrency.MainActor(unsafe) public func updateMessageAt(indexPath: Foundation.IndexPath, quickReplyIdentifier: Swift.String?, suggestedReplyToButtonIndex: Swift.Int?, suggestedReplyToCardIndex: Swift.Int?)
@_Concurrency.MainActor(unsafe) public func moveTableViewToBottom(indexPath: Foundation.IndexPath)
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,7 @@ public protocol KBMConversationViewModelDelegate : AnyObject {
func willSendMessage()
func updateTyingStatus(status: Swift.Bool, userId: Swift.String)
func deleteQuickReplyMessage(indexPath: Foundation.IndexPath)
func reloadTableView()
}
@objc open class KBMConversationViewModel : ObjectiveC.NSObject {
open var contactId: Swift.String? {
Expand Down Expand Up @@ -1013,7 +1014,7 @@ public protocol KBMMessageViewModel {
var fileMetaInfo: BrandMessengerCore.KBMFileMetaInfo? { get }
var receiverId: Swift.String? { get }
var isReplyMessage: Swift.Bool { get }
var metadata: [Swift.String : Any]? { get }
var metadata: [Swift.String : Any]? { get set }
var source: Swift.Int16 { get }
var contentType: RichMessageKit.Message.ContentType { get }
var authorName: Swift.String? { get }
Expand Down Expand Up @@ -1272,6 +1273,7 @@ extension BrandMessengerUI.KBMConversationViewController : BrandMessengerUI.KBMC
@objc @_Concurrency.MainActor(unsafe) dynamic open func loadingStarted()
@objc @_Concurrency.MainActor(unsafe) dynamic open func loadingFinished(error _: Swift.Error?)
@_Concurrency.MainActor(unsafe) public func messageUpdated()
@_Concurrency.MainActor(unsafe) public func reloadTableView()
@_Concurrency.MainActor(unsafe) public func updateMessageAt(indexPath: Foundation.IndexPath)
@_Concurrency.MainActor(unsafe) public func updateMessageAt(indexPath: Foundation.IndexPath, quickReplyIdentifier: Swift.String?, suggestedReplyToButtonIndex: Swift.Int?, suggestedReplyToCardIndex: Swift.Int?)
@_Concurrency.MainActor(unsafe) public func moveTableViewToBottom(indexPath: Foundation.IndexPath)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,7 @@ public protocol KBMConversationViewModelDelegate : AnyObject {
func willSendMessage()
func updateTyingStatus(status: Swift.Bool, userId: Swift.String)
func deleteQuickReplyMessage(indexPath: Foundation.IndexPath)
func reloadTableView()
}
@objc open class KBMConversationViewModel : ObjectiveC.NSObject {
open var contactId: Swift.String? {
Expand Down Expand Up @@ -1013,7 +1014,7 @@ public protocol KBMMessageViewModel {
var fileMetaInfo: BrandMessengerCore.KBMFileMetaInfo? { get }
var receiverId: Swift.String? { get }
var isReplyMessage: Swift.Bool { get }
var metadata: [Swift.String : Any]? { get }
var metadata: [Swift.String : Any]? { get set }
var source: Swift.Int16 { get }
var contentType: RichMessageKit.Message.ContentType { get }
var authorName: Swift.String? { get }
Expand Down Expand Up @@ -1272,6 +1273,7 @@ extension BrandMessengerUI.KBMConversationViewController : BrandMessengerUI.KBMC
@objc @_Concurrency.MainActor(unsafe) dynamic open func loadingStarted()
@objc @_Concurrency.MainActor(unsafe) dynamic open func loadingFinished(error _: Swift.Error?)
@_Concurrency.MainActor(unsafe) public func messageUpdated()
@_Concurrency.MainActor(unsafe) public func reloadTableView()
@_Concurrency.MainActor(unsafe) public func updateMessageAt(indexPath: Foundation.IndexPath)
@_Concurrency.MainActor(unsafe) public func updateMessageAt(indexPath: Foundation.IndexPath, quickReplyIdentifier: Swift.String?, suggestedReplyToButtonIndex: Swift.Int?, suggestedReplyToCardIndex: Swift.Int?)
@_Concurrency.MainActor(unsafe) public func moveTableViewToBottom(indexPath: Foundation.IndexPath)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
</data>
<key>Info.plist</key>
<data>
BxLowJLaFistbGCy3F2JUKq+2r8=
h/LiOjP1nmKtsuM7OZkqWHks7Ic=
</data>
<key>KBMAccountSuspensionView.nib</key>
<data>
Expand Down Expand Up @@ -226,23 +226,23 @@
</data>
<key>Modules/BrandMessengerUI.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
<data>
kPpUe+5qNb4Q3tnBrf+9y+rZA0k=
wh9JttbQbdq6tgoAFazeUbzGP4E=
</data>
<key>Modules/BrandMessengerUI.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<data>
y9A/ogTdxQBZ3x3YaJeGqBvKrtY=
iiI4+TMDgvR9r6nTOboFRbZA7wo=
</data>
<key>Modules/BrandMessengerUI.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<data>
wPxyJCiq8XzqxJFq2KlJXRmxe4w=
</data>
<key>Modules/BrandMessengerUI.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
<data>
VbMiFSWVzG+gRKaY/NbZI2Mb/Wc=
+tDy01eVXeuTRNPUaoO49OOTwz0=
</data>
<key>Modules/BrandMessengerUI.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<data>
EZHXll8HTPx/MzDePi9QC99pLhM=
ezOUH4QTk8WPMSqx/TYCO6lYya4=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -681,14 +681,14 @@
<dict>
<key>hash2</key>
<data>
CaFXFUXTLZZtIC9SIZ1ZwY/OTEhpR9vRNJzgj6w/Pt0=
GZgU2ErDezDfl5rw//UuPw4h6XcyrvQeQUkhYq/2Alc=
</data>
</dict>
<key>Modules/BrandMessengerUI.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
hpwoxPyoveJMsHu8RkjZbEA3l4j9XFUPFduB0ta8mqU=
OBAAlLGUVEVOCFW4x827cvS5wo0iJrEX8vpE2P/otF8=
</data>
</dict>
<key>Modules/BrandMessengerUI.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
Expand All @@ -702,14 +702,14 @@
<dict>
<key>hash2</key>
<data>
clqZZhndBp2mgGKS9B1sMWlW8URjvVZurrZ10OSV2+o=
3c9XMv0McNXHlIzKKg3yWzv2A6Fi8bpCgKsa/Esq/mc=
</data>
</dict>
<key>Modules/BrandMessengerUI.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
91eTS7oyHj6bwUSX5y1kHj6F8/ymqsbAnir3fgWrfSg=
OA5MlgAIOWOAPYnKweCgc/Y67k2fxpYceaeC1iGeSq8=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</data>
<key>Info.plist</key>
<data>
8ynRv5yVxz/4HbQexIK0vhip84g=
sIe2AY4LsvUzBjEMVQYCfwt6LkM=
</data>
<key>Modules/RichMessageKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
<data>
Expand Down

0 comments on commit d327b54

Please sign in to comment.