@kindly-ai/react-native 0.1.3 → 0.1.4
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 +45 -75
- 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 +1595 -533
- package/ios/Frameworks/Kindly.xcframework/ios-arm64/Kindly.framework/Modules/Kindly.swiftmodule/arm64-apple-ios.private.swiftinterface +28 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64/Kindly.framework/Modules/Kindly.swiftmodule/arm64-apple-ios.swiftinterface +28 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64/Kindly.framework/_CodeSignature/CodeResources +7 -18
- 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 +1595 -533
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Modules/Kindly.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +28 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Modules/Kindly.swiftmodule/arm64-apple-ios-simulator.swiftinterface +28 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.abi.json +1595 -533
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +28 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/Modules/Kindly.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +28 -0
- package/ios/Frameworks/Kindly.xcframework/ios-arm64_x86_64-simulator/Kindly.framework/_CodeSignature/CodeResources +13 -24
- 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 {
|
|
@@ -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 {
|