@zixt/host 0.0.30 → 0.0.31
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 +14 -1
- 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.31",
|
|
35
35
|
type: "module",
|
|
36
36
|
exports: {
|
|
37
37
|
".": "./src/client.ts",
|
|
@@ -18104,14 +18104,27 @@ var AttentionItemType = external_exports.enum([
|
|
|
18104
18104
|
/** An Automation paused itself and cannot resume without a person's decision. */
|
|
18105
18105
|
"automation_paused"
|
|
18106
18106
|
]);
|
|
18107
|
+
var AttentionCategory = external_exports.enum([
|
|
18108
|
+
"answer_question",
|
|
18109
|
+
"approve_action",
|
|
18110
|
+
"review_result",
|
|
18111
|
+
"repair_access",
|
|
18112
|
+
"restore_execution",
|
|
18113
|
+
"resolve_ambiguous_effect"
|
|
18114
|
+
]);
|
|
18107
18115
|
var AttentionItem = external_exports.object({
|
|
18108
18116
|
id: external_exports.string().min(1),
|
|
18109
18117
|
type: AttentionItemType,
|
|
18118
|
+
category: AttentionCategory,
|
|
18110
18119
|
severity: external_exports.enum(["info", "warning", "critical"]),
|
|
18111
18120
|
agentId: AgentId.nullable(),
|
|
18112
18121
|
taskId: TaskId.nullable(),
|
|
18113
18122
|
title: external_exports.string().min(1).max(500),
|
|
18114
18123
|
reason: external_exports.string().min(1).max(2e3),
|
|
18124
|
+
whatStopped: external_exports.string().min(1).max(500),
|
|
18125
|
+
whyNeeded: external_exports.string().min(1).max(2e3),
|
|
18126
|
+
afterAction: external_exports.string().min(1).max(1e3),
|
|
18127
|
+
eligibleActor: external_exports.string().min(1).max(500),
|
|
18115
18128
|
originTrust: external_exports.enum(["internal", "external"]).nullable(),
|
|
18116
18129
|
createdAt: IsoDate,
|
|
18117
18130
|
source: external_exports.object({
|