@doorstepai/dropoff-sdk 2.0.1 → 2.0.2
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 +1 -1
- package/ios/DoorstepAI.swift +0 -14
- package/ios/DoorstepDropoffSDK.xcframework/Info.plist +5 -5
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/DoorstepDropoffSDK +0 -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 +26 -12
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +2 -2
- 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 +2 -2
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/_CodeSignature/CodeResources +11 -11
- 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 +1417 -1406
- 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/Info.plist +0 -0
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +26 -12
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +2 -2
- 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 +2 -2
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +26 -12
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +2 -2
- 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 +2 -2
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/_CodeSignature/CodeResources +21 -21
- 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 +1417 -1406
- package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Resources/Relocations/x86_64/DoorstepDropoffSDK.yml +1389 -1378
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -86,7 +86,7 @@ def kotlin_version = getExtOrDefault("kotlinVersion")
|
|
|
86
86
|
dependencies {
|
|
87
87
|
implementation "com.facebook.react:react-android"
|
|
88
88
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
89
|
-
implementation("ai.doorstep.com:doorstepai-dropoff-sdk:2.0.
|
|
89
|
+
implementation("ai.doorstep.com:doorstepai-dropoff-sdk:2.0.1")
|
|
90
90
|
api "org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1"
|
|
91
91
|
}
|
|
92
92
|
|
package/ios/DoorstepAI.swift
CHANGED
|
@@ -1,23 +1,9 @@
|
|
|
1
1
|
import Foundation
|
|
2
2
|
import React
|
|
3
3
|
import DoorstepDropoffSDK
|
|
4
|
-
import CoreLocation
|
|
5
4
|
|
|
6
5
|
@objc(DoorstepAI)
|
|
7
6
|
class DoorstepAIBridge: NSObject {
|
|
8
|
-
private let locationManager = CLLocationManager()
|
|
9
|
-
|
|
10
|
-
override init() {
|
|
11
|
-
super.init()
|
|
12
|
-
locationManager.showsBackgroundLocationIndicator = true
|
|
13
|
-
locationManager.allowsBackgroundLocationUpdates = true
|
|
14
|
-
locationManager.pausesLocationUpdatesAutomatically = false
|
|
15
|
-
|
|
16
|
-
// Request authorization
|
|
17
|
-
locationManager.requestAlwaysAuthorization()
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
|
|
21
7
|
@objc
|
|
22
8
|
static func requiresMainQueueSetup() -> Bool {
|
|
23
9
|
return true
|
|
@@ -10,18 +10,15 @@
|
|
|
10
10
|
<key>DebugSymbolsPath</key>
|
|
11
11
|
<string>dSYMs</string>
|
|
12
12
|
<key>LibraryIdentifier</key>
|
|
13
|
-
<string>ios-
|
|
13
|
+
<string>ios-arm64</string>
|
|
14
14
|
<key>LibraryPath</key>
|
|
15
15
|
<string>DoorstepDropoffSDK.framework</string>
|
|
16
16
|
<key>SupportedArchitectures</key>
|
|
17
17
|
<array>
|
|
18
18
|
<string>arm64</string>
|
|
19
|
-
<string>x86_64</string>
|
|
20
19
|
</array>
|
|
21
20
|
<key>SupportedPlatform</key>
|
|
22
21
|
<string>ios</string>
|
|
23
|
-
<key>SupportedPlatformVariant</key>
|
|
24
|
-
<string>simulator</string>
|
|
25
22
|
</dict>
|
|
26
23
|
<dict>
|
|
27
24
|
<key>BinaryPath</key>
|
|
@@ -29,15 +26,18 @@
|
|
|
29
26
|
<key>DebugSymbolsPath</key>
|
|
30
27
|
<string>dSYMs</string>
|
|
31
28
|
<key>LibraryIdentifier</key>
|
|
32
|
-
<string>ios-
|
|
29
|
+
<string>ios-arm64_x86_64-simulator</string>
|
|
33
30
|
<key>LibraryPath</key>
|
|
34
31
|
<string>DoorstepDropoffSDK.framework</string>
|
|
35
32
|
<key>SupportedArchitectures</key>
|
|
36
33
|
<array>
|
|
37
34
|
<string>arm64</string>
|
|
35
|
+
<string>x86_64</string>
|
|
38
36
|
</array>
|
|
39
37
|
<key>SupportedPlatform</key>
|
|
40
38
|
<string>ios</string>
|
|
39
|
+
<key>SupportedPlatformVariant</key>
|
|
40
|
+
<string>simulator</string>
|
|
41
41
|
</dict>
|
|
42
42
|
</array>
|
|
43
43
|
<key>CFBundlePackageType</key>
|
package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/DoorstepDropoffSDK
CHANGED
|
Binary file
|
package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Info.plist
CHANGED
|
Binary file
|
|
@@ -3313,80 +3313,87 @@
|
|
|
3313
3313
|
"length": 24,
|
|
3314
3314
|
"value": "\"pendingNetworkRequests\""
|
|
3315
3315
|
},
|
|
3316
|
+
{
|
|
3317
|
+
"filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/SDKs\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
|
|
3318
|
+
"kind": "IntegerLiteral",
|
|
3319
|
+
"offset": 4060,
|
|
3320
|
+
"length": 3,
|
|
3321
|
+
"value": "300"
|
|
3322
|
+
},
|
|
3316
3323
|
{
|
|
3317
3324
|
"filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/SDKs\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
|
|
3318
3325
|
"kind": "StringLiteral",
|
|
3319
|
-
"offset":
|
|
3326
|
+
"offset": 4102,
|
|
3320
3327
|
"length": 18,
|
|
3321
3328
|
"value": "\"activeDeliveries\""
|
|
3322
3329
|
},
|
|
3323
3330
|
{
|
|
3324
3331
|
"filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/SDKs\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
|
|
3325
3332
|
"kind": "BooleanLiteral",
|
|
3326
|
-
"offset":
|
|
3333
|
+
"offset": 4164,
|
|
3327
3334
|
"length": 4,
|
|
3328
3335
|
"value": "true"
|
|
3329
3336
|
},
|
|
3330
3337
|
{
|
|
3331
3338
|
"filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/SDKs\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
|
|
3332
3339
|
"kind": "BooleanLiteral",
|
|
3333
|
-
"offset":
|
|
3340
|
+
"offset": 4240,
|
|
3334
3341
|
"length": 5,
|
|
3335
3342
|
"value": "false"
|
|
3336
3343
|
},
|
|
3337
3344
|
{
|
|
3338
3345
|
"filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/SDKs\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
|
|
3339
3346
|
"kind": "StringLiteral",
|
|
3340
|
-
"offset":
|
|
3347
|
+
"offset": 4316,
|
|
3341
3348
|
"length": 2,
|
|
3342
3349
|
"value": "\"\""
|
|
3343
3350
|
},
|
|
3344
3351
|
{
|
|
3345
3352
|
"filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/SDKs\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
|
|
3346
3353
|
"kind": "StringLiteral",
|
|
3347
|
-
"offset":
|
|
3354
|
+
"offset": 4526,
|
|
3348
3355
|
"length": 27,
|
|
3349
3356
|
"value": "\"BackgroundLogSessionQueue\""
|
|
3350
3357
|
},
|
|
3351
3358
|
{
|
|
3352
3359
|
"filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/SDKs\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
|
|
3353
3360
|
"kind": "Dictionary",
|
|
3354
|
-
"offset":
|
|
3361
|
+
"offset": 4656,
|
|
3355
3362
|
"length": 3,
|
|
3356
3363
|
"value": "[]"
|
|
3357
3364
|
},
|
|
3358
3365
|
{
|
|
3359
3366
|
"filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/SDKs\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
|
|
3360
3367
|
"kind": "Dictionary",
|
|
3361
|
-
"offset":
|
|
3368
|
+
"offset": 4703,
|
|
3362
3369
|
"length": 3,
|
|
3363
3370
|
"value": "[]"
|
|
3364
3371
|
},
|
|
3365
3372
|
{
|
|
3366
3373
|
"filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/SDKs\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
|
|
3367
3374
|
"kind": "Dictionary",
|
|
3368
|
-
"offset":
|
|
3375
|
+
"offset": 4750,
|
|
3369
3376
|
"length": 3,
|
|
3370
3377
|
"value": "[]"
|
|
3371
3378
|
},
|
|
3372
3379
|
{
|
|
3373
3380
|
"filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/SDKs\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
|
|
3374
3381
|
"kind": "Dictionary",
|
|
3375
|
-
"offset":
|
|
3382
|
+
"offset": 4877,
|
|
3376
3383
|
"length": 3,
|
|
3377
3384
|
"value": "[]"
|
|
3378
3385
|
},
|
|
3379
3386
|
{
|
|
3380
3387
|
"filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/SDKs\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
|
|
3381
3388
|
"kind": "IntegerLiteral",
|
|
3382
|
-
"offset":
|
|
3389
|
+
"offset": 26080,
|
|
3383
3390
|
"length": 1,
|
|
3384
3391
|
"value": "0"
|
|
3385
3392
|
},
|
|
3386
3393
|
{
|
|
3387
3394
|
"filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/SDKs\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
|
|
3388
3395
|
"kind": "IntegerLiteral",
|
|
3389
|
-
"offset":
|
|
3396
|
+
"offset": 30507,
|
|
3390
3397
|
"length": 1,
|
|
3391
3398
|
"value": "0"
|
|
3392
3399
|
},
|
|
@@ -3754,10 +3761,17 @@
|
|
|
3754
3761
|
"length": 2,
|
|
3755
3762
|
"value": "[]"
|
|
3756
3763
|
},
|
|
3764
|
+
{
|
|
3765
|
+
"filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/SDKs\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/DataManager.swift",
|
|
3766
|
+
"kind": "IntegerLiteral",
|
|
3767
|
+
"offset": 1128,
|
|
3768
|
+
"length": 3,
|
|
3769
|
+
"value": "240"
|
|
3770
|
+
},
|
|
3757
3771
|
{
|
|
3758
3772
|
"filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/SDKs\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/DataManager.swift",
|
|
3759
3773
|
"kind": "BooleanLiteral",
|
|
3760
|
-
"offset":
|
|
3774
|
+
"offset": 1175,
|
|
3761
3775
|
"length": 5,
|
|
3762
3776
|
"value": "false"
|
|
3763
3777
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// swift-interface-format-version: 1.0
|
|
2
|
-
// swift-compiler-version: Apple Swift version 6.2.
|
|
2
|
+
// swift-compiler-version: Apple Swift version 6.2.4 effective-5.10 (swiftlang-6.2.4.1.4 clang-1700.6.4.2)
|
|
3
3
|
// swift-module-flags: -target arm64-apple-ios15.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -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.2.
|
|
4
|
+
// swift-module-flags-ignorable: -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.4
|
|
5
5
|
import Compression
|
|
6
6
|
import CoreLocation
|
|
7
7
|
import CoreMotion
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// swift-interface-format-version: 1.0
|
|
2
|
-
// swift-compiler-version: Apple Swift version 6.2.
|
|
2
|
+
// swift-compiler-version: Apple Swift version 6.2.4 effective-5.10 (swiftlang-6.2.4.1.4 clang-1700.6.4.2)
|
|
3
3
|
// swift-module-flags: -target arm64-apple-ios15.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -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.2.
|
|
4
|
+
// swift-module-flags-ignorable: -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.4
|
|
5
5
|
import Compression
|
|
6
6
|
import CoreLocation
|
|
7
7
|
import CoreMotion
|
|
@@ -10,27 +10,27 @@
|
|
|
10
10
|
</data>
|
|
11
11
|
<key>Info.plist</key>
|
|
12
12
|
<data>
|
|
13
|
-
|
|
13
|
+
igd7nFuiEoUJbnalqGa6Mb/Dacg=
|
|
14
14
|
</data>
|
|
15
15
|
<key>Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.abi.json</key>
|
|
16
16
|
<data>
|
|
17
|
-
|
|
17
|
+
fMqM2U5B1IG8lX2NtaOHthpgrrU=
|
|
18
18
|
</data>
|
|
19
19
|
<key>Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
|
|
20
20
|
<data>
|
|
21
|
-
|
|
21
|
+
Gm7uEOEnttqGsHe4N8fxLSYJ1Gc=
|
|
22
22
|
</data>
|
|
23
23
|
<key>Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.swiftdoc</key>
|
|
24
24
|
<data>
|
|
25
|
-
|
|
25
|
+
hIjC8TYHyWonerEERVg2m6Q92mA=
|
|
26
26
|
</data>
|
|
27
27
|
<key>Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.swiftinterface</key>
|
|
28
28
|
<data>
|
|
29
|
-
|
|
29
|
+
Gm7uEOEnttqGsHe4N8fxLSYJ1Gc=
|
|
30
30
|
</data>
|
|
31
31
|
<key>Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.swiftmodule</key>
|
|
32
32
|
<data>
|
|
33
|
-
|
|
33
|
+
t0uMhQ3D/QNIwzu3Q73RziGIbOs=
|
|
34
34
|
</data>
|
|
35
35
|
<key>Modules/module.modulemap</key>
|
|
36
36
|
<data>
|
|
@@ -50,35 +50,35 @@
|
|
|
50
50
|
<dict>
|
|
51
51
|
<key>hash2</key>
|
|
52
52
|
<data>
|
|
53
|
-
|
|
53
|
+
PV49o6x7Dhh2SpfPR0e9PVu+8yxXpjwNptW9T9bTO6U=
|
|
54
54
|
</data>
|
|
55
55
|
</dict>
|
|
56
56
|
<key>Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
|
|
57
57
|
<dict>
|
|
58
58
|
<key>hash2</key>
|
|
59
59
|
<data>
|
|
60
|
-
|
|
60
|
+
uBJDXJA3izS1WGfc0Vgsa/0hxnARIZmW1O5X8oxz5hY=
|
|
61
61
|
</data>
|
|
62
62
|
</dict>
|
|
63
63
|
<key>Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.swiftdoc</key>
|
|
64
64
|
<dict>
|
|
65
65
|
<key>hash2</key>
|
|
66
66
|
<data>
|
|
67
|
-
|
|
67
|
+
jQR4omSB851xXKYPSBzJH44ZQtDAJdnALHqy9LIZT98=
|
|
68
68
|
</data>
|
|
69
69
|
</dict>
|
|
70
70
|
<key>Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.swiftinterface</key>
|
|
71
71
|
<dict>
|
|
72
72
|
<key>hash2</key>
|
|
73
73
|
<data>
|
|
74
|
-
|
|
74
|
+
uBJDXJA3izS1WGfc0Vgsa/0hxnARIZmW1O5X8oxz5hY=
|
|
75
75
|
</data>
|
|
76
76
|
</dict>
|
|
77
77
|
<key>Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.swiftmodule</key>
|
|
78
78
|
<dict>
|
|
79
79
|
<key>hash2</key>
|
|
80
80
|
<data>
|
|
81
|
-
|
|
81
|
+
HvKwPA5PV7GqFCHDjjSRFh5Jf0eyez1RQfT7s2KaocA=
|
|
82
82
|
</data>
|
|
83
83
|
</dict>
|
|
84
84
|
<key>Modules/module.modulemap</key>
|