@byok-sdk/server 0.4.0 → 0.4.1

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/README.md CHANGED
@@ -25,4 +25,4 @@ live device advertises `toolset-selection` and its `configuredToolsets`
25
25
  inventory contains every required ID. `machines.list()` projects that same
26
26
  logical-ID-only inventory; MCP commands and credentials remain device-local.
27
27
 
28
- MIT licensed. Node.js 22.19.0 or newer.
28
+ MIT licensed. Node.js 22.22.0 or newer.
package/dist/index.js CHANGED
@@ -489,7 +489,7 @@ function buildHonoApp(deps) {
489
489
  cursor = parsedCursor;
490
490
  }
491
491
  const result = await deps.hub.pollEvents(principal.deviceId, cursor, deps.longPollHoldMs);
492
- const response = result;
492
+ const response = { ...result, capabilities: [...CAPABILITY_FLAGS] };
493
493
  return c.json(response, 200);
494
494
  });
495
495
  app.post(BYOK_MESSAGES_PATH, async (c) => {