@kindly-ai/react-native 0.1.3 → 0.1.5
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/ios/Frameworks/Kindly.xcframework/_CodeSignature/CodeDirectory +0 -0
- package/ios/Frameworks/Kindly.xcframework/_CodeSignature/CodeRequirements-1 +0 -0
- package/ios/Frameworks/Kindly.xcframework/_CodeSignature/CodeResources +54 -84
- package/ios/Frameworks/Kindly.xcframework/_CodeSignature/CodeSignature +0 -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 +1615 -540
- package/ios/Frameworks/Kindly.xcframework/ios-arm64/Kindly.framework/Modules/Kindly.swiftmodule/arm64-apple-ios.private.swiftinterface +29 -1
- 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 +29 -1
- package/ios/Frameworks/Kindly.xcframework/ios-arm64/Kindly.framework/_CodeSignature/CodeResources +9 -20
- 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 +1615 -540
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Modules/Kindly.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +29 -1
- 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 +29 -1
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.abi.json +1615 -540
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +29 -1
- 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 +29 -1
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/_CodeSignature/CodeResources +17 -28
- package/package.json +1 -1
- package/ios/Frameworks/Kindly.xcframework/ios-arm64/Kindly.framework/Config.plist +0 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Config.plist +0 -0
|
@@ -21,6 +21,7 @@ import PhotosUI
|
|
|
21
21
|
import QuartzCore
|
|
22
22
|
import SafariServices
|
|
23
23
|
import Security
|
|
24
|
+
import Sentry
|
|
24
25
|
import Swift
|
|
25
26
|
import SwiftUI
|
|
26
27
|
import SystemConfiguration
|
|
@@ -285,6 +286,33 @@ public struct TypingEvent {
|
|
|
285
286
|
public let timestamp: Foundation.Date
|
|
286
287
|
public init(type: Kindly.TypingEventType, sender: Kindly.TypingEventSender, duration: Foundation.TimeInterval? = nil)
|
|
287
288
|
}
|
|
289
|
+
public struct RuntimeEnvironmentOverride : Swift.Codable {
|
|
290
|
+
public let environment: Swift.String
|
|
291
|
+
public let customConfig: Kindly.RuntimeEnvironmentOverride.CustomConfig?
|
|
292
|
+
public struct CustomConfig : Swift.Codable {
|
|
293
|
+
public let apiBaseURL: Swift.String
|
|
294
|
+
public let settingsBaseURL: Swift.String
|
|
295
|
+
public let webviewBaseURL: Swift.String
|
|
296
|
+
public let otlpURL: Swift.String
|
|
297
|
+
public let pusherKey: Swift.String
|
|
298
|
+
public init(apiBaseURL: Swift.String, settingsBaseURL: Swift.String, webviewBaseURL: Swift.String, otlpURL: Swift.String, pusherKey: Swift.String)
|
|
299
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
300
|
+
public init(from decoder: any Swift.Decoder) throws
|
|
301
|
+
}
|
|
302
|
+
public init(environment: Swift.String, customConfig: Kindly.RuntimeEnvironmentOverride.CustomConfig? = nil)
|
|
303
|
+
public static let productionDefaults: Kindly.RuntimeEnvironmentOverride.CustomConfig
|
|
304
|
+
public static let developmentDefaults: Kindly.RuntimeEnvironmentOverride.CustomConfig
|
|
305
|
+
public static let customBuildtimeDefaults: Kindly.RuntimeEnvironmentOverride.CustomConfig
|
|
306
|
+
public static var compileTimeEnvironment: Swift.String {
|
|
307
|
+
get
|
|
308
|
+
}
|
|
309
|
+
public static func load() -> Kindly.RuntimeEnvironmentOverride?
|
|
310
|
+
@discardableResult
|
|
311
|
+
public static func save(_ override: Kindly.RuntimeEnvironmentOverride) -> Swift.Bool
|
|
312
|
+
public static func clear()
|
|
313
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
314
|
+
public init(from decoder: any Swift.Decoder) throws
|
|
315
|
+
}
|
|
288
316
|
public struct ExternalChatButton {
|
|
289
317
|
}
|
|
290
318
|
public enum ChatConnectionState {
|
|
@@ -505,7 +533,7 @@ extension Kindly.KindlyChatClient {
|
|
|
505
533
|
get
|
|
506
534
|
set
|
|
507
535
|
}
|
|
508
|
-
final public class func start(botKey: Swift.String, languageCode: Swift.String = "en", authTokenCallback: Kindly.AuthTokenCallback? = nil)
|
|
536
|
+
final public class func start(botKey: Swift.String, languageCode: Swift.String = "en", market: Swift.String, authTokenCallback: Kindly.AuthTokenCallback? = nil)
|
|
509
537
|
final public class func displayChat(languageCode: Swift.String? = nil, triggerDialogueId: Swift.String? = nil)
|
|
510
538
|
final public func displayChat(languageCode: Swift.String? = nil, triggerDialogueId: Swift.String? = nil)
|
|
511
539
|
final public class func setLanguage(_ languageCode: Swift.String) -> Kindly.Promise<Swift.Void>
|
|
Binary file
|
|
@@ -21,6 +21,7 @@ import PhotosUI
|
|
|
21
21
|
import QuartzCore
|
|
22
22
|
import SafariServices
|
|
23
23
|
import Security
|
|
24
|
+
import Sentry
|
|
24
25
|
import Swift
|
|
25
26
|
import SwiftUI
|
|
26
27
|
import SystemConfiguration
|
|
@@ -285,6 +286,33 @@ public struct TypingEvent {
|
|
|
285
286
|
public let timestamp: Foundation.Date
|
|
286
287
|
public init(type: Kindly.TypingEventType, sender: Kindly.TypingEventSender, duration: Foundation.TimeInterval? = nil)
|
|
287
288
|
}
|
|
289
|
+
public struct RuntimeEnvironmentOverride : Swift.Codable {
|
|
290
|
+
public let environment: Swift.String
|
|
291
|
+
public let customConfig: Kindly.RuntimeEnvironmentOverride.CustomConfig?
|
|
292
|
+
public struct CustomConfig : Swift.Codable {
|
|
293
|
+
public let apiBaseURL: Swift.String
|
|
294
|
+
public let settingsBaseURL: Swift.String
|
|
295
|
+
public let webviewBaseURL: Swift.String
|
|
296
|
+
public let otlpURL: Swift.String
|
|
297
|
+
public let pusherKey: Swift.String
|
|
298
|
+
public init(apiBaseURL: Swift.String, settingsBaseURL: Swift.String, webviewBaseURL: Swift.String, otlpURL: Swift.String, pusherKey: Swift.String)
|
|
299
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
300
|
+
public init(from decoder: any Swift.Decoder) throws
|
|
301
|
+
}
|
|
302
|
+
public init(environment: Swift.String, customConfig: Kindly.RuntimeEnvironmentOverride.CustomConfig? = nil)
|
|
303
|
+
public static let productionDefaults: Kindly.RuntimeEnvironmentOverride.CustomConfig
|
|
304
|
+
public static let developmentDefaults: Kindly.RuntimeEnvironmentOverride.CustomConfig
|
|
305
|
+
public static let customBuildtimeDefaults: Kindly.RuntimeEnvironmentOverride.CustomConfig
|
|
306
|
+
public static var compileTimeEnvironment: Swift.String {
|
|
307
|
+
get
|
|
308
|
+
}
|
|
309
|
+
public static func load() -> Kindly.RuntimeEnvironmentOverride?
|
|
310
|
+
@discardableResult
|
|
311
|
+
public static func save(_ override: Kindly.RuntimeEnvironmentOverride) -> Swift.Bool
|
|
312
|
+
public static func clear()
|
|
313
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
314
|
+
public init(from decoder: any Swift.Decoder) throws
|
|
315
|
+
}
|
|
288
316
|
public struct ExternalChatButton {
|
|
289
317
|
}
|
|
290
318
|
public enum ChatConnectionState {
|
|
@@ -505,7 +533,7 @@ extension Kindly.KindlyChatClient {
|
|
|
505
533
|
get
|
|
506
534
|
set
|
|
507
535
|
}
|
|
508
|
-
final public class func start(botKey: Swift.String, languageCode: Swift.String = "en", authTokenCallback: Kindly.AuthTokenCallback? = nil)
|
|
536
|
+
final public class func start(botKey: Swift.String, languageCode: Swift.String = "en", market: Swift.String, authTokenCallback: Kindly.AuthTokenCallback? = nil)
|
|
509
537
|
final public class func displayChat(languageCode: Swift.String? = nil, triggerDialogueId: Swift.String? = nil)
|
|
510
538
|
final public func displayChat(languageCode: Swift.String? = nil, triggerDialogueId: Swift.String? = nil)
|
|
511
539
|
final public class func setLanguage(_ languageCode: Swift.String) -> Kindly.Promise<Swift.Void>
|
package/ios/Frameworks/Kindly.xcframework/ios-arm64/Kindly.framework/_CodeSignature/CodeResources
CHANGED
|
@@ -8,10 +8,6 @@
|
|
|
8
8
|
<data>
|
|
9
9
|
MufwF5oHL1bh1MrM3uAziWyQ7ik=
|
|
10
10
|
</data>
|
|
11
|
-
<key>Config.plist</key>
|
|
12
|
-
<data>
|
|
13
|
-
AA5SGzmGO338xNXmWA7p3pPWeps=
|
|
14
|
-
</data>
|
|
15
11
|
<key>ConfirmationWindow.nib</key>
|
|
16
12
|
<data>
|
|
17
13
|
qc7GhQ7vYvtJdoLZtd3CgyXcyTs=
|
|
@@ -26,23 +22,23 @@
|
|
|
26
22
|
</data>
|
|
27
23
|
<key>Info.plist</key>
|
|
28
24
|
<data>
|
|
29
|
-
|
|
25
|
+
EBpgMGashppAtY6BzX8Muyiws0Y=
|
|
30
26
|
</data>
|
|
31
27
|
<key>Modules/Kindly.swiftmodule/arm64-apple-ios.abi.json</key>
|
|
32
28
|
<data>
|
|
33
|
-
/
|
|
29
|
+
k0ofF0/3Suzwh15d2tmnkx5UdHE=
|
|
34
30
|
</data>
|
|
35
31
|
<key>Modules/Kindly.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
|
|
36
32
|
<data>
|
|
37
|
-
|
|
33
|
+
/kjAKbX40HQLqAiaD9mjeeijw/A=
|
|
38
34
|
</data>
|
|
39
35
|
<key>Modules/Kindly.swiftmodule/arm64-apple-ios.swiftdoc</key>
|
|
40
36
|
<data>
|
|
41
|
-
|
|
37
|
+
DHZDsOfnpCPRlbmqcQwy8j1isnY=
|
|
42
38
|
</data>
|
|
43
39
|
<key>Modules/Kindly.swiftmodule/arm64-apple-ios.swiftinterface</key>
|
|
44
40
|
<data>
|
|
45
|
-
|
|
41
|
+
le7W6HZE+NPG0gBHvOBdvDWQNks=
|
|
46
42
|
</data>
|
|
47
43
|
<key>Modules/module.modulemap</key>
|
|
48
44
|
<data>
|
|
@@ -62,13 +58,6 @@
|
|
|
62
58
|
xZnIoRtfgPb61v9BpCGQDurq14rtIRZ7Fdf44pAZi10=
|
|
63
59
|
</data>
|
|
64
60
|
</dict>
|
|
65
|
-
<key>Config.plist</key>
|
|
66
|
-
<dict>
|
|
67
|
-
<key>hash2</key>
|
|
68
|
-
<data>
|
|
69
|
-
gpKvlibPb33hUZ45Al58Kscd85/tPeSSpkq/sw61m/Y=
|
|
70
|
-
</data>
|
|
71
|
-
</dict>
|
|
72
61
|
<key>ConfirmationWindow.nib</key>
|
|
73
62
|
<dict>
|
|
74
63
|
<key>hash2</key>
|
|
@@ -94,28 +83,28 @@
|
|
|
94
83
|
<dict>
|
|
95
84
|
<key>hash2</key>
|
|
96
85
|
<data>
|
|
97
|
-
|
|
86
|
+
OUV+oGQo84StzAqvYX6ea8VHMqDcy0/rwE/o2iwwZLs=
|
|
98
87
|
</data>
|
|
99
88
|
</dict>
|
|
100
89
|
<key>Modules/Kindly.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
|
|
101
90
|
<dict>
|
|
102
91
|
<key>hash2</key>
|
|
103
92
|
<data>
|
|
104
|
-
|
|
93
|
+
iVoESKxcBcCsBnRPR/Tc3TNCU45rYLtKvxBV8gMk5Bo=
|
|
105
94
|
</data>
|
|
106
95
|
</dict>
|
|
107
96
|
<key>Modules/Kindly.swiftmodule/arm64-apple-ios.swiftdoc</key>
|
|
108
97
|
<dict>
|
|
109
98
|
<key>hash2</key>
|
|
110
99
|
<data>
|
|
111
|
-
|
|
100
|
+
Qi7yw5lnacv2tHr4uu0zK1GBgx/GkZRxY0ImnNa8LEU=
|
|
112
101
|
</data>
|
|
113
102
|
</dict>
|
|
114
103
|
<key>Modules/Kindly.swiftmodule/arm64-apple-ios.swiftinterface</key>
|
|
115
104
|
<dict>
|
|
116
105
|
<key>hash2</key>
|
|
117
106
|
<data>
|
|
118
|
-
|
|
107
|
+
LGgGvogaCQEOn6OFIbErzr3pF2LvZcuqZILQUVqsV/0=
|
|
119
108
|
</data>
|
|
120
109
|
</dict>
|
|
121
110
|
<key>Modules/module.modulemap</key>
|