@granular-software/sdk 0.4.48 → 0.4.49

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/index.mjs CHANGED
@@ -5560,6 +5560,9 @@ import { ${tools[0]?.name || "example"} } from "@granular/actions/backend";
5560
5560
  this.client.on("harness.model_stream", (data) => {
5561
5561
  this.emit("harness:model_stream", data);
5562
5562
  });
5563
+ this.client.on("harness.text_response.delta", (data) => {
5564
+ this.emit("harness:text_response_delta", data);
5565
+ });
5563
5566
  this.client.on("job.agent_message", (data) => {
5564
5567
  const normalized = normalizeJobAgentMessageEnvelope(data);
5565
5568
  if (!normalized) return;