@zixt/host 0.0.31 → 0.0.32

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.
Files changed (2) hide show
  1. package/dist/index.js +7 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -31,7 +31,7 @@ import { homedir } from "node:os";
31
31
  // package.json
32
32
  var package_default = {
33
33
  name: "@zixt/host",
34
- version: "0.0.31",
34
+ version: "0.0.32",
35
35
  type: "module",
36
36
  exports: {
37
37
  ".": "./src/client.ts",
@@ -17774,7 +17774,7 @@ var HostRemovalImpact = external_exports.object({
17774
17774
  runningTasks: ImpactedTasks,
17775
17775
  /** Queued Tasks pinned to it. These move to automatic placement. */
17776
17776
  queuedPinnedTasks: ImpactedTasks,
17777
- /** Automations pinned to it. These need an explicit decision. */
17777
+ /** Automations pinned to it. These move to automatic placement. */
17778
17778
  pinnedAutomations: external_exports.object({
17779
17779
  count: external_exports.number().int().min(0),
17780
17780
  samples: external_exports.array(
@@ -17798,13 +17798,13 @@ var HostRemovalImpact = external_exports.object({
17798
17798
  * its website sessions, and any local work never pushed anywhere.
17799
17799
  */
17800
17800
  unrecoverableLosses: external_exports.array(external_exports.string().min(1).max(500)),
17801
- /** True when pinned Automations exist and `DELETE` therefore needs a decision. */
17801
+ /** Deprecated compatibility field; always false because Auto is the default. */
17802
17802
  requiresAutomationDecision: external_exports.boolean(),
17803
17803
  evaluatedAt: IsoDate2
17804
17804
  });
17805
17805
  var PinnedAutomationResolution = external_exports.enum(["move_to_auto", "pause"]);
17806
17806
  var RevokeHostRequest = external_exports.object({
17807
- /** Required when the impact reports pinned Automations. */
17807
+ /** Optional compatibility override; omission moves them to Auto. */
17808
17808
  pinnedAutomations: PinnedAutomationResolution.optional(),
17809
17809
  /**
17810
17810
  * Idempotency key for the whole resolution. A retried removal after a lost
@@ -18102,7 +18102,9 @@ var AttentionItemType = external_exports.enum([
18102
18102
  "task_failure",
18103
18103
  "dependency",
18104
18104
  /** An Automation paused itself and cannot resume without a person's decision. */
18105
- "automation_paused"
18105
+ "automation_paused",
18106
+ /** An Automation was kept running but its Machine preference changed. */
18107
+ "automation_moved"
18106
18108
  ]);
18107
18109
  var AttentionCategory = external_exports.enum([
18108
18110
  "answer_question",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zixt/host",
3
- "version": "0.0.31",
3
+ "version": "0.0.32",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./src/client.ts",