@parall/daemon 1.38.0 → 1.39.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.
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "1.38.0",
3
- "built_at": "2026-07-06T10:59:40.316Z",
2
+ "version": "1.39.0",
3
+ "built_at": "2026-07-08T06:56:38.067Z",
4
4
  "min_node_version": "20.0.0",
5
5
  "files": {
6
6
  "bb-browser-daemon.js": {
@@ -16,25 +16,25 @@
16
16
  "size": 18
17
17
  },
18
18
  "parall-browser-pod.js": {
19
- "sha256": "9426af841c2011c341e28e03a0176da146e6c30da88878cc2e70f3211512e7e8",
20
- "size": 1697014
19
+ "sha256": "8ee53a7d1f36fb5e5836f12d0d2952a5404701cd48d45b6e0efff0d22d2807c3",
20
+ "size": 1698250
21
21
  },
22
22
  "parall-claude-agent.js": {
23
- "sha256": "11436cabd17a19f2af8eb433a506efc6342efb76fbe25c8c882aea13220b5350",
24
- "size": 1616948
23
+ "sha256": "5b7b94ad606cefe88bc5a51be832bfd39b0037b230458d5d943b9e501d2666cb",
24
+ "size": 1618184
25
25
  },
26
26
  "parall-codex-agent.js": {
27
- "sha256": "5d28aecbd029c64cd1402f748e12ae6bdf502ab38a21b95bb546407469e4d826",
28
- "size": 1647758
27
+ "sha256": "a44fcdea43520167c5ca83d4c8fc295d8f179a1eb4b070d4adb209741b6928df",
28
+ "size": 1648994
29
29
  },
30
30
  "parall-daemon.js": {
31
- "sha256": "0470fa07cce7477c70c075eb939e9e14b6dab40cfa4a6f609974c68f28537923",
32
- "size": 1717086
31
+ "sha256": "7def6d2fe8827a5cbbff88798dcd4e71d3f10c876b7546216a3a621bce79f76a",
32
+ "size": 1718426
33
33
  },
34
34
  "parall-openclaw-agent.js": {
35
35
  "sha256": "505433b4bf3a4b8dbb7b96978d8693d6c48079f4513282ff1ee59a6d13b3eddf",
36
36
  "size": 9801
37
37
  }
38
38
  },
39
- "signature": "bfGTE2slDSlantJRoa8j9CEENod1u89vVzhn0aFI29c+V9Lj2IuXdage/Mu3vfr+kDUYCisH9DPqBD6o7X4kDA=="
39
+ "signature": "cnULsVTs+DpKRBsW+td5wD3CX/TCRCzSOsAL8qktWe3t9sZBvLWLwtFxmokmWVPlHQI4+YSkVt1FbKRiAhF/Cw=="
40
40
  }
@@ -35422,7 +35422,13 @@ var ENDPOINTS = {
35422
35422
  // the machine control-plane request/reply bridge that lives in api-server.
35423
35423
  BROWSER_PROFILE_VIEWER_COMMAND: (orgId, profileId) => `${API_BASE}/orgs/${orgId}/browser-profiles/${profileId}/viewer/command`,
35424
35424
  // Clip registry (global, served by clip-service → Pinix Hub proxy)
35425
- CLIP_REGISTRY: () => `${CLIP_BASE}/registry/clips`
35425
+ CLIP_REGISTRY: () => `${CLIP_BASE}/registry/clips`,
35426
+ // Edge device endpoints
35427
+ ORG_EDGE_DEVICES: (orgId) => `/api/v1/orgs/${orgId}/edge/devices`,
35428
+ ORG_EDGE_ONBOARDING: (orgId) => `/api/v1/orgs/${orgId}/edge/onboarding`,
35429
+ ORG_EDGE_PROFILES: (orgId, edgeId) => `/api/v1/orgs/${orgId}/edge/${edgeId}/profiles`,
35430
+ CLIP_CONNECTIONS: (orgId, clipId) => `/api/v1/orgs/${orgId}/clip-registry/${clipId}/connections`,
35431
+ CLIP_CONNECTION: (orgId, connId) => `/api/v1/orgs/${orgId}/clip-connections/${connId}`
35426
35432
  };
