@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/cli/index.js CHANGED
@@ -20689,6 +20689,9 @@ import { ${tools[0]?.name || "example"} } from "@granular/actions/backend";
20689
20689
  this.client.on("harness.model_stream", (data) => {
20690
20690
  this.emit("harness:model_stream", data);
20691
20691
  });
20692
+ this.client.on("harness.text_response.delta", (data) => {
20693
+ this.emit("harness:text_response_delta", data);
20694
+ });
20692
20695
  this.client.on("job.agent_message", (data) => {
20693
20696
  const normalized = normalizeJobAgentMessageEnvelope(data);
20694
20697
  if (!normalized) return;
package/dist/index.js CHANGED
@@ -5582,6 +5582,9 @@ import { ${tools[0]?.name || "example"} } from "@granular/actions/backend";
5582
5582
  this.client.on("harness.model_stream", (data) => {
5583
5583
  this.emit("harness:model_stream", data);
5584
5584
  });
5585
+ this.client.on("harness.text_response.delta", (data) => {
5586
+ this.emit("harness:text_response_delta", data);
5587
+ });
5585
5588
  this.client.on("job.agent_message", (data) => {
5586
5589
  const normalized = normalizeJobAgentMessageEnvelope(data);
5587
5590
  if (!normalized) return;