@openlap/openlap 1.1.6 → 1.1.7

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.
Files changed (2) hide show
  1. package/dist/proxy.js +2 -1
  2. package/package.json +1 -1
package/dist/proxy.js CHANGED
@@ -180,7 +180,8 @@ export async function startProxy() {
180
180
  if (!channel)
181
181
  return { content: [{ type: "text", text: "channel required" }], isError: true };
182
182
  const result = await channels.join(channel, args.name);
183
- // session_id set internally by ChannelManager.join (before SSE opens)
183
+ // Use v1 FeedManager for SSE delivery (proven working)
184
+ feeds.subscribe(channel);
184
185
  if (!result)
185
186
  return { content: [{ type: "text", text: JSON.stringify({ error: "already joined or failed" }) }] };
186
187
  const r = result;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openlap/openlap",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "description": "Local MCP proxy for openlap.app -- auto-save, live feeds, project detection, one install",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",