35427
35433
 
35428
35434
  // ts/sdk/dist/client.js
@@ -37167,6 +37173,26 @@ var ParallClient = class _ParallClient {
37167
37173
  const resp = await this.request("GET", url);
37168
37174
  return resp.data;
37169
37175
  }
37176
+ // ---- Edge devices ----
37177
+ async listEdgeDevices(orgId) {
37178
+ return this.request("GET", ENDPOINTS.ORG_EDGE_DEVICES(orgId));
37179
+ }
37180
+ async getEdgeOnboarding(orgId) {
37181
+ return this.request("GET", ENDPOINTS.ORG_EDGE_ONBOARDING(orgId));
37182
+ }
37183
+ async listEdgeProfiles(orgId, edgeId) {
37184
+ return this.request("GET", ENDPOINTS.ORG_EDGE_PROFILES(orgId, edgeId));
37185
+ }
37186
+ // ---- Clip connections ----
37187
+ async listClipConnections(orgId, clipId) {
37188
+ return this.request("GET", ENDPOINTS.CLIP_CONNECTIONS(orgId, clipId));
37189
+ }
37190
+ async createClipConnection(orgId, clipId, input) {
37191
+ return this.request("POST", ENDPOINTS.CLIP_CONNECTIONS(orgId, clipId), input);
37192
+ }
37193
+ async deleteClipConnection(orgId, connId) {
37194
+ return this.request("DELETE", ENDPOINTS.CLIP_CONNECTION(orgId, connId));
37195
+ }
37170
37196
  };
