@parall/parall 1.41.0 → 1.42.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/dist/index.bundle.mjs +9 -0
- package/package.json +3 -3
package/dist/index.bundle.mjs
CHANGED
|
@@ -27412,6 +27412,7 @@ var ENDPOINTS = {
|
|
|
27412
27412
|
DISPATCH_CLAIM: (orgId) => `${API_BASE}/orgs/${orgId}/dispatch/claim`,
|
|
27413
27413
|
DISPATCH_STEER: (orgId) => `${API_BASE}/orgs/${orgId}/dispatch/steer`,
|
|
27414
27414
|
DISPATCH_COMPLETE: (orgId) => `${API_BASE}/orgs/${orgId}/dispatch/complete`,
|
|
27415
|
+
DISPATCH_COMPLETE_SOURCES: (orgId) => `${API_BASE}/orgs/${orgId}/dispatch/complete-sources`,
|
|
27415
27416
|
DISPATCH_RELEASE: (orgId) => `${API_BASE}/orgs/${orgId}/dispatch/release`,
|
|
27416
27417
|
DISPATCH_HEARTBEAT: (orgId) => `${API_BASE}/orgs/${orgId}/dispatch/heartbeat`,
|
|
27417
27418
|
// Unread
|
|
@@ -28585,6 +28586,14 @@ var ParallClient = class _ParallClient {
|
|
|
28585
28586
|
async completeDispatch(orgId, req) {
|
|
28586
28587
|
return this.request("POST", ENDPOINTS.DISPATCH_COMPLETE(orgId), req);
|
|
28587
28588
|
}
|
|
28589
|
+
/**
|
|
28590
|
+
* End a turn for a lane-less runtime: resolve the turn's folded WorkItems
|
|
28591
|
+
* by source — broad-cover to the turn's reply Effect when one exists,
|
|
28592
|
+
* no_action sweep otherwise. Idempotent.
|
|
28593
|
+
*/
|
|
28594
|
+
async completeDispatchSources(orgId, req) {
|
|
28595
|
+
return this.request("POST", ENDPOINTS.DISPATCH_COMPLETE_SOURCES(orgId), req);
|
|
28596
|
+
}
|
|
28588
28597
|
/** Release a lane on graceful shutdown — members return to pending immediately. */
|
|
28589
28598
|
async releaseDispatchLane(orgId, lane) {
|
|
28590
28599
|
return this.request("POST", ENDPOINTS.DISPATCH_RELEASE(orgId), { lane });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parall/parall",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.42.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/agent-core": "1.
|
|
20
|
-
"@parall/sdk": "1.
|
|
19
|
+
"@parall/agent-core": "1.42.0",
|
|
20
|
+
"@parall/sdk": "1.42.0"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/node": "^22.0.0",
|