@zixt/host 0.0.20 → 0.0.21
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 +8 -3
- 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.
|
|
34
|
+
version: "0.0.21",
|
|
35
35
|
type: "module",
|
|
36
36
|
exports: {
|
|
37
37
|
".": "./src/client.ts",
|
|
@@ -15831,7 +15831,10 @@ var Task = external_exports.object({
|
|
|
15831
15831
|
/** Assignment epoch — bumped every time the task is (re)assigned (PRD §7.4). */
|
|
15832
15832
|
epoch: external_exports.number().int().min(0),
|
|
15833
15833
|
hostId: HostId.nullable(),
|
|
15834
|
-
/**
|
|
15834
|
+
/**
|
|
15835
|
+
* TS-16: the Task's durable Machine affinity. Null lets the dispatcher pick
|
|
15836
|
+
* its first Machine; assignment then records that choice for later runs.
|
|
15837
|
+
*/
|
|
15835
15838
|
requestedHostId: HostId.nullable().default(null),
|
|
15836
15839
|
/** TS-16: per-Task runner/model/effort selection; null runs the teammate's configuration. */
|
|
15837
15840
|
runner: TaskRunnerSelection.nullable().default(null),
|
|
@@ -15975,7 +15978,9 @@ var CreateTaskInput = external_exports.object({
|
|
|
15975
15978
|
/** Explicit producer opt-in to the independent TS-14 review workflow. */
|
|
15976
15979
|
reviewMode: TaskReviewMode.optional(),
|
|
15977
15980
|
/**
|
|
15978
|
-
* Run on this exact Machine (TS-16). Absent means the dispatcher picks
|
|
15981
|
+
* Run on this exact Machine (TS-16). Absent means the dispatcher picks
|
|
15982
|
+
* the first Machine; the Task then stays there unless a person explicitly
|
|
15983
|
+
* chooses interrupted-work recovery on another Machine.
|
|
15979
15984
|
* A teammate never runs on two Machines at once (AG-6a), so live work on
|
|
15980
15985
|
* another Machine truthfully queues this Task rather than overriding it.
|
|
15981
15986
|
*/
|