@serviceme/devtools-cli 0.4.1 → 0.4.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.
@@ -213,7 +213,7 @@ function normalizeServicemeError(error, fallbackCode = "internal_error") {
213
213
  }
214
214
 
215
215
  // src/version.ts
216
- var SERVICEME_CLI_VERSION = "0.4.1";
216
+ var SERVICEME_CLI_VERSION = "0.4.3";
217
217
 
218
218
  // src/bridge/handlers/AuthBridgeHandlers.ts
219
219
  var import_auth2 = require("@serviceme/devtools-core/auth");
package/dist/cli.js CHANGED
@@ -777,7 +777,7 @@ var readline = __toESM(require("readline"));
777
777
 
778
778
  // src/version.ts
779
779
  var SERVICEME_CLI_NAME = "serviceme";
780
- var SERVICEME_CLI_VERSION = "0.4.1";
780
+ var SERVICEME_CLI_VERSION = "0.4.3";
781
781
 
782
782
  // src/bridge/handlers/AuthBridgeHandlers.ts
783
783
  var import_auth3 = require("@serviceme/devtools-core/auth");
@@ -2549,7 +2549,7 @@ function handleToggle(parsed) {
2549
2549
  writeSuccess({ task });
2550
2550
  }
2551
2551
  async function handleTrigger(parsed) {
2552
- const wp = requireWorkspace(parsed);
2552
+ const _wp = requireWorkspace(parsed);
2553
2553
  const id = requireId(parsed);
2554
2554
  const mgr = new import_devtools_core11.TaskConfigManager();
2555
2555
  const task = mgr.getTask(id);
@@ -2557,7 +2557,11 @@ async function handleTrigger(parsed) {
2557
2557
  throw createServicemeError("task_not_found", `Task '${id}' does not exist in this workspace`);
2558
2558
  }
2559
2559
  const startedAt = (/* @__PURE__ */ new Date()).toISOString();
2560
- const executionPayload = (0, import_devtools_core11.resolveTaskExecutionPayload)(task.taskType, task.payload, wp);
2560
+ const executionPayload = (0, import_devtools_core11.resolveTaskExecutionPayload)(
2561
+ task.taskType,
2562
+ task.payload,
2563
+ task.workspace.path
2564
+ );
2561
2565
  (0, import_devtools_core11.validateTaskPayload)(task.taskType, executionPayload);
2562
2566
  const executor = (0, import_devtools_core11.getExecutor)(task.taskType);
2563
2567
  const result = await executor.execute(executionPayload);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serviceme/devtools-cli",
3
- "version": "0.4.1",
3
+ "version": "0.4.3",
4
4
  "description": "Unified SERVICEME CLI for automation, project scaffolding, and bridge-based tooling.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "repository": {
@@ -39,8 +39,8 @@
39
39
  "registry": "https://registry.npmjs.org/"
40
40
  },
41
41
  "dependencies": {
42
- "@serviceme/devtools-core": "0.4.1",
43
- "@serviceme/devtools-protocol": "0.4.1"
42
+ "@serviceme/devtools-core": "0.4.3",
43
+ "@serviceme/devtools-protocol": "0.4.3"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/node": "^24",