tevrocsdk 0.1.2 → 0.1.4

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 +4 -3
package/README.md CHANGED
@@ -29,7 +29,7 @@ Option 1: Local file
29
29
 
30
30
  Option 2: CDN (recommended)
31
31
  ```html
32
- <script src="https://unpkg.com/tevrocsdk/dist/tevroc-sdk.umd.js"></script>
32
+ <script src="https://unpkg.com/tevrocsdk@latest/tevroc-sdk.umd.js"></script>
33
33
  <script>
34
34
  const tevroc = Tevroc.createClient({
35
35
  baseUrl: "https://your-worker.example.workers.dev"
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "tevrocsdk",
3
- "version": "0.1.2",
4
- "description": "Base44-style JavaScript SDK for the Tevroc Worker API.",
3
+ "version": "0.1.4",
4
+ "description": "JavaScript SDK for the Tevroc API.",
5
5
  "main": "./tevroc-sdk.umd.js",
6
6
  "module": "./tevroc-sdk.esm.js",
7
7
 
8
8
  "keywords": [
9
9
  "tevroc",
10
10
  "sdk",
11
- "worker"
11
+ "worker",
12
+ "api"
12
13
  ],
13
14
  "license": "MIT"
14
15
  }