eptaadmin-sdk 0.1.2 → 0.1.3

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 +7 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,7 +6,13 @@ This SDK is currently **read-only**: it fetches workspaces, data sources, and th
6
6
 
7
7
  ## Install
8
8
 
9
- This package isn't published to the npm registry yet. Install it directly from the EptaAdmin repository, e.g. by copying `sdk/js/` into your project or adding it as a local/git dependency:
9
+ ```sh
10
+ npm install eptaadmin-sdk
11
+ ```
12
+
13
+ The package is published on the [npm registry](https://www.npmjs.com/package/eptaadmin-sdk) and versioned automatically from this repository (see `.github/workflows/publish-sdk.yml`) — every change under `sdk/js/` merged to `main` bumps the version and publishes a new release.
14
+
15
+ If you'd rather work against an unreleased change, point at the local folder instead:
10
16
 
11
17
  ```json
12
18
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eptaadmin-sdk",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Client SDK for reading your EptaAdmin workspace data from your own project.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",