@kindly-ai/react-native 1.0.16 → 1.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +2 -2
- package/android/maven-repo/ai/kindly/sdk/2.0.15/sdk-2.0.15.aar +0 -0
- package/android/maven-repo/ai/kindly/sdk/{2.0.14/sdk-2.0.14.pom → 2.0.15/sdk-2.0.15.pom} +1 -1
- package/ios/Frameworks/Kindly.xcframework/Info.plist +5 -5
- package/ios/Frameworks/Kindly.xcframework/_CodeSignature/CodeDirectory +0 -0
- package/ios/Frameworks/Kindly.xcframework/_CodeSignature/CodeResources +44 -44
- package/ios/Frameworks/Kindly.xcframework/_CodeSignature/CodeSignature +0 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64/Kindly.framework/Assets.car +0 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64/Kindly.framework/Headers/Kindly-Swift.h +31 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64/Kindly.framework/Info.plist +0 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64/Kindly.framework/Kindly +0 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64/Kindly.framework/Modules/Kindly.swiftmodule/arm64-apple-ios.abi.json +10997 -8742
- package/ios/Frameworks/Kindly.xcframework/ios-arm64/Kindly.framework/Modules/Kindly.swiftmodule/arm64-apple-ios.private.swiftinterface +57 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64/Kindly.framework/Modules/Kindly.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64/Kindly.framework/Modules/Kindly.swiftmodule/arm64-apple-ios.swiftinterface +57 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64/Kindly.framework/_CodeSignature/CodeResources +13 -13
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Assets.car +0 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Headers/Kindly-Swift.h +62 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Info.plist +0 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Kindly +0 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Modules/Kindly.swiftmodule/arm64-apple-ios-simulator.abi.json +10997 -8742
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Modules/Kindly.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +57 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Modules/Kindly.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Modules/Kindly.swiftmodule/arm64-apple-ios-simulator.swiftinterface +57 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.abi.json +10997 -8742
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +57 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +57 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/_CodeSignature/CodeResources +21 -21
- package/package.json +1 -1
- package/android/maven-repo/ai/kindly/sdk/2.0.14/sdk-2.0.14.aar +0 -0
|
@@ -34,6 +34,25 @@ import _Concurrency
|
|
|
34
34
|
import _StringProcessing
|
|
35
35
|
import _SwiftConcurrencyShims
|
|
36
36
|
import ObjectiveC.runtime
|
|
37
|
+
@objc @_inheritsConvenienceInitializers open class KindlyNotificationServiceExtension : UserNotifications.UNNotificationServiceExtension {
|
|
38
|
+
@objc override dynamic public init()
|
|
39
|
+
@objc override dynamic open func didReceive(_ request: UserNotifications.UNNotificationRequest, withContentHandler contentHandler: @escaping (UserNotifications.UNNotificationContent) -> Swift.Void)
|
|
40
|
+
@objc override dynamic open func serviceExtensionTimeWillExpire()
|
|
41
|
+
open func customize(_ content: UserNotifications.UNMutableNotificationContent, payload: Kindly.KindlyPushDecryption.DecryptedPayload?)
|
|
42
|
+
@objc deinit
|
|
43
|
+
}
|
|
44
|
+
public enum KindlyPushDecryption {
|
|
45
|
+
public struct DecryptedPayload {
|
|
46
|
+
public let chatId: Swift.String
|
|
47
|
+
public let title: Swift.String
|
|
48
|
+
public let body: Swift.String
|
|
49
|
+
public init(chatId: Swift.String, title: Swift.String, body: Swift.String)
|
|
50
|
+
}
|
|
51
|
+
public static func isKindlyNotification(_ userInfo: [Swift.AnyHashable : Any]) -> Swift.Bool
|
|
52
|
+
public static func isDecrypted(_ userInfo: [Swift.AnyHashable : Any]) -> Swift.Bool
|
|
53
|
+
public static func apply(_ payload: Kindly.KindlyPushDecryption.DecryptedPayload, to content: UserNotifications.UNMutableNotificationContent)
|
|
54
|
+
public static func decrypt(userInfo: [Swift.AnyHashable : Any]) -> Kindly.KindlyPushDecryption.DecryptedPayload?
|
|
55
|
+
}
|
|
37
56
|
public struct ExternalChatMessage : Swift.Hashable, Swift.Identifiable, Swift.Comparable {
|
|
38
57
|
public let id: Swift.String
|
|
39
58
|
public static func < (lhs: Kindly.ExternalChatMessage, rhs: Kindly.ExternalChatMessage) -> Swift.Bool
|
|
@@ -58,6 +77,10 @@ public struct KindlySDKConfig {
|
|
|
58
77
|
get
|
|
59
78
|
set
|
|
60
79
|
}
|
|
80
|
+
public var getAuthCredentials: Kindly.AuthCredentialsCallback? {
|
|
81
|
+
get
|
|
82
|
+
set
|
|
83
|
+
}
|
|
61
84
|
public var allowCameraAccess: Swift.Bool
|
|
62
85
|
public var allowPhotoLibraryAccess: Swift.Bool
|
|
63
86
|
public var form: Kindly.KindlySDKConfig.FormConfig
|
|
@@ -359,6 +382,25 @@ final public class KindlyChatClient {
|
|
|
359
382
|
public init(config: Kindly.CoreSDKConfig, behaviorType: Kindly.BehaviorTypeEnum)
|
|
360
383
|
@objc deinit
|
|
361
384
|
}
|
|
385
|
+
public struct KindlyAuthCredentials {
|
|
386
|
+
public let idToken: Swift.String?
|
|
387
|
+
public let accessToken: Swift.String?
|
|
388
|
+
public let issuer: Swift.String?
|
|
389
|
+
public let expiresAt: Foundation.Date?
|
|
390
|
+
public init(idToken: Swift.String? = nil, accessToken: Swift.String? = nil, issuer: Swift.String? = nil, expiresAt: Foundation.Date? = nil)
|
|
391
|
+
public init(idToken: Swift.String? = nil, accessToken: Swift.String? = nil, issuer: Swift.String? = nil, expiresAtUnixSeconds: Swift.Int?)
|
|
392
|
+
}
|
|
393
|
+
extension Kindly.KindlyAuthCredentials {
|
|
394
|
+
public var bearerToken: Swift.String? {
|
|
395
|
+
get
|
|
396
|
+
}
|
|
397
|
+
public var hasToken: Swift.Bool {
|
|
398
|
+
get
|
|
399
|
+
}
|
|
400
|
+
public var companionAccessToken: Swift.String? {
|
|
401
|
+
get
|
|
402
|
+
}
|
|
403
|
+
}
|
|
362
404
|
@objc @_inheritsConvenienceInitializers public class NotificationDelegate : ObjectiveC.NSObject, UserNotifications.UNUserNotificationCenterDelegate {
|
|
363
405
|
@objc public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void)
|
|
364
406
|
@objc public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void)
|
|
@@ -530,11 +572,16 @@ extension Kindly.KindlyChatClient {
|
|
|
530
572
|
public static func setCustomTheme(_ theme: any Kindly.Theme)
|
|
531
573
|
public static func setCustomTheme(background: UIKit.UIColor? = nil, botMessageBackground: UIKit.UIColor? = nil, botMessageText: UIKit.UIColor? = nil, buttonBackground: UIKit.UIColor? = nil, buttonOutline: UIKit.UIColor? = nil, buttonSelectedBackground: UIKit.UIColor? = nil, buttonText: UIKit.UIColor? = nil, defaultShadow: UIKit.UIColor? = nil, inputBackground: UIKit.UIColor? = nil, inputCursor: UIKit.UIColor? = nil, inputText: UIKit.UIColor? = nil, navBarBackground: UIKit.UIColor? = nil, navBarText: UIKit.UIColor? = nil, userMessageBackground: UIKit.UIColor? = nil, userMessageText: UIKit.UIColor? = nil)
|
|
532
574
|
public static func clearCustomTheme()
|
|
575
|
+
public static var openChatOnNotificationTap: Swift.Bool {
|
|
576
|
+
get
|
|
577
|
+
set
|
|
578
|
+
}
|
|
533
579
|
public static var enableCrashReporting: Swift.Bool {
|
|
534
580
|
get
|
|
535
581
|
set
|
|
536
582
|
}
|
|
537
583
|
final public class func start(botKey: Swift.String, languageCode: Swift.String = "en", market: Swift.String, authTokenCallback: Kindly.AuthTokenCallback? = nil)
|
|
584
|
+
final public class func start(botKey: Swift.String, languageCode: Swift.String = "en", market: Swift.String, authCredentialsCallback: @escaping Kindly.AuthCredentialsCallback)
|
|
538
585
|
final public class func displayChat(languageCode: Swift.String? = nil, triggerDialogueId: Swift.String? = nil)
|
|
539
586
|
final public func displayChat(languageCode: Swift.String? = nil, triggerDialogueId: Swift.String? = nil)
|
|
540
587
|
final public class func setLanguage(_ languageCode: Swift.String) -> Kindly.Promise<Swift.Void>
|
|
@@ -549,7 +596,15 @@ extension Kindly.KindlyChatClient {
|
|
|
549
596
|
@discardableResult
|
|
550
597
|
final public class func saveAuthToken(_ token: Swift.String) -> Swift.Bool
|
|
551
598
|
@discardableResult
|
|
599
|
+
final public class func saveAuthCredentials(_ credentials: Kindly.KindlyAuthCredentials) -> Swift.Bool
|
|
600
|
+
@discardableResult
|
|
601
|
+
final public class func authenticate() -> Kindly.Promise<Swift.Void>
|
|
602
|
+
@discardableResult
|
|
603
|
+
final public class func deauthenticate() -> Kindly.Promise<Swift.Void>
|
|
604
|
+
@discardableResult
|
|
552
605
|
final public func saveAuthToken(_ token: Swift.String) -> Swift.Bool
|
|
606
|
+
@discardableResult
|
|
607
|
+
final public func saveAuthCredentials(_ credentials: Kindly.KindlyAuthCredentials) -> Swift.Bool
|
|
553
608
|
final public class func closeChat()
|
|
554
609
|
final public func closeChat()
|
|
555
610
|
final public class func endChat() -> Kindly.Promise<Swift.Void>
|
|
@@ -557,6 +612,7 @@ extension Kindly.KindlyChatClient {
|
|
|
557
612
|
final public func endChat() -> Kindly.Promise<Swift.Void>
|
|
558
613
|
final public class func notificationReceived(_ userInfo: [Swift.AnyHashable : Any])
|
|
559
614
|
final public class func notificationReceived(_ notification: UserNotifications.UNNotification)
|
|
615
|
+
final public class func notificationWillPresent(_ notification: UserNotifications.UNNotification, completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void)
|
|
560
616
|
final public class func notificationResponseReceived(_ response: UserNotifications.UNNotificationResponse)
|
|
561
617
|
final public class func isKindlyNotification(_ userInfo: [Swift.AnyHashable : Any]) -> Swift.Bool
|
|
562
618
|
final public class func triggerDialogue(id: Swift.String)
|
|
@@ -570,6 +626,7 @@ extension Kindly.KindlyChatClient {
|
|
|
570
626
|
@_spi(Testing) final public class func _setVerboseLogs(_ enabled: Swift.Bool)
|
|
571
627
|
}
|
|
572
628
|
public typealias AuthTokenCallback = (_ chatId: Swift.String, _ promise: Kindly.Promise<Swift.String>) -> Swift.Void
|
|
629
|
+
public typealias AuthCredentialsCallback = (_ chatId: Swift.String, _ promise: Kindly.Promise<Kindly.KindlyAuthCredentials>) -> Swift.Void
|
|
573
630
|
extension Kindly.KindlyEventType : Swift.Equatable {}
|
|
574
631
|
extension Kindly.KindlyEventType : Swift.Hashable {}
|
|
575
632
|
extension Kindly.KindlyEventType : Swift.RawRepresentable {}
|
|
Binary file
|
|
@@ -34,6 +34,25 @@ import _Concurrency
|
|
|
34
34
|
import _StringProcessing
|
|
35
35
|
import _SwiftConcurrencyShims
|
|
36
36
|
import ObjectiveC.runtime
|
|
37
|
+
@objc @_inheritsConvenienceInitializers open class KindlyNotificationServiceExtension : UserNotifications.UNNotificationServiceExtension {
|
|
38
|
+
@objc override dynamic public init()
|
|
39
|
+
@objc override dynamic open func didReceive(_ request: UserNotifications.UNNotificationRequest, withContentHandler contentHandler: @escaping (UserNotifications.UNNotificationContent) -> Swift.Void)
|
|
40
|
+
@objc override dynamic open func serviceExtensionTimeWillExpire()
|
|
41
|
+
open func customize(_ content: UserNotifications.UNMutableNotificationContent, payload: Kindly.KindlyPushDecryption.DecryptedPayload?)
|
|
42
|
+
@objc deinit
|
|
43
|
+
}
|
|
44
|
+
public enum KindlyPushDecryption {
|
|
45
|
+
public struct DecryptedPayload {
|
|
46
|
+
public let chatId: Swift.String
|
|
47
|
+
public let title: Swift.String
|
|
48
|
+
public let body: Swift.String
|
|
49
|
+
public init(chatId: Swift.String, title: Swift.String, body: Swift.String)
|
|
50
|
+
}
|
|
51
|
+
public static func isKindlyNotification(_ userInfo: [Swift.AnyHashable : Any]) -> Swift.Bool
|
|
52
|
+
public static func isDecrypted(_ userInfo: [Swift.AnyHashable : Any]) -> Swift.Bool
|
|
53
|
+
public static func apply(_ payload: Kindly.KindlyPushDecryption.DecryptedPayload, to content: UserNotifications.UNMutableNotificationContent)
|
|
54
|
+
public static func decrypt(userInfo: [Swift.AnyHashable : Any]) -> Kindly.KindlyPushDecryption.DecryptedPayload?
|
|
55
|
+
}
|
|
37
56
|
public struct ExternalChatMessage : Swift.Hashable, Swift.Identifiable, Swift.Comparable {
|
|
38
57
|
public let id: Swift.String
|
|
39
58
|
public static func < (lhs: Kindly.ExternalChatMessage, rhs: Kindly.ExternalChatMessage) -> Swift.Bool
|
|
@@ -58,6 +77,10 @@ public struct KindlySDKConfig {
|
|
|
58
77
|
get
|
|
59
78
|
set
|
|
60
79
|
}
|
|
80
|
+
public var getAuthCredentials: Kindly.AuthCredentialsCallback? {
|
|
81
|
+
get
|
|
82
|
+
set
|
|
83
|
+
}
|
|
61
84
|
public var allowCameraAccess: Swift.Bool
|
|
62
85
|
public var allowPhotoLibraryAccess: Swift.Bool
|
|
63
86
|
public var form: Kindly.KindlySDKConfig.FormConfig
|
|
@@ -359,6 +382,25 @@ final public class KindlyChatClient {
|
|
|
359
382
|
public init(config: Kindly.CoreSDKConfig, behaviorType: Kindly.BehaviorTypeEnum)
|
|
360
383
|
@objc deinit
|
|
361
384
|
}
|
|
385
|
+
public struct KindlyAuthCredentials {
|
|
386
|
+
public let idToken: Swift.String?
|
|
387
|
+
public let accessToken: Swift.String?
|
|
388
|
+
public let issuer: Swift.String?
|
|
389
|
+
public let expiresAt: Foundation.Date?
|
|
390
|
+
public init(idToken: Swift.String? = nil, accessToken: Swift.String? = nil, issuer: Swift.String? = nil, expiresAt: Foundation.Date? = nil)
|
|
391
|
+
public init(idToken: Swift.String? = nil, accessToken: Swift.String? = nil, issuer: Swift.String? = nil, expiresAtUnixSeconds: Swift.Int?)
|
|
392
|
+
}
|
|
393
|
+
extension Kindly.KindlyAuthCredentials {
|
|
394
|
+
public var bearerToken: Swift.String? {
|
|
395
|
+
get
|
|
396
|
+
}
|
|
397
|
+
public var hasToken: Swift.Bool {
|
|
398
|
+
get
|
|
399
|
+
}
|
|
400
|
+
public var companionAccessToken: Swift.String? {
|
|
401
|
+
get
|
|
402
|
+
}
|
|
403
|
+
}
|
|
362
404
|
@objc @_inheritsConvenienceInitializers public class NotificationDelegate : ObjectiveC.NSObject, UserNotifications.UNUserNotificationCenterDelegate {
|
|
363
405
|
@objc public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void)
|
|
364
406
|
@objc public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void)
|
|
@@ -530,11 +572,16 @@ extension Kindly.KindlyChatClient {
|
|
|
530
572
|
public static func setCustomTheme(_ theme: any Kindly.Theme)
|
|
531
573
|
public static func setCustomTheme(background: UIKit.UIColor? = nil, botMessageBackground: UIKit.UIColor? = nil, botMessageText: UIKit.UIColor? = nil, buttonBackground: UIKit.UIColor? = nil, buttonOutline: UIKit.UIColor? = nil, buttonSelectedBackground: UIKit.UIColor? = nil, buttonText: UIKit.UIColor? = nil, defaultShadow: UIKit.UIColor? = nil, inputBackground: UIKit.UIColor? = nil, inputCursor: UIKit.UIColor? = nil, inputText: UIKit.UIColor? = nil, navBarBackground: UIKit.UIColor? = nil, navBarText: UIKit.UIColor? = nil, userMessageBackground: UIKit.UIColor? = nil, userMessageText: UIKit.UIColor? = nil)
|
|
532
574
|
public static func clearCustomTheme()
|
|
575
|
+
public static var openChatOnNotificationTap: Swift.Bool {
|
|
576
|
+
get
|
|
577
|
+
set
|
|
578
|
+
}
|
|
533
579
|
public static var enableCrashReporting: Swift.Bool {
|
|
534
580
|
get
|
|
535
581
|
set
|
|
536
582
|
}
|
|
537
583
|
final public class func start(botKey: Swift.String, languageCode: Swift.String = "en", market: Swift.String, authTokenCallback: Kindly.AuthTokenCallback? = nil)
|
|
584
|
+
final public class func start(botKey: Swift.String, languageCode: Swift.String = "en", market: Swift.String, authCredentialsCallback: @escaping Kindly.AuthCredentialsCallback)
|
|
538
585
|
final public class func displayChat(languageCode: Swift.String? = nil, triggerDialogueId: Swift.String? = nil)
|
|
539
586
|
final public func displayChat(languageCode: Swift.String? = nil, triggerDialogueId: Swift.String? = nil)
|
|
540
587
|
final public class func setLanguage(_ languageCode: Swift.String) -> Kindly.Promise<Swift.Void>
|
|
@@ -549,7 +596,15 @@ extension Kindly.KindlyChatClient {
|
|
|
549
596
|
@discardableResult
|
|
550
597
|
final public class func saveAuthToken(_ token: Swift.String) -> Swift.Bool
|
|
551
598
|
@discardableResult
|
|
599
|
+
final public class func saveAuthCredentials(_ credentials: Kindly.KindlyAuthCredentials) -> Swift.Bool
|
|
600
|
+
@discardableResult
|
|
601
|
+
final public class func authenticate() -> Kindly.Promise<Swift.Void>
|
|
602
|
+
@discardableResult
|
|
603
|
+
final public class func deauthenticate() -> Kindly.Promise<Swift.Void>
|
|
604
|
+
@discardableResult
|
|
552
605
|
final public func saveAuthToken(_ token: Swift.String) -> Swift.Bool
|
|
606
|
+
@discardableResult
|
|
607
|
+
final public func saveAuthCredentials(_ credentials: Kindly.KindlyAuthCredentials) -> Swift.Bool
|
|
553
608
|
final public class func closeChat()
|
|
554
609
|
final public func closeChat()
|
|
555
610
|
final public class func endChat() -> Kindly.Promise<Swift.Void>
|
|
@@ -557,6 +612,7 @@ extension Kindly.KindlyChatClient {
|
|
|
557
612
|
final public func endChat() -> Kindly.Promise<Swift.Void>
|
|
558
613
|
final public class func notificationReceived(_ userInfo: [Swift.AnyHashable : Any])
|
|
559
614
|
final public class func notificationReceived(_ notification: UserNotifications.UNNotification)
|
|
615
|
+
final public class func notificationWillPresent(_ notification: UserNotifications.UNNotification, completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void)
|
|
560
616
|
final public class func notificationResponseReceived(_ response: UserNotifications.UNNotificationResponse)
|
|
561
617
|
final public class func isKindlyNotification(_ userInfo: [Swift.AnyHashable : Any]) -> Swift.Bool
|
|
562
618
|
final public class func triggerDialogue(id: Swift.String)
|
|
@@ -564,6 +620,7 @@ extension Kindly.KindlyChatClient {
|
|
|
564
620
|
final public class func handleURL(_ url: Foundation.URL) -> Swift.Bool
|
|
565
621
|
}
|
|
566
622
|
public typealias AuthTokenCallback = (_ chatId: Swift.String, _ promise: Kindly.Promise<Swift.String>) -> Swift.Void
|
|
623
|
+
public typealias AuthCredentialsCallback = (_ chatId: Swift.String, _ promise: Kindly.Promise<Kindly.KindlyAuthCredentials>) -> Swift.Void
|
|
567
624
|
extension Kindly.KindlyEventType : Swift.Equatable {}
|
|
568
625
|
extension Kindly.KindlyEventType : Swift.Hashable {}
|
|
569
626
|
extension Kindly.KindlyEventType : Swift.RawRepresentable {}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<dict>
|
|
7
7
|
<key>Assets.car</key>
|
|
8
8
|
<data>
|
|
9
|
-
|
|
9
|
+
g/iQpg6yw6bapkTABm/wrvYielg=
|
|
10
10
|
</data>
|
|
11
11
|
<key>ConfirmationWindow.nib</key>
|
|
12
12
|
<data>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
</data>
|
|
15
15
|
<key>Headers/Kindly-Swift.h</key>
|
|
16
16
|
<data>
|
|
17
|
-
|
|
17
|
+
daKsjgr3TWfZiHX89F5bJFYLn/Q=
|
|
18
18
|
</data>
|
|
19
19
|
<key>Headers/Kindly.h</key>
|
|
20
20
|
<data>
|
|
@@ -22,39 +22,39 @@
|
|
|
22
22
|
</data>
|
|
23
23
|
<key>Info.plist</key>
|
|
24
24
|
<data>
|
|
25
|
-
|
|
25
|
+
euNB9a7KjXxq+NaGT6MfC/Nj4dM=
|
|
26
26
|
</data>
|
|
27
27
|
<key>Modules/Kindly.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
|
28
28
|
<data>
|
|
29
|
-
|
|
29
|
+
DWvr5OTa881QLSZCaS8BLRZXzYA=
|
|
30
30
|
</data>
|
|
31
31
|
<key>Modules/Kindly.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
|
32
32
|
<data>
|
|
33
|
-
|
|
33
|
+
N+65cDhRC44c+cJ2Gu3sVR4Lw3A=
|
|
34
34
|
</data>
|
|
35
35
|
<key>Modules/Kindly.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
|
36
36
|
<data>
|
|
37
|
-
|
|
37
|
+
F6ToyAlNe/8/wvnhoAz4Uepks1A=
|
|
38
38
|
</data>
|
|
39
39
|
<key>Modules/Kindly.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
|
40
40
|
<data>
|
|
41
|
-
|
|
41
|
+
P5hRW/4+YN2BNrJA3epRgP+nLSY=
|
|
42
42
|
</data>
|
|
43
43
|
<key>Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
|
44
44
|
<data>
|
|
45
|
-
|
|
45
|
+
DWvr5OTa881QLSZCaS8BLRZXzYA=
|
|
46
46
|
</data>
|
|
47
47
|
<key>Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
|
48
48
|
<data>
|
|
49
|
-
|
|
49
|
+
ThYhrzvfyNY70n7rHrC+QlGtaHk=
|
|
50
50
|
</data>
|
|
51
51
|
<key>Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
|
52
52
|
<data>
|
|
53
|
-
|
|
53
|
+
jCaKl5/QHTYYFVHIGGm1qQnh0kc=
|
|
54
54
|
</data>
|
|
55
55
|
<key>Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
|
56
56
|
<data>
|
|
57
|
-
|
|
57
|
+
NsTP4dXtQWWkQ9Zq946FndsQ6ac=
|
|
58
58
|
</data>
|
|
59
59
|
<key>Modules/module.modulemap</key>
|
|
60
60
|
<data>
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
<dict>
|
|
72
72
|
<key>hash2</key>
|
|
73
73
|
<data>
|
|
74
|
-
|
|
74
|
+
0IzvkxxEyC2sfufBDkjNxvXr8Wdw/qgrGJIY9w4XcaA=
|
|
75
75
|
</data>
|
|
76
76
|
</dict>
|
|
77
77
|
<key>ConfirmationWindow.nib</key>
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
<dict>
|
|
86
86
|
<key>hash2</key>
|
|
87
87
|
<data>
|
|
88
|
-
|
|
88
|
+
xX0RPOr35K6HwTwgFwKvkpvVsp7C0sZj9LMgBgGBXf8=
|
|
89
89
|
</data>
|
|
90
90
|
</dict>
|
|
91
91
|
<key>Headers/Kindly.h</key>
|
|
@@ -99,56 +99,56 @@
|
|
|
99
99
|
<dict>
|
|
100
100
|
<key>hash2</key>
|
|
101
101
|
<data>
|
|
102
|
-
|
|
102
|
+
BKPEyvB9xRgcQh8GEUJW4GRUc25E/cvFGrNzUQ9pRi8=
|
|
103
103
|
</data>
|
|
104
104
|
</dict>
|
|
105
105
|
<key>Modules/Kindly.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
|
106
106
|
<dict>
|
|
107
107
|
<key>hash2</key>
|
|
108
108
|
<data>
|
|
109
|
-
|
|
109
|
+
1OzTYwCqZ6sO6XJWekB6p/HiU2cSVzAUxb8+4lMrdps=
|
|
110
110
|
</data>
|
|
111
111
|
</dict>
|
|
112
112
|
<key>Modules/Kindly.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
|
113
113
|
<dict>
|
|
114
114
|
<key>hash2</key>
|
|
115
115
|
<data>
|
|
116
|
-
|
|
116
|
+
OZcl3kJjO096M0ihP5+bIoPPi9dD26JP/qtjYL353kk=
|
|
117
117
|
</data>
|
|
118
118
|
</dict>
|
|
119
119
|
<key>Modules/Kindly.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
|
120
120
|
<dict>
|
|
121
121
|
<key>hash2</key>
|
|
122
122
|
<data>
|
|
123
|
-
|
|
123
|
+
jpQ8AUoqrQqY6LPwhsjGXnxG8mKsY/pCRsVGTZQ54Ow=
|
|
124
124
|
</data>
|
|
125
125
|
</dict>
|
|
126
126
|
<key>Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
|
127
127
|
<dict>
|
|
128
128
|
<key>hash2</key>
|
|
129
129
|
<data>
|
|
130
|
-
|
|
130
|
+
BKPEyvB9xRgcQh8GEUJW4GRUc25E/cvFGrNzUQ9pRi8=
|
|
131
131
|
</data>
|
|
132
132
|
</dict>
|
|
133
133
|
<key>Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
|
134
134
|
<dict>
|
|
135
135
|
<key>hash2</key>
|
|
136
136
|
<data>
|
|
137
|
-
|
|
137
|
+
c4tiuQ4npJJSZilApj6alKpIayJP9RQqqx55nXnsTJQ=
|
|
138
138
|
</data>
|
|
139
139
|
</dict>
|
|
140
140
|
<key>Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
|
141
141
|
<dict>
|
|
142
142
|
<key>hash2</key>
|
|
143
143
|
<data>
|
|
144
|
-
|
|
144
|
+
K7fXPB+dniiEqsG7q991M7NLWDcaC4tq5HE3NZRzuLs=
|
|
145
145
|
</data>
|
|
146
146
|
</dict>
|
|
147
147
|
<key>Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
|
148
148
|
<dict>
|
|
149
149
|
<key>hash2</key>
|
|
150
150
|
<data>
|
|
151
|
-
|
|
151
|
+
maDUM3ugJv33/uA9YfKwxjf1GyFJirrN5ylEc1rBGRk=
|
|
152
152
|
</data>
|
|
153
153
|
</dict>
|
|
154
154
|
<key>Modules/module.modulemap</key>
|
package/package.json
CHANGED
|
Binary file
|