zam-core 0.9.0 → 0.9.1

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.d.ts CHANGED
@@ -2129,7 +2129,7 @@ declare function decideUpdate(input: {
2129
2129
  channel: InstallChannel;
2130
2130
  }): UpdateDecision;
2131
2131
  /** A single step an executor runs to APPLY an update, in order. */
2132
- type UpdateStepKind = "git-pull" | "npm-install" | "npm-build" | "distribute-skills" | "run-command" | "self-update";
2132
+ type UpdateStepKind = "git-pull" | "npm-install" | "npm-build" | "smoke-test" | "distribute-skills" | "run-command" | "self-update";
2133
2133
  interface UpdateStep {
2134
2134
  kind: UpdateStepKind;
2135
2135
  /** Human-readable description of the step. */
package/dist/index.js CHANGED
@@ -6153,6 +6153,7 @@ function planUpdate(decision) {
6153
6153
  { kind: "git-pull", label: "Pull the latest source" },
6154
6154
  { kind: "npm-install", label: "Install dependencies" },
6155
6155
  { kind: "npm-build", label: "Rebuild the CLI" },
6156
+ { kind: "smoke-test", label: "Verify the rebuilt CLI launches" },
6156
6157
  {
6157
6158
  kind: "distribute-skills",
6158
6159
  label: "Refresh skill files (zam setup --force)"