@blade-hq/agent-client 1.2.1-beta.2 → 1.2.1-beta.3

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.js CHANGED
@@ -977,6 +977,12 @@ var ClientProjectionBuilder = class {
977
977
  return null;
978
978
  }
979
979
  switch (event.type) {
980
+ case "llm:stream:reset":
981
+ state.blocks = [];
982
+ state.toolCalls = [];
983
+ state.usage = null;
984
+ state.responseDone = false;
985
+ return this.syncPatch(state);
980
986
  case "llm:thinking:delta":
981
987
  return this.onDelta(state, "thinking", "", String(payload.content ?? ""));
982
988
  case "llm:content:delta":
@@ -4114,7 +4120,7 @@ function resolveAuthToken(options) {
4114
4120
 
4115
4121
  // src/version.ts
4116
4122
  var SDK_NAME = "agent-client";
4117
- var SDK_VERSION = true ? "1.2.1-beta.2" : "1.1.1";
4123
+ var SDK_VERSION = true ? "1.2.1-beta.3" : "1.1.1";
4118
4124
 
4119
4125
  // src/socket.ts
4120
4126
  function withSdkIdentity(auth) {