@zixt/host 0.0.60 → 0.0.61
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 +24 -6
- 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.61",
|
|
35
35
|
type: "module",
|
|
36
36
|
exports: {
|
|
37
37
|
".": "./src/client.ts",
|
|
@@ -16318,9 +16318,14 @@ var TaskProgressStep = external_exports.object({
|
|
|
16318
16318
|
kind: TaskTimingPhaseKind,
|
|
16319
16319
|
state: TaskProgressStepState,
|
|
16320
16320
|
/** Time spent in this step so far; 0 for pending and skipped steps. */
|
|
16321
|
-
durationMs: external_exports.number().int().min(0)
|
|
16321
|
+
durationMs: external_exports.number().int().min(0),
|
|
16322
|
+
/**
|
|
16323
|
+
* What comparable finished Tasks spent here, from their recorded shares
|
|
16324
|
+
* rather than an even split across steps. 0 when no cohort supports one.
|
|
16325
|
+
*/
|
|
16326
|
+
expectedMs: external_exports.number().int().min(0)
|
|
16322
16327
|
}).strict();
|
|
16323
|
-
var TaskProgressBasis = external_exports.enum(["none", "steps", "history"]);
|
|
16328
|
+
var TaskProgressBasis = external_exports.enum(["none", "steps", "history", "phase_history"]);
|
|
16324
16329
|
var TaskProgressConfidence = external_exports.enum(["none", "low", "medium"]);
|
|
16325
16330
|
var TaskProgressCaveat = external_exports.enum([
|
|
16326
16331
|
/** A person owes an answer or a decision; nothing is running. */
|
|
@@ -16338,14 +16343,27 @@ var TaskProgressCaveat = external_exports.enum([
|
|
|
16338
16343
|
/** No comparable finished Task exists, so no time can be predicted at all. */
|
|
16339
16344
|
"no_history"
|
|
16340
16345
|
]);
|
|
16346
|
+
var TaskProgressSampleScope = external_exports.enum([
|
|
16347
|
+
/** Same teammate, same repository, similar size of request. */
|
|
16348
|
+
"agent_repository_size",
|
|
16349
|
+
/** Same teammate, same repository. */
|
|
16350
|
+
"agent_repository",
|
|
16351
|
+
/** Same teammate, any work. */
|
|
16352
|
+
"agent",
|
|
16353
|
+
/** Anyone in the organization. */
|
|
16354
|
+
"organization"
|
|
16355
|
+
]);
|
|
16341
16356
|
var TaskProgressSample = external_exports.object({
|
|
16342
16357
|
size: external_exports.number().int().min(1),
|
|
16343
|
-
|
|
16344
|
-
|
|
16358
|
+
scope: TaskProgressSampleScope,
|
|
16359
|
+
/** One in five comparable Tasks finished their work within this. */
|
|
16360
|
+
p20Ms: external_exports.number().int().min(0).default(0),
|
|
16345
16361
|
/** Middle working time of the sample. */
|
|
16346
16362
|
medianMs: external_exports.number().int().min(0),
|
|
16347
16363
|
/** Four in five comparable Tasks finished their work within this. */
|
|
16348
|
-
p80Ms: external_exports.number().int().min(0)
|
|
16364
|
+
p80Ms: external_exports.number().int().min(0),
|
|
16365
|
+
/** Newest observation in the cohort; the estimate ages with its evidence. */
|
|
16366
|
+
newestAt: IsoDate.nullable().default(null)
|
|
16349
16367
|
}).strict();
|
|
16350
16368
|
var TaskProgressEstimate = external_exports.object({
|
|
16351
16369
|
schemaVersion: external_exports.literal(1),
|