@parall/parall 1.32.0 → 1.32.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parall/parall",
|
|
3
|
-
"version": "1.32.
|
|
3
|
+
"version": "1.32.1",
|
|
4
4
|
"description": "OpenClaw channel plugin for Parall IM",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -16,11 +16,12 @@
|
|
|
16
16
|
"openclaw.plugin.json"
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@parall/
|
|
20
|
-
"@parall/
|
|
19
|
+
"@parall/agent-core": "1.32.1",
|
|
20
|
+
"@parall/sdk": "1.32.1"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/node": "^22.0.0",
|
|
24
|
+
"esbuild": "^0.25.0",
|
|
24
25
|
"openclaw": "2026.5.7",
|
|
25
26
|
"typescript": "^5.7.0"
|
|
26
27
|
},
|
|
@@ -29,14 +30,14 @@
|
|
|
29
30
|
},
|
|
30
31
|
"openclaw": {
|
|
31
32
|
"extensions": [
|
|
32
|
-
"./
|
|
33
|
+
"./dist/index.bundle.mjs"
|
|
33
34
|
],
|
|
34
35
|
"install": {
|
|
35
36
|
"minHostVersion": ">=2026.5.7"
|
|
36
37
|
}
|
|
37
38
|
},
|
|
38
39
|
"scripts": {
|
|
39
|
-
"build": "tsc -b && node scripts/generate-skills.mjs",
|
|
40
|
+
"build": "tsc -b && node scripts/generate-skills.mjs && node scripts/bundle.mjs",
|
|
40
41
|
"test": "node --test test/*.test.mjs"
|
|
41
42
|
}
|
|
42
43
|
}
|
|
@@ -120,7 +120,11 @@ parall dm "Alice" --file /tmp/report.pdf --text "Report attached"
|
|
|
120
120
|
|
|
121
121
|
## Approvals
|
|
122
122
|
|
|
123
|
-
When a CLI command returns a `PERMISSION_DENIED` error, the output includes
|
|
123
|
+
When a CLI command returns a `PERMISSION_DENIED` error, the output includes the denied `action` and `resource_uri`. Whether that action can be approved is decided by the server (there is no fixed allowlist):
|
|
124
|
+
- If it IS approvable, a `Request approval:` line with a `parall approvals request` command follows — fill in the placeholders it shows (`--chat`, `--title`, `--reason`) and run it.
|
|
125
|
+
- If it is NOT approvable, the output says so — ask a human with permission instead of requesting approval.
|
|
126
|
+
|
|
127
|
+
A different `INVALID_TARGET` error means you addressed the wrong kind of thing (e.g. a `usr_` id where a chat is expected). Follow the message (e.g. use `parall dm` to message a user) — do not request approval for it.
|
|
124
128
|
|
|
125
129
|
```bash
|
|
126
130
|
# Request approval (use action and resource_uri from the error)
|
|
@@ -162,4 +166,4 @@ Every entity is addressable with a `prll://` URI. Common prefixes you'll see in
|
|
|
162
166
|
|
|
163
167
|
When a message or event references `prll://sch_xxx` or `prll://srn_xxx`, or when you receive `[Event: schedule.fired]`, switch to the **parall-schedules** skill for the CLI commands (create / list / pause / resume / cancel / runs).
|
|
164
168
|
|
|
165
|
-
|
|
169
|
+
CLI success output is JSON. Errors print a JSON line (`{"error","status","code",...}`) and, on a `PERMISSION_DENIED`, may add a plain-text `Request approval:` line — read both.
|
|
@@ -66,4 +66,4 @@ When you receive `[Event: task.comment.created]`, someone commented on a task yo
|
|
|
66
66
|
2. Reply via comment: `tasks comments add prll://tsk_xxx --body "Response..."`
|
|
67
67
|
3. If the comment requests status changes, update accordingly
|
|
68
68
|
|
|
69
|
-
|
|
69
|
+
CLI success output is JSON; errors print a JSON line plus, on a `PERMISSION_DENIED`, an optional plain-text `Request approval:` line — read both.
|
|
@@ -132,4 +132,4 @@ parall wiki reset <slug> # Restore all files to last synced state
|
|
|
132
132
|
parall wiki log <slug> # Recent wiki operations
|
|
133
133
|
```
|
|
134
134
|
|
|
135
|
-
|
|
135
|
+
CLI success output is JSON; errors may add a plain-text `Request approval:` line on a `PERMISSION_DENIED` — read both. Run `parall wiki --help` for full options.
|