@parall/daemon 1.50.1 → 1.51.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 +26 -3
- package/bundle/parall-claude-agent.js +26 -3
- package/bundle/parall-codex-agent.js +26 -3
- package/bundle/parall-daemon.js +26 -3
- 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.51.0",
|
|
3
|
+
"built_at": "2026-07-31T08:44:12.249Z",
|
|
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": "3477bc46dd9589ae9d825561476d66682868e72f28742410772e5d3c338ec444",
|
|
20
|
+
"size": 2909774
|
|
21
21
|
},
|
|
22
22
|
"parall-channel-exec.js": {
|
|
23
23
|
"sha256": "7c2a6e12483a45e9eb4a42cd7d4cdd3c4fa21dd09ac1347d9a3e177b4ddee930",
|
|
24
24
|
"size": 7220
|
|
25
25
|
},
|
|
26
26
|
"parall-claude-agent.js": {
|
|
27
|
-
"sha256": "
|
|
28
|
-
"size":
|
|
27
|
+
"sha256": "6149ebdea186cc5de0cf5ec409e961c91846bc81285afb35dad0196ed1283f8c",
|
|
28
|
+
"size": 2738978
|
|
29
29
|
},
|
|
30
30
|
"parall-codex-agent.js": {
|
|
31
|
-
"sha256": "
|
|
32
|
-
"size":
|
|
31
|
+
"sha256": "dca73a7a445dab6be819f700f36676a9724165858d619eca93774b463db06738",
|
|
32
|
+
"size": 2780718
|
|
33
33
|
},
|
|
34
34
|
"parall-daemon.js": {
|
|
35
|
-
"sha256": "
|
|
36
|
-
"size":
|
|
35
|
+
"sha256": "519f67858bfb9ce09f0d8c76d3e7c0e5e7082f528f9a3a361a14581bb689e904",
|
|
36
|
+
"size": 2970452
|
|
37
37
|
},
|
|
38
38
|
"parall-openclaw-agent.js": {
|
|
39
39
|
"sha256": "856a1c3a9ae0ffef8efe2481fa1171dbeb1d67cccb88616aa9bf16da96a69355",
|
|
40
40
|
"size": 9923
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
|
-
"signature": "
|
|
43
|
+
"signature": "dHFmMEI+U+2KrQRTHUsEjaN6eQoqTZ9R5ObammDEo8/UXAdfq9jKx9QpoMmYpme62i8wDHgy5XIeV2qiT+V0Dg=="
|
|
44
44
|
}
|
|
@@ -63834,6 +63834,9 @@ var ENDPOINTS = {
|
|
|
63834
63834
|
TEMPLATE: (orgId, templateId) => `${API_BASE}/orgs/${orgId}/templates/${templateId}`,
|
|
63835
63835
|
TEMPLATE_DEPLOYMENTS: (orgId) => `${API_BASE}/orgs/${orgId}/template-deployments`,
|
|
63836
63836
|
TEMPLATE_DEPLOYMENT: (orgId, deploymentId) => `${API_BASE}/orgs/${orgId}/template-deployments/${deploymentId}`,
|
|
63837
|
+
CLIP_DEPENDENCIES_CHECK: (orgId) => `${API_BASE}/orgs/${orgId}/clip-dependencies/check`,
|
|
63838
|
+
// Onboarding wizard progress (org-scoped, self)
|
|
63839
|
+
ONBOARDING_PROGRESS: (orgId) => `${API_BASE}/orgs/${orgId}/onboarding`,
|
|
63837
63840
|
// Billing & Credits (org-scoped)
|
|
63838
63841
|
BILLING: (orgId) => `${API_BASE}/orgs/${orgId}/billing`,
|
|
63839
63842
|
BILLING_TRANSACTIONS: (orgId) => `${API_BASE}/orgs/${orgId}/billing/transactions`,
|
|
@@ -64302,8 +64305,10 @@ var ParallClient = class _ParallClient {
|
|
|
64302
64305
|
q2.limit = String(params.limit);
|
|
64303
64306
|
return this.request("GET", ENDPOINTS.ORG_MEMBER_CHATS(orgId, memberId), void 0, q2);
|
|
64304
64307
|
}
|
|
64305
|
-
// Pending tasks (todo + in_progress) assigned to a member.
|
|
64306
|
-
// member profile Activity
|
|
64308
|
+
// Pending tasks (todo + in_progress) assigned to a member. On-demand listing
|
|
64309
|
+
// (member profile Activity; agents via `parall tasks`) — startup catch-up
|
|
64310
|
+
// runs on dispatch redrive, not this endpoint. Self-assigned tasks appear
|
|
64311
|
+
// here without any dispatch WorkItem (self-assign is deliberately silent).
|
|
64307
64312
|
async getMemberTasks(orgId, memberId, params) {
|
|
64308
64313
|
const q2 = {};
|
|
64309
64314
|
if (params?.cursor)
|
|
@@ -64645,7 +64650,12 @@ var ParallClient = class _ParallClient {
|
|
|
64645
64650
|
async getAgentRuntimeRelease(orgId, agentId, tag2) {
|
|
64646
64651
|
return this.request("GET", ENDPOINTS.AGENT_RUNTIME_RELEASE(orgId, agentId, tag2));
|
|
64647
64652
|
}
|
|
64648
|
-
/**
|
|
64653
|
+
/**
|
|
64654
|
+
* Fetch all pending tasks (todo/in_progress) assigned to an agent. Pages
|
|
64655
|
+
* automatically. On-demand listing only — not a dispatch source: startup
|
|
64656
|
+
* catch-up runs on dispatch redrive, and self-assigned tasks listed here
|
|
64657
|
+
* deliberately have no WorkItem behind them.
|
|
64658
|
+
*/
|
|
64649
64659
|
async getAgentTasks(orgId, agentId) {
|
|
64650
64660
|
const all = [];
|
|
64651
64661
|
let cursor2;
|
|
@@ -65647,6 +65657,19 @@ var ParallClient = class _ParallClient {
|
|
|
65647
65657
|
async getTemplateDeployment(orgId, deploymentId) {
|
|
65648
65658
|
return this.request("GET", ENDPOINTS.TEMPLATE_DEPLOYMENT(orgId, deploymentId));
|
|
65649
65659
|
}
|
|
65660
|
+
/** Pre-deploy dependency connection state (wizard S3). Live answer, no
|
|
65661
|
+
* cache — poll it the way getTemplateDeployment is polled. */
|
|
65662
|
+
async checkClipDependencies(orgId, refs) {
|
|
65663
|
+
const response = await this.request("POST", ENDPOINTS.CLIP_DEPENDENCIES_CHECK(orgId), { refs });
|
|
65664
|
+
return response.results ?? [];
|
|
65665
|
+
}
|
|
65666
|
+
// ---- Onboarding wizard progress (org-scoped, self) ----
|
|
65667
|
+
async getOnboardingProgress(orgId) {
|
|
65668
|
+
return this.request("GET", ENDPOINTS.ONBOARDING_PROGRESS(orgId));
|
|
65669
|
+
}
|
|
65670
|
+
async updateOnboardingProgress(orgId, request) {
|
|
65671
|
+
return this.request("PATCH", ENDPOINTS.ONBOARDING_PROGRESS(orgId), request);
|
|
65672
|
+
}
|
|
65650
65673
|
// ---- Billing & Credits (org-scoped) ----
|
|
65651
65674
|
async getBilling(orgId) {
|
|
65652
65675
|
return this.request("GET", ENDPOINTS.BILLING(orgId));
|
|
@@ -51630,6 +51630,9 @@ var ENDPOINTS = {
|
|
|
51630
51630
|
TEMPLATE: (orgId, templateId) => `${API_BASE}/orgs/${orgId}/templates/${templateId}`,
|
|
51631
51631
|
TEMPLATE_DEPLOYMENTS: (orgId) => `${API_BASE}/orgs/${orgId}/template-deployments`,
|
|
51632
51632
|
TEMPLATE_DEPLOYMENT: (orgId, deploymentId) => `${API_BASE}/orgs/${orgId}/template-deployments/${deploymentId}`,
|
|
51633
|
+
CLIP_DEPENDENCIES_CHECK: (orgId) => `${API_BASE}/orgs/${orgId}/clip-dependencies/check`,
|
|
51634
|
+
// Onboarding wizard progress (org-scoped, self)
|
|
51635
|
+
ONBOARDING_PROGRESS: (orgId) => `${API_BASE}/orgs/${orgId}/onboarding`,
|
|
51633
51636
|
// Billing & Credits (org-scoped)
|
|
51634
51637
|
BILLING: (orgId) => `${API_BASE}/orgs/${orgId}/billing`,
|
|
51635
51638
|
BILLING_TRANSACTIONS: (orgId) => `${API_BASE}/orgs/${orgId}/billing/transactions`,
|
|
@@ -52184,8 +52187,10 @@ var ParallClient = class _ParallClient {
|
|
|
52184
52187
|
q.limit = String(params.limit);
|
|
52185
52188
|
return this.request("GET", ENDPOINTS.ORG_MEMBER_CHATS(orgId, memberId), void 0, q);
|
|
52186
52189
|
}
|
|
52187
|
-
// Pending tasks (todo + in_progress) assigned to a member.
|
|
52188
|
-
// member profile Activity
|
|
52190
|
+
// Pending tasks (todo + in_progress) assigned to a member. On-demand listing
|
|
52191
|
+
// (member profile Activity; agents via `parall tasks`) — startup catch-up
|
|
52192
|
+
// runs on dispatch redrive, not this endpoint. Self-assigned tasks appear
|
|
52193
|
+
// here without any dispatch WorkItem (self-assign is deliberately silent).
|
|
52189
52194
|
async getMemberTasks(orgId, memberId, params) {
|
|
52190
52195
|
const q = {};
|
|
52191
52196
|
if (params?.cursor)
|
|
@@ -52527,7 +52532,12 @@ var ParallClient = class _ParallClient {
|
|
|
52527
52532
|
async getAgentRuntimeRelease(orgId, agentId, tag) {
|
|
52528
52533
|
return this.request("GET", ENDPOINTS.AGENT_RUNTIME_RELEASE(orgId, agentId, tag));
|
|
52529
52534
|
}
|
|
52530
|
-
/**
|
|
52535
|
+
/**
|
|
52536
|
+
* Fetch all pending tasks (todo/in_progress) assigned to an agent. Pages
|
|
52537
|
+
* automatically. On-demand listing only — not a dispatch source: startup
|
|
52538
|
+
* catch-up runs on dispatch redrive, and self-assigned tasks listed here
|
|
52539
|
+
* deliberately have no WorkItem behind them.
|
|
52540
|
+
*/
|
|
52531
52541
|
async getAgentTasks(orgId, agentId) {
|
|
52532
52542
|
const all = [];
|
|
52533
52543
|
let cursor;
|
|
@@ -53529,6 +53539,19 @@ var ParallClient = class _ParallClient {
|
|
|
53529
53539
|
async getTemplateDeployment(orgId, deploymentId) {
|
|
53530
53540
|
return this.request("GET", ENDPOINTS.TEMPLATE_DEPLOYMENT(orgId, deploymentId));
|
|
53531
53541
|
}
|
|
53542
|
+
/** Pre-deploy dependency connection state (wizard S3). Live answer, no
|
|
53543
|
+
* cache — poll it the way getTemplateDeployment is polled. */
|
|
53544
|
+
async checkClipDependencies(orgId, refs) {
|
|
53545
|
+
const response = await this.request("POST", ENDPOINTS.CLIP_DEPENDENCIES_CHECK(orgId), { refs });
|
|
53546
|
+
return response.results ?? [];
|
|
53547
|
+
}
|
|
53548
|
+
// ---- Onboarding wizard progress (org-scoped, self) ----
|
|
53549
|
+
async getOnboardingProgress(orgId) {
|
|
53550
|
+
return this.request("GET", ENDPOINTS.ONBOARDING_PROGRESS(orgId));
|
|
53551
|
+
}
|
|
53552
|
+
async updateOnboardingProgress(orgId, request3) {
|
|
53553
|
+
return this.request("PATCH", ENDPOINTS.ONBOARDING_PROGRESS(orgId), request3);
|
|
53554
|
+
}
|
|
53532
53555
|
// ---- Billing & Credits (org-scoped) ----
|
|
53533
53556
|
async getBilling(orgId) {
|
|
53534
53557
|
return this.request("GET", ENDPOINTS.BILLING(orgId));
|
|
@@ -51630,6 +51630,9 @@ var ENDPOINTS = {
|
|
|
51630
51630
|
TEMPLATE: (orgId, templateId) => `${API_BASE}/orgs/${orgId}/templates/${templateId}`,
|
|
51631
51631
|
TEMPLATE_DEPLOYMENTS: (orgId) => `${API_BASE}/orgs/${orgId}/template-deployments`,
|
|
51632
51632
|
TEMPLATE_DEPLOYMENT: (orgId, deploymentId) => `${API_BASE}/orgs/${orgId}/template-deployments/${deploymentId}`,
|
|
51633
|
+
CLIP_DEPENDENCIES_CHECK: (orgId) => `${API_BASE}/orgs/${orgId}/clip-dependencies/check`,
|
|
51634
|
+
// Onboarding wizard progress (org-scoped, self)
|
|
51635
|
+
ONBOARDING_PROGRESS: (orgId) => `${API_BASE}/orgs/${orgId}/onboarding`,
|
|
51633
51636
|
// Billing & Credits (org-scoped)
|
|
51634
51637
|
BILLING: (orgId) => `${API_BASE}/orgs/${orgId}/billing`,
|
|
51635
51638
|
BILLING_TRANSACTIONS: (orgId) => `${API_BASE}/orgs/${orgId}/billing/transactions`,
|
|
@@ -52184,8 +52187,10 @@ var ParallClient = class _ParallClient {
|
|
|
52184
52187
|
q.limit = String(params.limit);
|
|
52185
52188
|
return this.request("GET", ENDPOINTS.ORG_MEMBER_CHATS(orgId, memberId), void 0, q);
|
|
52186
52189
|
}
|
|
52187
|
-
// Pending tasks (todo + in_progress) assigned to a member.
|
|
52188
|
-
// member profile Activity
|
|
52190
|
+
// Pending tasks (todo + in_progress) assigned to a member. On-demand listing
|
|
52191
|
+
// (member profile Activity; agents via `parall tasks`) — startup catch-up
|
|
52192
|
+
// runs on dispatch redrive, not this endpoint. Self-assigned tasks appear
|
|
52193
|
+
// here without any dispatch WorkItem (self-assign is deliberately silent).
|
|
52189
52194
|
async getMemberTasks(orgId, memberId, params) {
|
|
52190
52195
|
const q = {};
|
|
52191
52196
|
if (params?.cursor)
|
|
@@ -52527,7 +52532,12 @@ var ParallClient = class _ParallClient {
|
|
|
52527
52532
|
async getAgentRuntimeRelease(orgId, agentId, tag) {
|
|
52528
52533
|
return this.request("GET", ENDPOINTS.AGENT_RUNTIME_RELEASE(orgId, agentId, tag));
|
|
52529
52534
|
}
|
|
52530
|
-
/**
|
|
52535
|
+
/**
|
|
52536
|
+
* Fetch all pending tasks (todo/in_progress) assigned to an agent. Pages
|
|
52537
|
+
* automatically. On-demand listing only — not a dispatch source: startup
|
|
52538
|
+
* catch-up runs on dispatch redrive, and self-assigned tasks listed here
|
|
52539
|
+
* deliberately have no WorkItem behind them.
|
|
52540
|
+
*/
|
|
52531
52541
|
async getAgentTasks(orgId, agentId) {
|
|
52532
52542
|
const all = [];
|
|
52533
52543
|
let cursor;
|
|
@@ -53529,6 +53539,19 @@ var ParallClient = class _ParallClient {
|
|
|
53529
53539
|
async getTemplateDeployment(orgId, deploymentId) {
|
|
53530
53540
|
return this.request("GET", ENDPOINTS.TEMPLATE_DEPLOYMENT(orgId, deploymentId));
|
|
53531
53541
|
}
|
|
53542
|
+
/** Pre-deploy dependency connection state (wizard S3). Live answer, no
|
|
53543
|
+
* cache — poll it the way getTemplateDeployment is polled. */
|
|
53544
|
+
async checkClipDependencies(orgId, refs) {
|
|
53545
|
+
const response = await this.request("POST", ENDPOINTS.CLIP_DEPENDENCIES_CHECK(orgId), { refs });
|
|
53546
|
+
return response.results ?? [];
|
|
53547
|
+
}
|
|
53548
|
+
// ---- Onboarding wizard progress (org-scoped, self) ----
|
|
53549
|
+
async getOnboardingProgress(orgId) {
|
|
53550
|
+
return this.request("GET", ENDPOINTS.ONBOARDING_PROGRESS(orgId));
|
|
53551
|
+
}
|
|
53552
|
+
async updateOnboardingProgress(orgId, request3) {
|
|
53553
|
+
return this.request("PATCH", ENDPOINTS.ONBOARDING_PROGRESS(orgId), request3);
|
|
53554
|
+
}
|
|
53532
53555
|
// ---- Billing & Credits (org-scoped) ----
|
|
53533
53556
|
async getBilling(orgId) {
|
|
53534
53557
|
return this.request("GET", ENDPOINTS.BILLING(orgId));
|
package/bundle/parall-daemon.js
CHANGED
|
@@ -472,6 +472,9 @@ var init_constants = __esm({
|
|
|
472
472
|
TEMPLATE: (orgId, templateId) => `${API_BASE}/orgs/${orgId}/templates/${templateId}`,
|
|
473
473
|
TEMPLATE_DEPLOYMENTS: (orgId) => `${API_BASE}/orgs/${orgId}/template-deployments`,
|
|
474
474
|
TEMPLATE_DEPLOYMENT: (orgId, deploymentId) => `${API_BASE}/orgs/${orgId}/template-deployments/${deploymentId}`,
|
|
475
|
+
CLIP_DEPENDENCIES_CHECK: (orgId) => `${API_BASE}/orgs/${orgId}/clip-dependencies/check`,
|
|
476
|
+
// Onboarding wizard progress (org-scoped, self)
|
|
477
|
+
ONBOARDING_PROGRESS: (orgId) => `${API_BASE}/orgs/${orgId}/onboarding`,
|
|
475
478
|
// Billing & Credits (org-scoped)
|
|
476
479
|
BILLING: (orgId) => `${API_BASE}/orgs/${orgId}/billing`,
|
|
477
480
|
BILLING_TRANSACTIONS: (orgId) => `${API_BASE}/orgs/${orgId}/billing/transactions`,
|
|
@@ -1071,8 +1074,10 @@ var init_client = __esm({
|
|
|
1071
1074
|
q.limit = String(params.limit);
|
|
1072
1075
|
return this.request("GET", ENDPOINTS.ORG_MEMBER_CHATS(orgId, memberId), void 0, q);
|
|
1073
1076
|
}
|
|
1074
|
-
// Pending tasks (todo + in_progress) assigned to a member.
|
|
1075
|
-
// member profile Activity
|
|
1077
|
+
// Pending tasks (todo + in_progress) assigned to a member. On-demand listing
|
|
1078
|
+
// (member profile Activity; agents via `parall tasks`) — startup catch-up
|
|
1079
|
+
// runs on dispatch redrive, not this endpoint. Self-assigned tasks appear
|
|
1080
|
+
// here without any dispatch WorkItem (self-assign is deliberately silent).
|
|
1076
1081
|
async getMemberTasks(orgId, memberId, params) {
|
|
1077
1082
|
const q = {};
|
|
1078
1083
|
if (params?.cursor)
|
|
@@ -1414,7 +1419,12 @@ var init_client = __esm({
|
|
|
1414
1419
|
async getAgentRuntimeRelease(orgId, agentId, tag) {
|
|
1415
1420
|
return this.request("GET", ENDPOINTS.AGENT_RUNTIME_RELEASE(orgId, agentId, tag));
|
|
1416
1421
|
}
|
|
1417
|
-
/**
|
|
1422
|
+
/**
|
|
1423
|
+
* Fetch all pending tasks (todo/in_progress) assigned to an agent. Pages
|
|
1424
|
+
* automatically. On-demand listing only — not a dispatch source: startup
|
|
1425
|
+
* catch-up runs on dispatch redrive, and self-assigned tasks listed here
|
|
1426
|
+
* deliberately have no WorkItem behind them.
|
|
1427
|
+
*/
|
|
1418
1428
|
async getAgentTasks(orgId, agentId) {
|
|
1419
1429
|
const all = [];
|
|
1420
1430
|
let cursor;
|
|
@@ -2416,6 +2426,19 @@ var init_client = __esm({
|
|
|
2416
2426
|
async getTemplateDeployment(orgId, deploymentId) {
|
|
2417
2427
|
return this.request("GET", ENDPOINTS.TEMPLATE_DEPLOYMENT(orgId, deploymentId));
|
|
2418
2428
|
}
|
|
2429
|
+
/** Pre-deploy dependency connection state (wizard S3). Live answer, no
|
|
2430
|
+
* cache — poll it the way getTemplateDeployment is polled. */
|
|
2431
|
+
async checkClipDependencies(orgId, refs) {
|
|
2432
|
+
const response = await this.request("POST", ENDPOINTS.CLIP_DEPENDENCIES_CHECK(orgId), { refs });
|
|
2433
|
+
return response.results ?? [];
|
|
2434
|
+
}
|
|
2435
|
+
// ---- Onboarding wizard progress (org-scoped, self) ----
|
|
2436
|
+
async getOnboardingProgress(orgId) {
|
|
2437
|
+
return this.request("GET", ENDPOINTS.ONBOARDING_PROGRESS(orgId));
|
|
2438
|
+
}
|
|
2439
|
+
async updateOnboardingProgress(orgId, request3) {
|
|
2440
|
+
return this.request("PATCH", ENDPOINTS.ONBOARDING_PROGRESS(orgId), request3);
|
|
2441
|
+
}
|
|
2419
2442
|
// ---- Billing & Credits (org-scoped) ----
|
|
2420
2443
|
async getBilling(orgId) {
|
|
2421
2444
|
return this.request("GET", ENDPOINTS.BILLING(orgId));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parall/daemon",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.51.0",
|
|
4
4
|
"description": "Parall local agent runtime — daemon supervisor + bridge runtimes, bundled as standalone JS files",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"@aws-sdk/client-s3": "3.984.0",
|
|
34
34
|
"@pinixai/bb-browser-pro": "0.15.0",
|
|
35
35
|
"ws": "^8.18.0",
|
|
36
|
-
"@parall/
|
|
37
|
-
"@parall/
|
|
38
|
-
"@parall/
|
|
39
|
-
"@parall/
|
|
40
|
-
"@parall/
|
|
36
|
+
"@parall/sdk": "1.51.0",
|
|
37
|
+
"@parall/claude-agent": "1.51.0",
|
|
38
|
+
"@parall/agent-core": "1.51.0",
|
|
39
|
+
"@parall/codex-agent": "1.51.0",
|
|
40
|
+
"@parall/openclaw-agent": "1.51.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/node": "^22.0.0",
|