lunel-cli 0.1.83 → 0.1.84
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/dist/ai/opencode.js +3 -1
- package/package.json +1 -1
package/dist/ai/opencode.js
CHANGED
|
@@ -310,7 +310,9 @@ export class OpenCodeProvider {
|
|
|
310
310
|
console.warn("[sse] Dropped malformed event:", redactSensitive(JSON.stringify(parsed).substring(0, 200)));
|
|
311
311
|
continue;
|
|
312
312
|
}
|
|
313
|
-
|
|
313
|
+
if (base.type !== "server.heartbeat") {
|
|
314
|
+
console.log("[sse]", base.type);
|
|
315
|
+
}
|
|
314
316
|
this.trackPermissionEvent(base.type, base.properties || {});
|
|
315
317
|
this.emitter?.({ type: base.type, properties: base.properties || {} });
|
|
316
318
|
}
|