@paneui/cli 0.0.1 → 0.0.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.
- package/dist/commands/create.js +4 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/dist/commands/create.js
CHANGED
|
@@ -58,7 +58,10 @@ Options:
|
|
|
58
58
|
the --artifact value is treated as a URL. Note: the relay
|
|
59
59
|
does not serve "html-ref" artifacts in this release and
|
|
60
60
|
will reject the session — use "html-inline".
|
|
61
|
-
--ttl <seconds> Session time-to-live in seconds.
|
|
61
|
+
--ttl <seconds> Session time-to-live in seconds. The relay clamps this
|
|
62
|
+
to its configured MAX_TTL_SECONDS (defaults: 1 h
|
|
63
|
+
requested, 24 h max for self-host; hosted may differ).
|
|
64
|
+
The returned \`expires_at\` is the authoritative value.
|
|
62
65
|
--participants <n> Number of human participants (default 1).
|
|
63
66
|
--metadata <path|json> Arbitrary metadata object (file path or inline JSON).
|
|
64
67
|
--callback <path|json> Webhook callback config: { url, events[], secret }.
|
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ import { runConfig, configHelp } from "./commands/config.js";
|
|
|
14
14
|
import { runLogout, logoutHelp } from "./commands/logout.js";
|
|
15
15
|
import { runKeys, keysHelp } from "./commands/keys.js";
|
|
16
16
|
import { runDelete, deleteHelp } from "./commands/delete.js";
|
|
17
|
-
const VERSION = "0.0.
|
|
17
|
+
const VERSION = "0.0.2";
|
|
18
18
|
const ROOT_HELP = `pane — a round-trip UI channel between agents and humans
|
|
19
19
|
|
|
20
20
|
Usage:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paneui/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Command-line client for the Pane relay: create sessions, inspect state, send and watch events.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"test:unit": "vitest run"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@paneui/core": "^0.0.
|
|
44
|
+
"@paneui/core": "^0.0.2"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/node": "^22.7.0",
|