@fonoster/sdk 0.6.4 → 0.6.5

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 +1 -1
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -64,7 +64,7 @@ In Node.js:
64
64
  ```typescript
65
65
  const SDK = require("@fonoster/sdk");
66
66
  const accessKeyId = "WO00000000000000000000000000000000";
67
- const endpoint = "https://api.fonoster.io";
67
+ const endpoint = "api.fonoster.io";
68
68
  const client = new SDK.Client({ accessKeyId, endpoint });
69
69
  ```
70
70
 
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@fonoster/sdk",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "Web and Node.js SDK for Fonoster",
5
5
  "author": "Pedro Sanders <psanders@fonoster.com>",
6
6
  "homepage": "https://github.com/fonoster/fonoster#readme",
7
7
  "license": "MIT",
8
8
  "main": "dist/node/node.js",
9
9
  "module": "dist/node/index.esm.js",
10
+ "browser": "dist/web/index.esm.js",
10
11
  "unpkg": "dist/web/fonoster.min.js",
11
12
  "types": "dist/node/node.d.ts",
12
13
  "directories": {
@@ -60,5 +61,5 @@
60
61
  "rollup": "^4.18.0",
61
62
  "serve": "^14.2.3"
62
63
  },
63
- "gitHead": "0c94ef1aa747a167ab4dc8bb788d2646f715a344"
64
+ "gitHead": "e7a5ba2606eee008cf7bc746ae552c0924c196b9"
64
65
  }