@zixt/host 0.0.151 → 0.0.152
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 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -28,7 +28,7 @@ import { homedir as homedir4 } from "node:os";
|
|
|
28
28
|
// package.json
|
|
29
29
|
var package_default = {
|
|
30
30
|
name: "@zixt/host",
|
|
31
|
-
version: "0.0.
|
|
31
|
+
version: "0.0.152",
|
|
32
32
|
type: "module",
|
|
33
33
|
exports: {
|
|
34
34
|
".": "./src/client.ts",
|
|
@@ -20087,12 +20087,19 @@ var UpdateManagerEmailSettingsRequest = external_exports.object({
|
|
|
20087
20087
|
}).strict();
|
|
20088
20088
|
var DeleteManagerEmailQuarantineResponse = external_exports.object({ discarded: external_exports.literal(true) }).strict();
|
|
20089
20089
|
var ConversationStatus = external_exports.enum(["idle", "thinking"]);
|
|
20090
|
+
var ManagerAutomationRun = external_exports.object({
|
|
20091
|
+
status: external_exports.enum(["running", "succeeded", "failed"]),
|
|
20092
|
+
startedAt: external_exports.string(),
|
|
20093
|
+
completedAt: external_exports.string().nullable()
|
|
20094
|
+
}).strict();
|
|
20090
20095
|
var ConversationProjection = external_exports.object({
|
|
20091
20096
|
id: ConversationId,
|
|
20092
20097
|
/** First-message prefix until the one creation-time Manager title call settles. */
|
|
20093
20098
|
title: external_exports.string().min(1).max(200),
|
|
20094
20099
|
channel: ConversationChannel,
|
|
20095
20100
|
status: ConversationStatus,
|
|
20101
|
+
/** Absent on ordinary Manager Tasks and legacy projections. */
|
|
20102
|
+
latestAutomationRun: ManagerAutomationRun.nullable().optional(),
|
|
20096
20103
|
/** TS-10 origin trust of the channel; propagated into every delegated Task. */
|
|
20097
20104
|
trust: external_exports.enum(["internal", "external"]),
|
|
20098
20105
|
/** One-use override for the next Task delegated from this thread. */
|