@drttix/drt-sdk 0.1.0 → 0.1.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 +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,7 +8,7 @@ This package provides typed access to `shopper` and `scanner` services via `fetc
8
8
  ## 📦 Installation
9
9
 
10
10
  ```bash
11
- npm install @drttix/public-api
11
+ npm install @drttix/drt-sdk
12
12
  ```
13
13
 
14
14
  ---
@@ -16,7 +16,7 @@ npm install @drttix/public-api
16
16
  ## 📦 Usage
17
17
 
18
18
  ```ts
19
- import { DRT } from "@drttix/public-api";
19
+ import { DRT } from "@drttix/drt-sdk";
20
20
 
21
21
  const shopperGuid = "your-shopper-guid";
22
22
  const account = "your-account";
@@ -38,7 +38,7 @@ process.env.DRT_API_LOCAL = "true";
38
38
  // Option 2: Use a custom base URL
39
39
  process.env.DRT_API_BASE_URL = "http://localhost:8080";
40
40
 
41
- import { DRT } from "@drttix/public-api";
41
+ import { DRT } from "@drttix/drt-sdk";
42
42
  ```
43
43
 
44
44
  Or via command line:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@drttix/drt-sdk",
3
3
  "description": "DRT SDK",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
7
7
  "types": "dist/esm/index.d.ts",