@zixt/host 0.0.144 → 0.0.145

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 +12 -3
  2. 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.144",
31
+ version: "0.0.145",
32
32
  type: "module",
33
33
  exports: {
34
34
  ".": "./src/client.ts",
@@ -14826,6 +14826,7 @@ var BrowserTab = external_exports.object({
14826
14826
  loading: external_exports.boolean()
14827
14827
  }).strict();
14828
14828
  var BROWSER_MAX_TABS = 12;
14829
+ var TeammateQuestionAttention = external_exports.enum(["browser", "answer"]);
14829
14830
  var BrowserSessionState = external_exports.object({
14830
14831
  browserSessionId: BrowserSessionId,
14831
14832
  taskId: TaskId,
@@ -20135,6 +20136,13 @@ var ConversationEventProjection = external_exports.discriminatedUnion("kind", [
20135
20136
  role: external_exports.enum(["member", "teammate"]),
20136
20137
  displayName: external_exports.string().nullable()
20137
20138
  }).strict().nullable().optional(),
20139
+ /**
20140
+ * The pending ask a `question` event mirrors, so the Conversation can
20141
+ * offer the answer where the question was relayed instead of making a
20142
+ * person leave for the Task page to type one sentence (MG-5). Null once
20143
+ * the ask is decided or withheld, and absent on legacy rows.
20144
+ */
20145
+ questionApprovalId: ApprovalId.nullable().optional(),
20138
20146
  /**
20139
20147
  * Opaque presentation key shared by the useful report and its synthetic
20140
20148
  * terminal wake-up. It is never shown to people; clients use it only to
@@ -20529,12 +20537,13 @@ var ManagerTaskRailRepresentative = external_exports.object({
20529
20537
  updatedAt: external_exports.string()
20530
20538
  }).strict();
20531
20539
  var MANAGER_RAIL_WORKSTREAM_LIMIT = 10;
20540
+ var ManagerRailAttention = external_exports.enum(["none", "answer", "browser"]);
20532
20541
  var ManagerTaskRailWorkstream = external_exports.object({
20533
20542
  workstreamId: external_exports.string().min(1).max(160),
20534
20543
  /** The workstream's newest live Task title, already role-projected. */
20535
20544
  title: external_exports.string().max(1e3),
20536
20545
  representative: ManagerTaskRailRepresentative,
20537
- browserAttention: external_exports.boolean().default(false)
20546
+ attention: ManagerRailAttention.default("none")
20538
20547
  }).strict();
20539
20548
  var ManagerTaskRailSummary = external_exports.object({
20540
20549
  conversationId: ConversationId,
@@ -20542,7 +20551,7 @@ var ManagerTaskRailSummary = external_exports.object({
20542
20551
  hasAgentMatch: external_exports.boolean(),
20543
20552
  hasStatusMatch: external_exports.boolean(),
20544
20553
  representative: ManagerTaskRailRepresentative.nullable(),
20545
- browserAttention: external_exports.boolean().default(false),
20554
+ attention: ManagerRailAttention.default("none"),
20546
20555
  /**
20547
20556
  * Live workstreams this thread carries besides the one its own row
20548
20557
  * represents. Defaulted so a browser that outruns a deploy degrades to the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zixt/host",
3
- "version": "0.0.144",
3
+ "version": "0.0.145",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./src/client.ts",