@doorstepai/dropoff-sdk 1.0.0 → 1.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/README.md +4 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
# DoorstepAI Dropoff SDK for React Native
|
|
3
3
|
|
|
4
|
-
The `@doorstepai/dropoff-sdk` provides a set of tools to integrate delivery tracking
|
|
4
|
+
The `@doorstepai/dropoff-sdk` provides a set of tools to integrate delivery tracking into your React Native application. This SDK enables seamless coordination between your delivery interface and DoorstepAI's backend systems.
|
|
5
5
|
|
|
6
6
|
## 📦 Installation
|
|
7
7
|
|
|
@@ -26,7 +26,7 @@ import {
|
|
|
26
26
|
|
|
27
27
|
Place the following component in the root of your `App.tsx` or main entry file:
|
|
28
28
|
|
|
29
|
-
```
|
|
29
|
+
```jsx
|
|
30
30
|
import { RootDoorstepAI } from "@doorstepai/dropoff-sdk"
|
|
31
31
|
|
|
32
32
|
const App = () => {
|
|
@@ -79,6 +79,8 @@ import { DoorstepAI } from "@doorstepai/dropoff-sdk"
|
|
|
79
79
|
|
|
80
80
|
Initializes the DoorstepAI module on Android. Automatically handled by `RootDoorstepAI` if used properly.
|
|
81
81
|
|
|
82
|
+
NOTE: You should never need to call this method directly.
|
|
83
|
+
|
|
82
84
|
---
|
|
83
85
|
|
|
84
86
|
### `DoorstepAI.setApiKey(apiKey: string): void`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@doorstepai/dropoff-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "doorstep.ai dropoff sdk for React Native",
|
|
5
5
|
"source": "./src/index.tsx",
|
|
6
6
|
"main": "./lib/module/index.js",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"url": "git+https://github.com/doorstep-ai/DoorstepAIDropoffReactNativeSDK"
|
|
51
51
|
},
|
|
52
52
|
"author": "Doing Doorstep Better, Inc. (Sheel Patel)",
|
|
53
|
-
|
|
53
|
+
|
|
54
54
|
"homepage": "https://github.com/doorstep-ai/DoorstepAIDropoffReactNativeSDK#readme",
|
|
55
55
|
"publishConfig": {
|
|
56
56
|
"registry": "https://registry.npmjs.org/"
|