statelyai 0.0.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.
- package/README.md +2 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -24,3 +24,5 @@ Available commands:
|
|
|
24
24
|
| `statelyai diff <source> <target>` | Diff two locators and optionally fail on changes |
|
|
25
25
|
| `statelyai pull <source> <target>` | Materialize a source into a local target file |
|
|
26
26
|
| `statelyai open <file>` | Open a local file in a browser-backed visual editor session |
|
|
27
|
+
|
|
28
|
+
Pass `--api-key` or set `STATELY_API_KEY` when the editor server requires auth. Self-hosted editor servers can disable editor-sync API-key checks with `EDITOR_SYNC_AUTH_REQUIRED=false`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "statelyai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Command-line tools for Stately",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"statelyai": "./cli.mjs"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@statelyai/sdk": "0.
|
|
15
|
+
"@statelyai/sdk": "0.5.1"
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|
|
18
18
|
"build": "node cli.mjs open --help",
|