@parall/parall 1.40.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 +11 -3
- 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
|
|
@@ -28205,9 +28206,8 @@ var ParallClient = class _ParallClient {
|
|
|
28205
28206
|
* Wipe a managed agent's entity state — sandbox filesystem, AGENT.md,
|
|
28206
28207
|
* long-term memory — while keeping the conversation line and channel
|
|
28207
28208
|
* binding. The destructive counterpart of New Session under the
|
|
28208
|
-
* conversation/entity split (managed/parel agents only; 409
|
|
28209
|
-
* for
|
|
28210
|
-
* multi-org memberships).
|
|
28209
|
+
* conversation/entity split (managed/parel agents only; 409 SHARED_AGENT
|
|
28210
|
+
* for multi-org memberships).
|
|
28211
28211
|
*/
|
|
28212
28212
|
async deepResetAgent(orgId, agentId) {
|
|
28213
28213
|
return this.request("POST", ENDPOINTS.AGENT_DEEP_RESET(orgId, agentId));
|
|
@@ -28586,6 +28586,14 @@ var ParallClient = class _ParallClient {
|
|
|
28586
28586
|
async completeDispatch(orgId, req) {
|
|
28587
28587
|
return this.request("POST", ENDPOINTS.DISPATCH_COMPLETE(orgId), req);
|
|
28588
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
|
+
}
|
|
28589
28597
|
/** Release a lane on graceful shutdown — members return to pending immediately. */
|
|
28590
28598
|
async releaseDispatchLane(orgId, lane) {
|
|
28591
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",
|