@buildautomaton/cli 0.1.86 → 0.1.87

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
@@ -35195,7 +35195,7 @@ function createPendingAuthOnMessage(params) {
35195
35195
  }
35196
35196
 
35197
35197
  // src/cli-version.ts
35198
- var CLI_VERSION = "0.1.86".length > 0 ? "0.1.86" : "0.0.0-dev";
35198
+ var CLI_VERSION = "0.1.87".length > 0 ? "0.1.87" : "0.0.0-dev";
35199
35199
 
35200
35200
  // src/auth/pending/pending-auth-on-open.ts
35201
35201
  function createPendingAuthOnOpen(params) {
@@ -36895,6 +36895,7 @@ function buildCursorTaskToolCallUpdate(params) {
36895
36895
  const model = typeof params.model === "string" ? params.model : void 0;
36896
36896
  const agentId = typeof params.agentId === "string" ? params.agentId : typeof params.agent_id === "string" ? params.agent_id : void 0;
36897
36897
  const durationMs = typeof params.durationMs === "number" ? params.durationMs : typeof params.duration_ms === "number" ? params.duration_ms : void 0;
36898
+ const isBackground = typeof params.isBackground === "boolean" ? params.isBackground : typeof params.is_background === "boolean" ? params.is_background : typeof params.runInBackground === "boolean" ? params.runInBackground : typeof params.run_in_background === "boolean" ? params.run_in_background : void 0;
36898
36899
  return {
36899
36900
  sessionUpdate: "tool_call_update",
36900
36901
  toolCallId,
@@ -36905,7 +36906,8 @@ function buildCursorTaskToolCallUpdate(params) {
36905
36906
  ...subagentType != null ? { subagentType } : {},
36906
36907
  ...model != null ? { model } : {},
36907
36908
  ...agentId != null ? { agentId } : {},
36908
- ...durationMs != null ? { durationMs } : {}
36909
+ ...durationMs != null ? { durationMs } : {},
36910
+ ...isBackground != null ? { isBackground } : {}
36909
36911
  }
36910
36912
  };
36911
36913
  }