@zixt/host 0.0.64 → 0.0.65

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 +10 -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.64",
34
+ version: "0.0.65",
35
35
  type: "module",
36
36
  exports: {
37
37
  ".": "./src/client.ts",
@@ -16331,13 +16331,18 @@ var TaskTimingBreakdown = external_exports.object({
16331
16331
  runs: external_exports.array(TaskTimingRun).max(TASK_TIMING_MAX_RUNS)
16332
16332
  }).strict();
16333
16333
  var TaskProgressStepState = external_exports.enum([
16334
- /** Reached, and the Task has since moved past it. */
16334
+ /** Reached and finished: the Task demonstrably passed through it. */
16335
16335
  "done",
16336
16336
  /** The furthest step the Task has reached. */
16337
16337
  "active",
16338
16338
  /** Not reached yet. */
16339
16339
  "pending",
16340
- /** The Task moved past this step without spending measurable time in it. */
16340
+ /**
16341
+ * The Task went past this step with nothing to show for it: no recorded
16342
+ * activity of that kind and no measurable time. Reserved for the steps
16343
+ * attributed from the activity record — a dispatched Task queued and started
16344
+ * up whatever the clock says, so those two are never reported as skipped.
16345
+ */
16341
16346
  "skipped"
16342
16347
  ]);
16343
16348
  var TaskProgressStep = external_exports.object({
@@ -16401,8 +16406,8 @@ var TaskProgressEstimate = external_exports.object({
16401
16406
  elapsedMs: external_exports.number().int().min(0),
16402
16407
  /** Of that, time a Machine was actually working. */
16403
16408
  activeMs: external_exports.number().int().min(0),
16404
- /** Working time still expected, as a range; null when unknowable. */
16405
- remaining: external_exports.object({ lowMs: external_exports.number().int().min(0), highMs: external_exports.number().int().min(0) }).strict().nullable(),
16409
+ /** Working time still expected, as one estimate; null when unknowable. */
16410
+ remainingMs: external_exports.number().int().min(0).nullable(),
16406
16411
  sample: TaskProgressSample.nullable(),
16407
16412
  /** Every TS-20 step, in lifecycle order. */
16408
16413
  steps: external_exports.array(TaskProgressStep),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zixt/host",
3
- "version": "0.0.64",
3
+ "version": "0.0.65",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./src/client.ts",