vialink-react-native-sdk 2.0.3 → 2.0.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/ViaLinkCore.xcframework/Info.plist +5 -5
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +0 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/arm64-apple-ios.abi.json +1142 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/arm64-apple-ios.package.swiftinterface +43 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/arm64-apple-ios.private.swiftinterface +43 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/arm64-apple-ios.swiftinterface +43 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64/ViaLinkCore.framework/Modules/module.modulemap +4 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64/ViaLinkCore.framework/ViaLinkCore +0 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64_x86_64-simulator/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64_x86_64-simulator/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64_x86_64-simulator/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/arm64-apple-ios-simulator.abi.json +1142 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64_x86_64-simulator/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/arm64-apple-ios-simulator.package.swiftinterface +43 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64_x86_64-simulator/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +43 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64_x86_64-simulator/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64_x86_64-simulator/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/arm64-apple-ios-simulator.swiftinterface +43 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64_x86_64-simulator/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/x86_64-apple-ios-simulator.abi.json +1142 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64_x86_64-simulator/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/x86_64-apple-ios-simulator.package.swiftinterface +43 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64_x86_64-simulator/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +43 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64_x86_64-simulator/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64_x86_64-simulator/ViaLinkCore.framework/Modules/ViaLinkCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +43 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64_x86_64-simulator/ViaLinkCore.framework/Modules/module.modulemap +4 -0
- package/ios/Frameworks/ViaLinkCore.xcframework/ios-arm64_x86_64-simulator/ViaLinkCore.framework/ViaLinkCore +0 -0
- package/package.json +1 -1
- package/vialink-react-native-sdk.podspec +1 -1
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
// swift-interface-format-version: 1.0
|
|
2
|
+
// swift-compiler-version: Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
|
3
|
+
// swift-module-flags: -target x86_64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -O -enable-experimental-feature DebugDescriptionMacro -module-name ViaLinkCore -package-name vialink_ios_sdk
|
|
4
|
+
// swift-module-flags-ignorable: -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3
|
|
5
|
+
import Foundation
|
|
6
|
+
import Swift
|
|
7
|
+
import UIKit
|
|
8
|
+
import _Concurrency
|
|
9
|
+
import _StringProcessing
|
|
10
|
+
import _SwiftConcurrencyShims
|
|
11
|
+
public struct DeepLinkData : Swift.Sendable {
|
|
12
|
+
public let path: Swift.String
|
|
13
|
+
public let params: [Swift.String : Swift.String]
|
|
14
|
+
public let shortCode: Swift.String?
|
|
15
|
+
public init(path: Swift.String, params: [Swift.String : Swift.String] = [:], shortCode: Swift.String? = nil)
|
|
16
|
+
}
|
|
17
|
+
@_hasMissingDesignatedInitializers final public class ViaLinkSDK : @unchecked Swift.Sendable {
|
|
18
|
+
public static let shared: ViaLinkCore.ViaLinkSDK
|
|
19
|
+
final public func configure(apiKey: Swift.String)
|
|
20
|
+
final public func onDeepLink(_ handler: @escaping (ViaLinkCore.DeepLinkData) -> Swift.Void)
|
|
21
|
+
final public func onDeferredDeepLink(_ handler: @escaping (ViaLinkCore.DeepLinkData) -> Swift.Void)
|
|
22
|
+
@discardableResult
|
|
23
|
+
final public func handleUniversalLink(_ userActivity: Foundation.NSUserActivity) -> Swift.Bool
|
|
24
|
+
@discardableResult
|
|
25
|
+
final public func handleURL(_ url: Foundation.URL) -> Swift.Bool
|
|
26
|
+
final public func track(_ eventName: Swift.String, data: [Swift.String : Swift.String]? = nil)
|
|
27
|
+
final public func createLink(path: Swift.String, data: [Swift.String : Swift.String]? = nil, campaign: Swift.String? = nil) async throws -> Swift.String
|
|
28
|
+
public enum CreateLinkError : Swift.Error, Foundation.LocalizedError {
|
|
29
|
+
case notConfigured
|
|
30
|
+
case invalidResponse
|
|
31
|
+
public var errorDescription: Swift.String? {
|
|
32
|
+
get
|
|
33
|
+
}
|
|
34
|
+
public static func == (a: ViaLinkCore.ViaLinkSDK.CreateLinkError, b: ViaLinkCore.ViaLinkSDK.CreateLinkError) -> Swift.Bool
|
|
35
|
+
public func hash(into hasher: inout Swift.Hasher)
|
|
36
|
+
public var hashValue: Swift.Int {
|
|
37
|
+
get
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
@objc deinit
|
|
41
|
+
}
|
|
42
|
+
extension ViaLinkCore.ViaLinkSDK.CreateLinkError : Swift.Equatable {}
|
|
43
|
+
extension ViaLinkCore.ViaLinkSDK.CreateLinkError : Swift.Hashable {}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
// swift-interface-format-version: 1.0
|
|
2
|
+
// swift-compiler-version: Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
|
3
|
+
// swift-module-flags: -target x86_64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -O -enable-experimental-feature DebugDescriptionMacro -module-name ViaLinkCore -package-name vialink_ios_sdk
|
|
4
|
+
// swift-module-flags-ignorable: -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3
|
|
5
|
+
import Foundation
|
|
6
|
+
import Swift
|
|
7
|
+
import UIKit
|
|
8
|
+
import _Concurrency
|
|
9
|
+
import _StringProcessing
|
|
10
|
+
import _SwiftConcurrencyShims
|
|
11
|
+
public struct DeepLinkData : Swift.Sendable {
|
|
12
|
+
public let path: Swift.String
|
|
13
|
+
public let params: [Swift.String : Swift.String]
|
|
14
|
+
public let shortCode: Swift.String?
|
|
15
|
+
public init(path: Swift.String, params: [Swift.String : Swift.String] = [:], shortCode: Swift.String? = nil)
|
|
16
|
+
}
|
|
17
|
+
@_hasMissingDesignatedInitializers final public class ViaLinkSDK : @unchecked Swift.Sendable {
|
|
18
|
+
public static let shared: ViaLinkCore.ViaLinkSDK
|
|
19
|
+
final public func configure(apiKey: Swift.String)
|
|
20
|
+
final public func onDeepLink(_ handler: @escaping (ViaLinkCore.DeepLinkData) -> Swift.Void)
|
|
21
|
+
final public func onDeferredDeepLink(_ handler: @escaping (ViaLinkCore.DeepLinkData) -> Swift.Void)
|
|
22
|
+
@discardableResult
|
|
23
|
+
final public func handleUniversalLink(_ userActivity: Foundation.NSUserActivity) -> Swift.Bool
|
|
24
|
+
@discardableResult
|
|
25
|
+
final public func handleURL(_ url: Foundation.URL) -> Swift.Bool
|
|
26
|
+
final public func track(_ eventName: Swift.String, data: [Swift.String : Swift.String]? = nil)
|
|
27
|
+
final public func createLink(path: Swift.String, data: [Swift.String : Swift.String]? = nil, campaign: Swift.String? = nil) async throws -> Swift.String
|
|
28
|
+
public enum CreateLinkError : Swift.Error, Foundation.LocalizedError {
|
|
29
|
+
case notConfigured
|
|
30
|
+
case invalidResponse
|
|
31
|
+
public var errorDescription: Swift.String? {
|
|
32
|
+
get
|
|
33
|
+
}
|
|
34
|
+
public static func == (a: ViaLinkCore.ViaLinkSDK.CreateLinkError, b: ViaLinkCore.ViaLinkSDK.CreateLinkError) -> Swift.Bool
|
|
35
|
+
public func hash(into hasher: inout Swift.Hasher)
|
|
36
|
+
public var hashValue: Swift.Int {
|
|
37
|
+
get
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
@objc deinit
|
|
41
|
+
}
|
|
42
|
+
extension ViaLinkCore.ViaLinkSDK.CreateLinkError : Swift.Equatable {}
|
|
43
|
+
extension ViaLinkCore.ViaLinkSDK.CreateLinkError : Swift.Hashable {}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
// swift-interface-format-version: 1.0
|
|
2
|
+
// swift-compiler-version: Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
|
3
|
+
// swift-module-flags: -target x86_64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -O -enable-experimental-feature DebugDescriptionMacro -module-name ViaLinkCore -package-name vialink_ios_sdk
|
|
4
|
+
// swift-module-flags-ignorable: -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3
|
|
5
|
+
import Foundation
|
|
6
|
+
import Swift
|
|
7
|
+
import UIKit
|
|
8
|
+
import _Concurrency
|
|
9
|
+
import _StringProcessing
|
|
10
|
+
import _SwiftConcurrencyShims
|
|
11
|
+
public struct DeepLinkData : Swift.Sendable {
|
|
12
|
+
public let path: Swift.String
|
|
13
|
+
public let params: [Swift.String : Swift.String]
|
|
14
|
+
public let shortCode: Swift.String?
|
|
15
|
+
public init(path: Swift.String, params: [Swift.String : Swift.String] = [:], shortCode: Swift.String? = nil)
|
|
16
|
+
}
|
|
17
|
+
@_hasMissingDesignatedInitializers final public class ViaLinkSDK : @unchecked Swift.Sendable {
|
|
18
|
+
public static let shared: ViaLinkCore.ViaLinkSDK
|
|
19
|
+
final public func configure(apiKey: Swift.String)
|
|
20
|
+
final public func onDeepLink(_ handler: @escaping (ViaLinkCore.DeepLinkData) -> Swift.Void)
|
|
21
|
+
final public func onDeferredDeepLink(_ handler: @escaping (ViaLinkCore.DeepLinkData) -> Swift.Void)
|
|
22
|
+
@discardableResult
|
|
23
|
+
final public func handleUniversalLink(_ userActivity: Foundation.NSUserActivity) -> Swift.Bool
|
|
24
|
+
@discardableResult
|
|
25
|
+
final public func handleURL(_ url: Foundation.URL) -> Swift.Bool
|
|
26
|
+
final public func track(_ eventName: Swift.String, data: [Swift.String : Swift.String]? = nil)
|
|
27
|
+
final public func createLink(path: Swift.String, data: [Swift.String : Swift.String]? = nil, campaign: Swift.String? = nil) async throws -> Swift.String
|
|
28
|
+
public enum CreateLinkError : Swift.Error, Foundation.LocalizedError {
|
|
29
|
+
case notConfigured
|
|
30
|
+
case invalidResponse
|
|
31
|
+
public var errorDescription: Swift.String? {
|
|
32
|
+
get
|
|
33
|
+
}
|
|
34
|
+
public static func == (a: ViaLinkCore.ViaLinkSDK.CreateLinkError, b: ViaLinkCore.ViaLinkSDK.CreateLinkError) -> Swift.Bool
|
|
35
|
+
public func hash(into hasher: inout Swift.Hasher)
|
|
36
|
+
public var hashValue: Swift.Int {
|
|
37
|
+
get
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
@objc deinit
|
|
41
|
+
}
|
|
42
|
+
extension ViaLinkCore.ViaLinkSDK.CreateLinkError : Swift.Equatable {}
|
|
43
|
+
extension ViaLinkCore.ViaLinkSDK.CreateLinkError : Swift.Hashable {}
|
|
Binary file
|
package/package.json
CHANGED