37171
37197
  function normalizeWikiChangeset(changeset) {
37172
37198
  return {
@@ -27457,7 +27457,13 @@ var ENDPOINTS = {
27457
27457
  // the machine control-plane request/reply bridge that lives in api-server.
27458
27458
  BROWSER_PROFILE_VIEWER_COMMAND: (orgId, profileId) => `${API_BASE}/orgs/${orgId}/browser-profiles/${profileId}/viewer/command`,
27459
27459
  // Clip registry (global, served by clip-service → Pinix Hub proxy)
27460
- CLIP_REGISTRY: () => `${CLIP_BASE}/registry/clips`
27460
+ CLIP_REGISTRY: () => `${CLIP_BASE}/registry/clips`,
27461
+ // Edge device endpoints
27462
+ ORG_EDGE_DEVICES: (orgId) => `/api/v1/orgs/${orgId}/edge/devices`,
27463
+ ORG_EDGE_ONBOARDING: (orgId) => `/api/v1/orgs/${orgId}/edge/onboarding`,
27464
+ ORG_EDGE_PROFILES: (orgId, edgeId) => `/api/v1/orgs/${orgId}/edge/${edgeId}/profiles`,
27465
+ CLIP_CONNECTIONS: (orgId, clipId) => `/api/v1/orgs/${orgId}/clip-registry/${clipId}/connections`,
27466
+ CLIP_CONNECTION: (orgId, connId) => `/api/v1/orgs/${orgId}/clip-connections/${connId}`
27461
27467
  };
27462
27468
  var WS_EVENTS = {
27463
27469
  // Client -> Server
@@ -29286,6 +29292,26 @@ var ParallClient = class _ParallClient {
29286
29292
  const resp = await this.request("GET", url);
29287
29293
  return resp.data;
29288
29294
  }
29295
+ // ---- Edge devices ----
29296
+ async listEdgeDevices(orgId) {
29297
+ return this.request("GET", ENDPOINTS.ORG_EDGE_DEVICES(orgId));
29298
+ }
29299
+ async getEdgeOnboarding(orgId) {
29300
+ return this.request("GET", ENDPOINTS.ORG_EDGE_ONBOARDING(orgId));
29301
+ }
29302
+ async listEdgeProfiles(orgId, edgeId) {
29303
+ return this.request("GET", ENDPOINTS.ORG_EDGE_PROFILES(orgId, edgeId));
29304
+ }
29305
+ // ---- Clip connections ----
29306
+ async listClipConnections(orgId, clipId) {
29307
+ return this.request("GET", ENDPOINTS.CLIP_CONNECTIONS(orgId, clipId));
29308
+ }
29309
+ async createClipConnection(orgId, clipId, input) {
29310
+ return this.request("POST", ENDPOINTS.CLIP_CONNECTIONS(orgId, clipId), input);
29311
+ }
29312
+ async deleteClipConnection(orgId, connId) {
29313
+ return this.request("DELETE", ENDPOINTS.CLIP_CONNECTION(orgId, connId));
29314
+ }
29289
29315
  };
29290
29316
  function normalizeWikiChangeset(changeset) {
29291
29317
  return {
@@ -27457,7 +27457,13 @@ var ENDPOINTS = {
27457
27457
  // the machine control-plane request/reply bridge that lives in api-server.
27458
27458
  BROWSER_PROFILE_VIEWER_COMMAND: (orgId, profileId) => `${API_BASE}/orgs/${orgId}/browser-profiles/${profileId}/viewer/command`,
27459
27459
  // Clip registry (global, served by clip-service → Pinix Hub proxy)
27460
- CLIP_REGISTRY: () => `${CLIP_BASE}/registry/clips`
27460
+ CLIP_REGISTRY: () => `${CLIP_BASE}/registry/clips`,
27461
+ // Edge device endpoints
27462
+ ORG_EDGE_DEVICES: (orgId) => `/api/v1/orgs/${orgId}/edge/devices`,
27463
+ ORG_EDGE_ONBOARDING: (orgId) => `/api/v1/orgs/${orgId}/edge/onboarding`,
27464
+ ORG_EDGE_PROFILES: (orgId, edgeId) => `/api/v1/orgs/${orgId}/edge/${edgeId}/profiles`,
27465
+ CLIP_CONNECTIONS: (orgId, clipId) => `/api/v1/orgs/${orgId}/clip-registry/${clipId}/connections`,
27466
+ CLIP_CONNECTION: (orgId, connId) => `/api/v1/orgs/${orgId}/clip-connections/${connId}`
27461
27467
  };
27462
27468
  var WS_EVENTS = {
27463
27469
  // Client -> Server
@@ -29286,6 +29292,26 @@ var ParallClient = class _ParallClient {
29286
29292
  const resp = await this.request("GET", url);
29287
29293
  return resp.data;
29288
29294
  }
29295
+ // ---- Edge devices ----
29296
+ async listEdgeDevices(orgId) {
29297
+ return this.request("GET", ENDPOINTS.ORG_EDGE_DEVICES(orgId));
29298
+ }
29299
+ async getEdgeOnboarding(orgId) {
29300
+ return this.request("GET", ENDPOINTS.ORG_EDGE_ONBOARDING(orgId));
29301
+ }
29302
+ async listEdgeProfiles(orgId, edgeId) {
29303
+ return this.request("GET", ENDPOINTS.ORG_EDGE_PROFILES(orgId, edgeId));
29304
+ }
29305
+ // ---- Clip connections ----
29306
+ async listClipConnections(orgId, clipId) {
29307
+ return this.request("GET", ENDPOINTS.CLIP_CONNECTIONS(orgId, clipId));
29308
+ }
29309
+ async createClipConnection(orgId, clipId, input) {
29310
+ return this.request("POST", ENDPOINTS.CLIP_CONNECTIONS(orgId, clipId), input);
29311
+ }
29312
+ async deleteClipConnection(orgId, connId) {
29313
+ return this.request("DELETE", ENDPOINTS.CLIP_CONNECTION(orgId, connId));
29314
+ }
29289
29315
  };
29290
29316
  function normalizeWikiChangeset(changeset) {
29291
29317
  return {
@@ -523,7 +523,13 @@ var init_constants = __esm({
523
523
  // the machine control-plane request/reply bridge that lives in api-server.
524
524
  BROWSER_PROFILE_VIEWER_COMMAND: (orgId, profileId) => `${API_BASE}/orgs/${orgId}/browser-profiles/${profileId}/viewer/command`,
525
525
  // Clip registry (global, served by clip-service → Pinix Hub proxy)
526
- CLIP_REGISTRY: () => `${CLIP_BASE}/registry/clips`
526
+ CLIP_REGISTRY: () => `${CLIP_BASE}/registry/clips`,
527
+ // Edge device endpoints
528
+ ORG_EDGE_DEVICES: (orgId) => `/api/v1/orgs/${orgId}/edge/devices`,
529
+ ORG_EDGE_ONBOARDING: (orgId) => `/api/v1/orgs/${orgId}/edge/onboarding`,
530
+ ORG_EDGE_PROFILES: (orgId, edgeId) => `/api/v1/orgs/${orgId}/edge/${edgeId}/profiles`,
531
+ CLIP_CONNECTIONS: (orgId, clipId) => `/api/v1/orgs/${orgId}/clip-registry/${clipId}/connections`,
532
+ CLIP_CONNECTION: (orgId, connId) => `/api/v1/orgs/${orgId}/clip-connections/${connId}`
527
533
  };
528
534
  WS_EVENTS = {
529
535
  // Client -> Server
@@ -2393,6 +2399,26 @@ var init_client = __esm({
2393
2399
  const resp = await this.request("GET", url);
2394
2400
  return resp.data;
2395
2401
  }
2402
+ // ---- Edge devices ----
2403
+ async listEdgeDevices(orgId) {
2404
+ return this.request("GET", ENDPOINTS.ORG_EDGE_DEVICES(orgId));
2405
+ }
2406
+ async getEdgeOnboarding(orgId) {
2407
+ return this.request("GET", ENDPOINTS.ORG_EDGE_ONBOARDING(orgId));
2408
+ }
2409
+ async listEdgeProfiles(orgId, edgeId) {
2410
+ return this.request("GET", ENDPOINTS.ORG_EDGE_PROFILES(orgId, edgeId));
2411
+ }
2412
+ // ---- Clip connections ----
2413
+ async listClipConnections(orgId, clipId) {
2414
+ return this.request("GET", ENDPOINTS.CLIP_CONNECTIONS(orgId, clipId));
2415
+ }
2416
+ async createClipConnection(orgId, clipId, input) {
2417
+ return this.request("POST", ENDPOINTS.CLIP_CONNECTIONS(orgId, clipId), input);
2418
+ }
2419
+ async deleteClipConnection(orgId, connId) {
2420
+ return this.request("DELETE", ENDPOINTS.CLIP_CONNECTION(orgId, connId));
2421
+ }
2396
2422
  };
2397
2423
  ApiError = class extends Error {
2398
2424
  status;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parall/daemon",
3
- "version": "1.38.0",
3
+ "version": "1.39.0",
4
4
  "description": "Parall local agent runtime — daemon supervisor + bridge runtimes, bundled as standalone JS files",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -32,11 +32,11 @@
32
32
  "dependencies": {
33
33
  "@aws-sdk/client-s3": "3.984.0",
34
34
  "@pinixai/bb-browser-pro": "0.15.0",
35
- "@parall/agent-core": "1.38.0",
36
- "@parall/sdk": "1.38.0",
37
- "@parall/claude-agent": "1.38.0",
38
- "@parall/codex-agent": "1.38.0",
39
- "@parall/openclaw-agent": "1.38.0"
35
+ "@parall/agent-core": "1.39.0",
36
+ "@parall/claude-agent": "1.39.0",
37
+ "@parall/openclaw-agent": "1.39.0",
38
+ "@parall/codex-agent": "1.39.0",
39
+ "@parall/sdk": "1.39.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/node": "^22.0.0",