@parall/parall 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.
@@ -27373,7 +27373,13 @@ var ENDPOINTS = {
27373
27373
  // the machine control-plane request/reply bridge that lives in api-server.
27374
27374
  BROWSER_PROFILE_VIEWER_COMMAND: (orgId, profileId) => `${API_BASE}/orgs/${orgId}/browser-profiles/${profileId}/viewer/command`,
27375
27375
  // Clip registry (global, served by clip-service → Pinix Hub proxy)
27376
- CLIP_REGISTRY: () => `${CLIP_BASE}/registry/clips`
27376
+ CLIP_REGISTRY: () => `${CLIP_BASE}/registry/clips`,
27377
+ // Edge device endpoints
27378
+ ORG_EDGE_DEVICES: (orgId) => `/api/v1/orgs/${orgId}/edge/devices`,
27379
+ ORG_EDGE_ONBOARDING: (orgId) => `/api/v1/orgs/${orgId}/edge/onboarding`,
27380
+ ORG_EDGE_PROFILES: (orgId, edgeId) => `/api/v1/orgs/${orgId}/edge/${edgeId}/profiles`,
27381
+ CLIP_CONNECTIONS: (orgId, clipId) => `/api/v1/orgs/${orgId}/clip-registry/${clipId}/connections`,
27382
+ CLIP_CONNECTION: (orgId, connId) => `/api/v1/orgs/${orgId}/clip-connections/${connId}`
27377
27383
  };
27378
27384
  var WS_EVENTS = {
27379
27385
  // Client -> Server
@@ -29202,6 +29208,26 @@ var ParallClient = class _ParallClient {
29202
29208
  const resp = await this.request("GET", url);
29203
29209
  return resp.data;
29204
29210
  }
29211
+ // ---- Edge devices ----
29212
+ async listEdgeDevices(orgId) {
29213
+ return this.request("GET", ENDPOINTS.ORG_EDGE_DEVICES(orgId));
29214
+ }
29215
+ async getEdgeOnboarding(orgId) {
29216
+ return this.request("GET", ENDPOINTS.ORG_EDGE_ONBOARDING(orgId));
29217
+ }
29218
+ async listEdgeProfiles(orgId, edgeId) {
29219
+ return this.request("GET", ENDPOINTS.ORG_EDGE_PROFILES(orgId, edgeId));
29220
+ }
29221
+ // ---- Clip connections ----
29222
+ async listClipConnections(orgId, clipId) {
29223
+ return this.request("GET", ENDPOINTS.CLIP_CONNECTIONS(orgId, clipId));
29224
+ }
29225
+ async createClipConnection(orgId, clipId, input) {
29226
+ return this.request("POST", ENDPOINTS.CLIP_CONNECTIONS(orgId, clipId), input);
29227
+ }
29228
+ async deleteClipConnection(orgId, connId) {
29229
+ return this.request("DELETE", ENDPOINTS.CLIP_CONNECTION(orgId, connId));
29230
+ }
29205
29231
  };
29206
29232
  function normalizeWikiChangeset(changeset) {
29207
29233
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parall/parall",
3
- "version": "1.38.0",
3
+ "version": "1.39.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/sdk": "1.38.0",
20
- "@parall/agent-core": "1.38.0"
19
+ "@parall/sdk": "1.39.0",
20
+ "@parall/agent-core": "1.39.0"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/node": "^22.0.0",