@parall/daemon 1.43.0 → 1.45.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/bundle/manifest.json +11 -11
- package/bundle/parall-browser-pod.js +4 -1
- package/bundle/parall-claude-agent.js +455 -102
- package/bundle/parall-codex-agent.js +1044 -1313
- package/bundle/parall-daemon.js +870 -312
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +229 -2
- package/dist/config.d.ts.map +1 -1
- package/dist/runtime-bin-resolver.d.ts +7 -1
- package/dist/runtime-bin-resolver.d.ts.map +1 -1
- package/dist/runtime-bin-resolver.js +57 -22
- package/dist/runtimes.d.ts +15 -4
- package/dist/runtimes.d.ts.map +1 -1
- package/dist/runtimes.js +60 -5
- package/dist/supervisor.d.ts.map +1 -1
- package/dist/supervisor.js +4 -1
- package/dist/win-lifecycle.d.ts +96 -0
- package/dist/win-lifecycle.d.ts.map +1 -0
- package/dist/win-lifecycle.js +229 -0
- package/dist/win-service.d.ts +119 -0
- package/dist/win-service.d.ts.map +1 -0
- package/dist/win-service.js +226 -0
- package/package.json +6 -6
package/bundle/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
3
|
-
"built_at": "2026-07-
|
|
2
|
+
"version": "1.45.0",
|
|
3
|
+
"built_at": "2026-07-15T11:10:33.222Z",
|
|
4
4
|
"min_node_version": "20.0.0",
|
|
5
5
|
"files": {
|
|
6
6
|
"bb-browser-daemon.js": {
|
|
@@ -16,29 +16,29 @@
|
|
|
16
16
|
"size": 18
|
|
17
17
|
},
|
|
18
18
|
"parall-browser-pod.js": {
|
|
19
|
-
"sha256": "
|
|
20
|
-
"size":
|
|
19
|
+
"sha256": "81dbdef2606b3295d94101d672f514f6fab6d7c105716b4fe9f917bb9b404b1a",
|
|
20
|
+
"size": 1699775
|
|
21
21
|
},
|
|
22
22
|
"parall-channel-exec.js": {
|
|
23
23
|
"sha256": "32c438151df40ccda7491c57bfa0cd9d6c4d762755353c6c751d5793af57b971",
|
|
24
24
|
"size": 7097
|
|
25
25
|
},
|
|
26
26
|
"parall-claude-agent.js": {
|
|
27
|
-
"sha256": "
|
|
28
|
-
"size":
|
|
27
|
+
"sha256": "870509bd21aedda2801f4405f37a24ed97228f7ba65a1c5eefde805a5a528c9b",
|
|
28
|
+
"size": 1654728
|
|
29
29
|
},
|
|
30
30
|
"parall-codex-agent.js": {
|
|
31
|
-
"sha256": "
|
|
32
|
-
"size":
|
|
31
|
+
"sha256": "19f4b4545795f516734350d1409de3990ae41d033625607a4e942c29e48f11ab",
|
|
32
|
+
"size": 1675120
|
|
33
33
|
},
|
|
34
34
|
"parall-daemon.js": {
|
|
35
|
-
"sha256": "
|
|
36
|
-
"size":
|
|
35
|
+
"sha256": "a4d8e64d4de7a36e44249f2a260898df23e8e14c096490ee0f258cea1bdacae4",
|
|
36
|
+
"size": 1746753
|
|
37
37
|
},
|
|
38
38
|
"parall-openclaw-agent.js": {
|
|
39
39
|
"sha256": "505433b4bf3a4b8dbb7b96978d8693d6c48079f4513282ff1ee59a6d13b3eddf",
|
|
40
40
|
"size": 9801
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
|
-
"signature": "
|
|
43
|
+
"signature": "9HO/zz1aY0Yn/P8rclzCJFXnOBN5bGhmHQGdjzKnY/VSJjcr9uAcnf7E2MOGEAzLh1fjx+LLzNTbqk0/riF2CQ=="
|
|
44
44
|
}
|
|
@@ -36443,7 +36443,6 @@ var ParallClient = class _ParallClient {
|
|
|
36443
36443
|
async steerDispatch(orgId, req) {
|
|
36444
36444
|
return this.request("POST", ENDPOINTS.DISPATCH_STEER(orgId), req);
|
|
36445
36445
|
}
|
|
36446
|
-
/** End a turn: no_action sweep of the lane's members + lane release + re-drive check. */
|
|
36447
36446
|
async completeDispatch(orgId, req) {
|
|
36448
36447
|
return this.request("POST", ENDPOINTS.DISPATCH_COMPLETE(orgId), req);
|
|
36449
36448
|
}
|
|
@@ -36451,6 +36450,10 @@ var ParallClient = class _ParallClient {
|
|
|
36451
36450
|
* End a turn for a lane-less runtime: resolve the turn's folded WorkItems
|
|
36452
36451
|
* by source — broad-cover to the turn's reply Effect when one exists,
|
|
36453
36452
|
* no_action sweep otherwise. Idempotent.
|
|
36453
|
+
*
|
|
36454
|
+
* @deprecated Legacy ok-only alias — use {@link completeDispatch} with the
|
|
36455
|
+
* `sources` form, which also carries `turn_outcome`. The endpoint retires
|
|
36456
|
+
* at S3b (dispatch-convergence-design.md §3).
|
|
36454
36457
|
*/
|
|
36455
36458
|
async completeDispatchSources(orgId, req) {
|
|
36456
36459
|
return this.request("POST", ENDPOINTS.DISPATCH_COMPLETE_SOURCES(orgId), req);
|