crewly 1.4.75 → 1.4.76

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.
@@ -63,7 +63,7 @@ export declare function sendRelayMessage(req: Request, res: Response, next: Next
63
63
  * GET /relay/cloud-devices
64
64
  *
65
65
  * Proxy endpoint that fetches the authenticated user's device list
66
- * from CrewlyAI Cloud (/api/v1/relay/devices). Used by the Settings
66
+ * from CrewlyAI Cloud (/api/v1/sync/devices). Used by the Settings
67
67
  * Cloud tab to display device discovery information.
68
68
  *
69
69
  * @param req - Express request (no params required)
@@ -187,7 +187,7 @@ export async function sendRelayMessage(req, res, next) {
187
187
  * GET /relay/cloud-devices
188
188
  *
189
189
  * Proxy endpoint that fetches the authenticated user's device list
190
- * from CrewlyAI Cloud (/api/v1/relay/devices). Used by the Settings
190
+ * from CrewlyAI Cloud (/api/v1/sync/devices). Used by the Settings
191
191
  * Cloud tab to display device discovery information.
192
192
  *
193
193
  * @param req - Express request (no params required)
@@ -247,7 +247,7 @@ export declare class CloudClientService {
247
247
  /**
248
248
  * Fetch the list of devices registered to this user from Cloud.
249
249
  *
250
- * Proxies GET /api/v1/relay/devices on crewlyai.com and returns
250
+ * Proxies GET /api/v1/sync/devices on crewlyai.com and returns
251
251
  * the device list for the authenticated user.
252
252
  *
253
253
  * @returns Array of cloud relay devices
@@ -365,7 +365,7 @@ export class CloudClientService {
365
365
  /**
366
366
  * Fetch the list of devices registered to this user from Cloud.
367
367
  *
368
- * Proxies GET /api/v1/relay/devices on crewlyai.com and returns
368
+ * Proxies GET /api/v1/sync/devices on crewlyai.com and returns
369
369
  * the device list for the authenticated user.
370
370
  *
371
371
  * @returns Array of cloud relay devices
@@ -50,7 +50,7 @@ export interface SyncTeamSummary {
50
50
  }
51
51
  /**
52
52
  * A device visible in the same Cloud account.
53
- * Populated by polling GET /api/v1/relay/devices.
53
+ * Populated by polling GET /api/v1/sync/devices.
54
54
  */
55
55
  export interface SyncDevice {
56
56
  /** Unique device identifier (UUID) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crewly",
3
- "version": "1.4.75",
3
+ "version": "1.4.76",
4
4
  "type": "module",
5
5
  "description": "Multi-agent orchestration platform for AI coding teams — coordinates Claude Code, Gemini CLI, and Codex agents with a real-time web dashboard",
6
6
  "main": "dist/cli/cli/src/index.js",