@parall/parall 1.45.0 → 1.47.0

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.45.0",
3
+ "version": "1.47.0",
4
4
  "description": "OpenClaw channel plugin for Parall IM",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -16,8 +16,8 @@
16
16
  "openclaw.plugin.json"
17
17
  ],
18
18
  "dependencies": {
19
- "@parall/sdk": "1.45.0",
20
- "@parall/agent-core": "1.45.0"
19
+ "@parall/agent-core": "1.47.0",
20
+ "@parall/sdk": "1.47.0"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/node": "^22.0.0",
@@ -31,6 +31,9 @@ Results are JSON on stdout; failures print an error.
31
31
  clip's owner or an admin to bind it — do not retry or work around it.
32
32
  - If the executing runtime is offline or the call times out, report that
33
33
  plainly; do not queue, and never fabricate a result for a run that errored.
34
+ - Hosted browser activation is handled by the CLI: it waits (bounded) while a
35
+ cold hosted browser starts, so if the invoke still fails, report the error —
36
+ do not blind-retry in a loop.
34
37
  - A clip may act through a person's real logged-in account — outward,
35
38
  irreversible, or spending actions (post, order, delete, pay) get the same
36
39
  caution as any shared-state change: confirm when intent isn't explicit.
package/src/gateway.ts CHANGED
@@ -254,6 +254,10 @@ export function createOpenClawDispatchAdapter(opts: {
254
254
  }
255
255
 
256
256
  return {
257
+ // dispatch() maps earlierEvents into native InboundHistory below — the
258
+ // gateway must not also concatenate them into bodyForAgent.
259
+ earlierEventsInPrompt: true,
260
+
257
261
  abortDispatch(sessionKey: string): void {
258
262
  activeStreams.get(sessionKey)?.fail(new Error('dispatch deadline exceeded'));
259
263
  },