@doorstepai/dropoff-sdk 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +1 -1
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 and Proof of Delivery (POD) events into your React Native application. This SDK enables seamless coordination between your delivery interface and DoorstepAI's backend systems.
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
- ```tsx
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.0",
3
+ "version": "1.0.1",
4
4
  "description": "doorstep.ai dropoff sdk for React Native",
5
5
  "source": "./src/index.tsx",
6
6
  "main": "./lib/module/index.js",