@doorstepai/dropoff-sdk-capacitor 1.0.0
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/DoorstepaiDropoffSdkCapacitor.podspec +22 -0
- package/LICENSE +20 -0
- package/README.md +401 -0
- package/android/build.gradle +48 -0
- package/android/src/main/AndroidManifest.xml +3 -0
- package/android/src/main/java/ai/doorstep/dropoffsdk/capacitor/DoorstepAIDropoffSDKPlugin.kt +291 -0
- package/dist/docs.json +705 -0
- package/dist/esm/definitions.d.ts +115 -0
- package/dist/esm/definitions.js +2 -0
- package/dist/esm/definitions.js.map +1 -0
- package/dist/esm/index.d.ts +4 -0
- package/dist/esm/index.js +27 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/web.d.ts +23 -0
- package/dist/esm/web.js +51 -0
- package/dist/esm/web.js.map +1 -0
- package/dist/plugin.cjs.js +87 -0
- package/dist/plugin.cjs.js.map +1 -0
- package/dist/plugin.js +90 -0
- package/dist/plugin.js.map +1 -0
- package/ios/DoorstepDropoffSDK.xcframework/Info.plist +48 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/DoorstepDropoffSDK +0 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Headers/DoorstepDropoffSDK.h +19 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Headers/RateReducer.h +117 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Info.plist +0 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.abi.json +5281 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +117 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.swiftinterface +117 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Modules/module.modulemap +6 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/PrivacyInfo.xcprivacy +39 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/_CodeSignature/CodeResources +201 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Info.plist +20 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Resources/DWARF/DoorstepDropoffSDK +0 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Resources/Relocations/aarch64/DoorstepDropoffSDK.yml +2108 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/DoorstepDropoffSDK +0 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Headers/DoorstepDropoffSDK.h +19 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Headers/RateReducer.h +117 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Info.plist +0 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +5281 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +117 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +117 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +5281 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +117 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +117 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/module.modulemap +6 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/PrivacyInfo.xcprivacy +39 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/_CodeSignature/CodeResources +256 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Info.plist +20 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Resources/DWARF/DoorstepDropoffSDK +0 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Resources/Relocations/aarch64/DoorstepDropoffSDK.yml +2108 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Resources/Relocations/x86_64/DoorstepDropoffSDK.yml +2098 -0
- package/ios/Plugin/DoorstepAIDropoffSDKPlugin.m +22 -0
- package/ios/Plugin/DoorstepAIDropoffSDKPlugin.swift +313 -0
- package/package.json +78 -0
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
// swift-interface-format-version: 1.0
|
|
2
|
+
// swift-compiler-version: Apple Swift version 6.3.1 effective-5.10 (swiftlang-6.3.1.1.2 clang-2100.0.123.102)
|
|
3
|
+
// swift-module-flags: -target arm64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name DoorstepDropoffSDK
|
|
4
|
+
// swift-module-flags-ignorable: -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3.1
|
|
5
|
+
import Compression
|
|
6
|
+
import CoreLocation
|
|
7
|
+
import CoreMotion
|
|
8
|
+
@_exported import DoorstepDropoffSDK
|
|
9
|
+
import Foundation
|
|
10
|
+
import Network
|
|
11
|
+
import SQLite3
|
|
12
|
+
import Swift
|
|
13
|
+
import SwiftUI
|
|
14
|
+
import UIKit
|
|
15
|
+
import _Concurrency
|
|
16
|
+
import _StringProcessing
|
|
17
|
+
import _SwiftConcurrencyShims
|
|
18
|
+
import os
|
|
19
|
+
public enum SDKLogLevel : Swift.Int, Swift.Codable, Swift.Comparable {
|
|
20
|
+
case debug
|
|
21
|
+
case info
|
|
22
|
+
case warning
|
|
23
|
+
case error
|
|
24
|
+
case critical
|
|
25
|
+
public static func < (lhs: DoorstepDropoffSDK.SDKLogLevel, rhs: DoorstepDropoffSDK.SDKLogLevel) -> Swift.Bool
|
|
26
|
+
public init?(rawValue: Swift.Int)
|
|
27
|
+
public typealias RawValue = Swift.Int
|
|
28
|
+
public var rawValue: Swift.Int {
|
|
29
|
+
get
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
public struct AddressType {
|
|
33
|
+
public let streetNumber: Swift.String
|
|
34
|
+
public let route: Swift.String
|
|
35
|
+
public let subPremise: Swift.String
|
|
36
|
+
public let locality: Swift.String
|
|
37
|
+
public let administrativeAreaLevel1: Swift.String
|
|
38
|
+
public let postalCode: Swift.String
|
|
39
|
+
public init(streetNumber: Swift.String, route: Swift.String, subPremise: Swift.String, locality: Swift.String, administrativeAreaLevel1: Swift.String, postalCode: Swift.String)
|
|
40
|
+
}
|
|
41
|
+
public struct LatLngObject : Swift.Codable, Swift.Sendable {
|
|
42
|
+
public let lat: Swift.Double
|
|
43
|
+
public let lng: Swift.Double
|
|
44
|
+
public init(lat: Swift.Double, lng: Swift.Double)
|
|
45
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
46
|
+
public init(from decoder: any Swift.Decoder) throws
|
|
47
|
+
}
|
|
48
|
+
public struct LatLngAddress : DoorstepDropoffSDK.AddressDesignation {
|
|
49
|
+
public let latitude: Swift.Double
|
|
50
|
+
public let longitude: Swift.Double
|
|
51
|
+
public let subUnit: Swift.String
|
|
52
|
+
public init(latitude: Swift.Double, longitude: Swift.Double, subUnit: Swift.String)
|
|
53
|
+
public var addressString: Swift.String {
|
|
54
|
+
get
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
public protocol AddressDesignation {
|
|
58
|
+
var addressString: Swift.String { get }
|
|
59
|
+
}
|
|
60
|
+
extension Swift.String : DoorstepDropoffSDK.AddressDesignation {
|
|
61
|
+
public var addressString: Swift.String {
|
|
62
|
+
get
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
extension DoorstepDropoffSDK.AddressType : DoorstepDropoffSDK.AddressDesignation {
|
|
66
|
+
public var addressString: Swift.String {
|
|
67
|
+
get
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
public enum DoorstepAIError : Swift.Error {
|
|
71
|
+
case sessionCreationFailed(Swift.String)
|
|
72
|
+
case invalidAddress
|
|
73
|
+
}
|
|
74
|
+
public enum DropoffType : Swift.String, Swift.Codable {
|
|
75
|
+
case pod
|
|
76
|
+
case non_pod
|
|
77
|
+
public init?(rawValue: Swift.String)
|
|
78
|
+
public typealias RawValue = Swift.String
|
|
79
|
+
public var rawValue: Swift.String {
|
|
80
|
+
get
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
@_hasMissingDesignatedInitializers public class DoorstepAI {
|
|
84
|
+
public static let configDidLoadNotification: Foundation.Notification.Name
|
|
85
|
+
public static let configDidFailToLoadNotification: Foundation.Notification.Name
|
|
86
|
+
public static func setApiKey(key: Swift.String, initCollectors: Swift.Bool = true, shouldGetConfig: Swift.Bool = true)
|
|
87
|
+
public static func setBackgroundSessionCompletionHandler(_ handler: @escaping () -> Swift.Void)
|
|
88
|
+
public static func requestAllPermissions(requestAlwaysLocation: Swift.Bool = true)
|
|
89
|
+
public static func configureRemoteLogging(enabled: Swift.Bool, minLevel: DoorstepDropoffSDK.SDKLogLevel = .warning, flushInterval: Foundation.TimeInterval = 30, batchSize: Swift.Int = 50, maxQueueSize: Swift.Int = 1000)
|
|
90
|
+
public static func enableDevMode(apiKey: Swift.String) async
|
|
91
|
+
public static func startDeliveryByPlaceID(placeID: Swift.String, deliveryId: Swift.String, timeoutSeconds: Foundation.TimeInterval? = nil, autoStopAfterDropoffSeconds: Foundation.TimeInterval? = nil) async throws
|
|
92
|
+
@available(*, deprecated, message: "Use startDeliveryByAddressType(address:deliveryId:coordinates:timeoutSeconds:autoStopAfterDropoffSeconds:) or startDeliveryByAddressString(address:deliveryId:coordinates:timeoutSeconds:autoStopAfterDropoffSeconds:) instead.")
|
|
93
|
+
public static func startDeliveryByPlusCode(plusCode: Swift.String, deliveryId: Swift.String, timeoutSeconds: Foundation.TimeInterval? = nil, autoStopAfterDropoffSeconds: Foundation.TimeInterval? = nil) async throws
|
|
94
|
+
public static func startDeliveryByAddressType(address: DoorstepDropoffSDK.AddressType, deliveryId: Swift.String, coordinates: DoorstepDropoffSDK.LatLngObject? = nil, timeoutSeconds: Foundation.TimeInterval? = nil, autoStopAfterDropoffSeconds: Foundation.TimeInterval? = nil) async throws
|
|
95
|
+
public static func startDeliveryByAddressString(address: Swift.String, deliveryId: Swift.String, coordinates: DoorstepDropoffSDK.LatLngObject? = nil, timeoutSeconds: Foundation.TimeInterval? = nil, autoStopAfterDropoffSeconds: Foundation.TimeInterval? = nil) async throws
|
|
96
|
+
@available(*, deprecated, message: "Use startDeliveryByAddressType(address:deliveryId:coordinates:timeoutSeconds:autoStopAfterDropoffSeconds:) or startDeliveryByAddressString(address:deliveryId:coordinates:timeoutSeconds:autoStopAfterDropoffSeconds:) instead.")
|
|
97
|
+
public static func startDeliveryByLatLng(latitude: Swift.Double, longitude: Swift.Double, subUnit: Swift.String, deliveryId: Swift.String, timeoutSeconds: Foundation.TimeInterval? = nil, autoStopAfterDropoffSeconds: Foundation.TimeInterval? = nil) async throws
|
|
98
|
+
public static func markDropoff(deliveryId: Swift.String, dropoffType: DoorstepDropoffSDK.DropoffType) async throws
|
|
99
|
+
public static func newEvent(eventName: Swift.String, deliveryId: Swift.String) async throws
|
|
100
|
+
public static func stopDelivery(deliveryId: Swift.String) async
|
|
101
|
+
@objc deinit
|
|
102
|
+
}
|
|
103
|
+
@_Concurrency.MainActor @preconcurrency public struct DoorstepAIRoot : SwiftUICore.View {
|
|
104
|
+
@_Concurrency.MainActor @preconcurrency public init()
|
|
105
|
+
@_Concurrency.MainActor @preconcurrency public var body: some SwiftUICore.View {
|
|
106
|
+
get
|
|
107
|
+
}
|
|
108
|
+
public typealias Body = @_opaqueReturnTypeOf("$s18DoorstepDropoffSDK0A6AIRootV4bodyQrvp", 0) __
|
|
109
|
+
}
|
|
110
|
+
public var csvOnlyMode: Swift.Bool
|
|
111
|
+
public var lastCSVSessionDirectory: Foundation.URL?
|
|
112
|
+
extension DoorstepDropoffSDK.SDKLogLevel : Swift.Hashable {}
|
|
113
|
+
extension DoorstepDropoffSDK.SDKLogLevel : Swift.RawRepresentable {}
|
|
114
|
+
extension DoorstepDropoffSDK.DropoffType : Swift.Equatable {}
|
|
115
|
+
extension DoorstepDropoffSDK.DropoffType : Swift.Hashable {}
|
|
116
|
+
extension DoorstepDropoffSDK.DropoffType : Swift.RawRepresentable {}
|
|
117
|
+
extension DoorstepDropoffSDK.DoorstepAIRoot : Swift.Sendable {}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
// swift-interface-format-version: 1.0
|
|
2
|
+
// swift-compiler-version: Apple Swift version 6.3.1 effective-5.10 (swiftlang-6.3.1.1.2 clang-2100.0.123.102)
|
|
3
|
+
// swift-module-flags: -target arm64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name DoorstepDropoffSDK
|
|
4
|
+
// swift-module-flags-ignorable: -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3.1
|
|
5
|
+
import Compression
|
|
6
|
+
import CoreLocation
|
|
7
|
+
import CoreMotion
|
|
8
|
+
@_exported import DoorstepDropoffSDK
|
|
9
|
+
import Foundation
|
|
10
|
+
import Network
|
|
11
|
+
import SQLite3
|
|
12
|
+
import Swift
|
|
13
|
+
import SwiftUI
|
|
14
|
+
import UIKit
|
|
15
|
+
import _Concurrency
|
|
16
|
+
import _StringProcessing
|
|
17
|
+
import _SwiftConcurrencyShims
|
|
18
|
+
import os
|
|
19
|
+
public enum SDKLogLevel : Swift.Int, Swift.Codable, Swift.Comparable {
|
|
20
|
+
case debug
|
|
21
|
+
case info
|
|
22
|
+
case warning
|
|
23
|
+
case error
|
|
24
|
+
case critical
|
|
25
|
+
public static func < (lhs: DoorstepDropoffSDK.SDKLogLevel, rhs: DoorstepDropoffSDK.SDKLogLevel) -> Swift.Bool
|
|
26
|
+
public init?(rawValue: Swift.Int)
|
|
27
|
+
public typealias RawValue = Swift.Int
|
|
28
|
+
public var rawValue: Swift.Int {
|
|
29
|
+
get
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
public struct AddressType {
|
|
33
|
+
public let streetNumber: Swift.String
|
|
34
|
+
public let route: Swift.String
|
|
35
|
+
public let subPremise: Swift.String
|
|
36
|
+
public let locality: Swift.String
|
|
37
|
+
public let administrativeAreaLevel1: Swift.String
|
|
38
|
+
public let postalCode: Swift.String
|
|
39
|
+
public init(streetNumber: Swift.String, route: Swift.String, subPremise: Swift.String, locality: Swift.String, administrativeAreaLevel1: Swift.String, postalCode: Swift.String)
|
|
40
|
+
}
|
|
41
|
+
public struct LatLngObject : Swift.Codable, Swift.Sendable {
|
|
42
|
+
public let lat: Swift.Double
|
|
43
|
+
public let lng: Swift.Double
|
|
44
|
+
public init(lat: Swift.Double, lng: Swift.Double)
|
|
45
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
46
|
+
public init(from decoder: any Swift.Decoder) throws
|
|
47
|
+
}
|
|
48
|
+
public struct LatLngAddress : DoorstepDropoffSDK.AddressDesignation {
|
|
49
|
+
public let latitude: Swift.Double
|
|
50
|
+
public let longitude: Swift.Double
|
|
51
|
+
public let subUnit: Swift.String
|
|
52
|
+
public init(latitude: Swift.Double, longitude: Swift.Double, subUnit: Swift.String)
|
|
53
|
+
public var addressString: Swift.String {
|
|
54
|
+
get
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
public protocol AddressDesignation {
|
|
58
|
+
var addressString: Swift.String { get }
|
|
59
|
+
}
|
|
60
|
+
extension Swift.String : DoorstepDropoffSDK.AddressDesignation {
|
|
61
|
+
public var addressString: Swift.String {
|
|
62
|
+
get
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
extension DoorstepDropoffSDK.AddressType : DoorstepDropoffSDK.AddressDesignation {
|
|
66
|
+
public var addressString: Swift.String {
|
|
67
|
+
get
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
public enum DoorstepAIError : Swift.Error {
|
|
71
|
+
case sessionCreationFailed(Swift.String)
|
|
72
|
+
case invalidAddress
|
|
73
|
+
}
|
|
74
|
+
public enum DropoffType : Swift.String, Swift.Codable {
|
|
75
|
+
case pod
|
|
76
|
+
case non_pod
|
|
77
|
+
public init?(rawValue: Swift.String)
|
|
78
|
+
public typealias RawValue = Swift.String
|
|
79
|
+
public var rawValue: Swift.String {
|
|
80
|
+
get
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
@_hasMissingDesignatedInitializers public class DoorstepAI {
|
|
84
|
+
public static let configDidLoadNotification: Foundation.Notification.Name
|
|
85
|
+
public static let configDidFailToLoadNotification: Foundation.Notification.Name
|
|
86
|
+
public static func setApiKey(key: Swift.String, initCollectors: Swift.Bool = true, shouldGetConfig: Swift.Bool = true)
|
|
87
|
+
public static func setBackgroundSessionCompletionHandler(_ handler: @escaping () -> Swift.Void)
|
|
88
|
+
public static func requestAllPermissions(requestAlwaysLocation: Swift.Bool = true)
|
|
89
|
+
public static func configureRemoteLogging(enabled: Swift.Bool, minLevel: DoorstepDropoffSDK.SDKLogLevel = .warning, flushInterval: Foundation.TimeInterval = 30, batchSize: Swift.Int = 50, maxQueueSize: Swift.Int = 1000)
|
|
90
|
+
public static func enableDevMode(apiKey: Swift.String) async
|
|
91
|
+
public static func startDeliveryByPlaceID(placeID: Swift.String, deliveryId: Swift.String, timeoutSeconds: Foundation.TimeInterval? = nil, autoStopAfterDropoffSeconds: Foundation.TimeInterval? = nil) async throws
|
|
92
|
+
@available(*, deprecated, message: "Use startDeliveryByAddressType(address:deliveryId:coordinates:timeoutSeconds:autoStopAfterDropoffSeconds:) or startDeliveryByAddressString(address:deliveryId:coordinates:timeoutSeconds:autoStopAfterDropoffSeconds:) instead.")
|
|
93
|
+
public static func startDeliveryByPlusCode(plusCode: Swift.String, deliveryId: Swift.String, timeoutSeconds: Foundation.TimeInterval? = nil, autoStopAfterDropoffSeconds: Foundation.TimeInterval? = nil) async throws
|
|
94
|
+
public static func startDeliveryByAddressType(address: DoorstepDropoffSDK.AddressType, deliveryId: Swift.String, coordinates: DoorstepDropoffSDK.LatLngObject? = nil, timeoutSeconds: Foundation.TimeInterval? = nil, autoStopAfterDropoffSeconds: Foundation.TimeInterval? = nil) async throws
|
|
95
|
+
public static func startDeliveryByAddressString(address: Swift.String, deliveryId: Swift.String, coordinates: DoorstepDropoffSDK.LatLngObject? = nil, timeoutSeconds: Foundation.TimeInterval? = nil, autoStopAfterDropoffSeconds: Foundation.TimeInterval? = nil) async throws
|
|
96
|
+
@available(*, deprecated, message: "Use startDeliveryByAddressType(address:deliveryId:coordinates:timeoutSeconds:autoStopAfterDropoffSeconds:) or startDeliveryByAddressString(address:deliveryId:coordinates:timeoutSeconds:autoStopAfterDropoffSeconds:) instead.")
|
|
97
|
+
public static func startDeliveryByLatLng(latitude: Swift.Double, longitude: Swift.Double, subUnit: Swift.String, deliveryId: Swift.String, timeoutSeconds: Foundation.TimeInterval? = nil, autoStopAfterDropoffSeconds: Foundation.TimeInterval? = nil) async throws
|
|
98
|
+
public static func markDropoff(deliveryId: Swift.String, dropoffType: DoorstepDropoffSDK.DropoffType) async throws
|
|
99
|
+
public static func newEvent(eventName: Swift.String, deliveryId: Swift.String) async throws
|
|
100
|
+
public static func stopDelivery(deliveryId: Swift.String) async
|
|
101
|
+
@objc deinit
|
|
102
|
+
}
|
|
103
|
+
@_Concurrency.MainActor @preconcurrency public struct DoorstepAIRoot : SwiftUICore.View {
|
|
104
|
+
@_Concurrency.MainActor @preconcurrency public init()
|
|
105
|
+
@_Concurrency.MainActor @preconcurrency public var body: some SwiftUICore.View {
|
|
106
|
+
get
|
|
107
|
+
}
|
|
108
|
+
public typealias Body = @_opaqueReturnTypeOf("$s18DoorstepDropoffSDK0A6AIRootV4bodyQrvp", 0) __
|
|
109
|
+
}
|
|
110
|
+
public var csvOnlyMode: Swift.Bool
|
|
111
|
+
public var lastCSVSessionDirectory: Foundation.URL?
|
|
112
|
+
extension DoorstepDropoffSDK.SDKLogLevel : Swift.Hashable {}
|
|
113
|
+
extension DoorstepDropoffSDK.SDKLogLevel : Swift.RawRepresentable {}
|
|
114
|
+
extension DoorstepDropoffSDK.DropoffType : Swift.Equatable {}
|
|
115
|
+
extension DoorstepDropoffSDK.DropoffType : Swift.Hashable {}
|
|
116
|
+
extension DoorstepDropoffSDK.DropoffType : Swift.RawRepresentable {}
|
|
117
|
+
extension DoorstepDropoffSDK.DoorstepAIRoot : Swift.Sendable {}
|