@parall/parall 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/dist/index.bundle.mjs +26 -3
- package/package.json +3 -3
package/dist/index.bundle.mjs
CHANGED
|
@@ -51628,6 +51628,9 @@ var ENDPOINTS = {
|
|
|
51628
51628
|
TEMPLATE: (orgId, templateId) => `${API_BASE}/orgs/${orgId}/templates/${templateId}`,
|
|
51629
51629
|
TEMPLATE_DEPLOYMENTS: (orgId) => `${API_BASE}/orgs/${orgId}/template-deployments`,
|
|
51630
51630
|
TEMPLATE_DEPLOYMENT: (orgId, deploymentId) => `${API_BASE}/orgs/${orgId}/template-deployments/${deploymentId}`,
|
|
51631
|
+
CLIP_DEPENDENCIES_CHECK: (orgId) => `${API_BASE}/orgs/${orgId}/clip-dependencies/check`,
|
|
51632
|
+
// Onboarding wizard progress (org-scoped, self)
|
|
51633
|
+
ONBOARDING_PROGRESS: (orgId) => `${API_BASE}/orgs/${orgId}/onboarding`,
|
|
51631
51634
|
// Billing & Credits (org-scoped)
|
|
51632
51635
|
BILLING: (orgId) => `${API_BASE}/orgs/${orgId}/billing`,
|
|
51633
51636
|
BILLING_TRANSACTIONS: (orgId) => `${API_BASE}/orgs/${orgId}/billing/transactions`,
|
|
@@ -52182,8 +52185,10 @@ var ParallClient = class _ParallClient {
|
|
|
52182
52185
|
q.limit = String(params.limit);
|
|
52183
52186
|
return this.request("GET", ENDPOINTS.ORG_MEMBER_CHATS(orgId, memberId), void 0, q);
|
|
52184
52187
|
}
|
|
52185
|
-
// Pending tasks (todo + in_progress) assigned to a member.
|
|
52186
|
-
// member profile Activity
|
|
52188
|
+
// Pending tasks (todo + in_progress) assigned to a member. On-demand listing
|
|
52189
|
+
// (member profile Activity; agents via `parall tasks`) — startup catch-up
|
|
52190
|
+
// runs on dispatch redrive, not this endpoint. Self-assigned tasks appear
|
|
52191
|
+
// here without any dispatch WorkItem (self-assign is deliberately silent).
|
|
52187
52192
|
async getMemberTasks(orgId, memberId, params) {
|
|
52188
52193
|
const q = {};
|
|
52189
52194
|
if (params?.cursor)
|
|
@@ -52525,7 +52530,12 @@ var ParallClient = class _ParallClient {
|
|
|
52525
52530
|
async getAgentRuntimeRelease(orgId, agentId, tag) {
|
|
52526
52531
|
return this.request("GET", ENDPOINTS.AGENT_RUNTIME_RELEASE(orgId, agentId, tag));
|
|
52527
52532
|
}
|
|
52528
|
-
/**
|
|
52533
|
+
/**
|
|
52534
|
+
* Fetch all pending tasks (todo/in_progress) assigned to an agent. Pages
|
|
52535
|
+
* automatically. On-demand listing only — not a dispatch source: startup
|
|
52536
|
+
* catch-up runs on dispatch redrive, and self-assigned tasks listed here
|
|
52537
|
+
* deliberately have no WorkItem behind them.
|
|
52538
|
+
*/
|
|
52529
52539
|
async getAgentTasks(orgId, agentId) {
|
|
52530
52540
|
const all = [];
|
|
52531
52541
|
let cursor;
|
|
@@ -53527,6 +53537,19 @@ var ParallClient = class _ParallClient {
|
|
|
53527
53537
|
async getTemplateDeployment(orgId, deploymentId) {
|
|
53528
53538
|
return this.request("GET", ENDPOINTS.TEMPLATE_DEPLOYMENT(orgId, deploymentId));
|
|
53529
53539
|
}
|
|
53540
|
+
/** Pre-deploy dependency connection state (wizard S3). Live answer, no
|
|
53541
|
+
* cache — poll it the way getTemplateDeployment is polled. */
|
|
53542
|
+
async checkClipDependencies(orgId, refs) {
|
|
53543
|
+
const response = await this.request("POST", ENDPOINTS.CLIP_DEPENDENCIES_CHECK(orgId), { refs });
|
|
53544
|
+
return response.results ?? [];
|
|
53545
|
+
}
|
|
53546
|
+
// ---- Onboarding wizard progress (org-scoped, self) ----
|
|
53547
|
+
async getOnboardingProgress(orgId) {
|
|
53548
|
+
return this.request("GET", ENDPOINTS.ONBOARDING_PROGRESS(orgId));
|
|
53549
|
+
}
|
|
53550
|
+
async updateOnboardingProgress(orgId, request3) {
|
|
53551
|
+
return this.request("PATCH", ENDPOINTS.ONBOARDING_PROGRESS(orgId), request3);
|
|
53552
|
+
}
|
|
53530
53553
|
// ---- Billing & Credits (org-scoped) ----
|
|
53531
53554
|
async getBilling(orgId) {
|
|
53532
53555
|
return this.request("GET", ENDPOINTS.BILLING(orgId));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parall/parall",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.51.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.51.0",
|
|
20
|
+
"@parall/sdk": "1.51.0"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/node": "^22.0.0",
|