@mappa-ai/mappa-node 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -27,7 +27,7 @@ export MAPPA_API_KEY="your-api-key"
27
27
  ```
28
28
 
29
29
  ```ts
30
- import { Mappa } from "mappa-node";
30
+ import { Mappa } from "@mappa-ai/mappa-node";
31
31
 
32
32
  const client = new Mappa("your-api-key");
33
33
  ```
@@ -37,7 +37,7 @@ const client = new Mappa("your-api-key");
37
37
  ### Instantiate the client
38
38
 
39
39
  ```ts
40
- import { Mappa } from "mappa-node";
40
+ import { Mappa } from "@mappa-ai/mappa-node";
41
41
 
42
42
  const mappa = new Mappa(); // Reads MAPPA_API_KEY by default
43
43
  ```
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@mappa-ai/mappa-node",
3
3
  "module": "src/index.ts",
4
4
  "type": "module",
5
- "version": "0.1.1",
5
+ "version": "0.1.2",
6
6
  "license": "MIT",
7
7
  "files": [
8
8
  "dist/**"