@zixt/host 0.0.144 → 0.0.146
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 +28 -3
- 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.146",
|
|
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,
|
|
@@ -15939,9 +15940,25 @@ var CompanyProfileHeader = external_exports.object({
|
|
|
15939
15940
|
/** Where the logo was found, shown beside it so a person can check. */
|
|
15940
15941
|
logoSourceUrl: external_exports.string().max(COMPANY_PROFILE_SOURCE_URL_MAX).nullable()
|
|
15941
15942
|
}).strict();
|
|
15943
|
+
var CompanyWebsiteResearchState = external_exports.object({
|
|
15944
|
+
/** The site being read, normalized. */
|
|
15945
|
+
websiteUrl: external_exports.string().max(COMPANY_PROFILE_SOURCE_URL_MAX),
|
|
15946
|
+
startedAt: IsoDate,
|
|
15947
|
+
finishedAt: IsoDate.nullable(),
|
|
15948
|
+
/** Plain-language failure for the page; null while running or on success. */
|
|
15949
|
+
error: external_exports.string().max(300).nullable(),
|
|
15950
|
+
factsFound: external_exports.number().int().min(0),
|
|
15951
|
+
competitorsFound: external_exports.number().int().min(0),
|
|
15952
|
+
logoFound: external_exports.boolean()
|
|
15953
|
+
}).strict();
|
|
15942
15954
|
var CompanyProfileView = external_exports.object({
|
|
15943
15955
|
header: CompanyProfileHeader,
|
|
15944
15956
|
entries: external_exports.array(CompanyProfileEntry).max(COMPANY_PROFILE_MAX_ENTRIES),
|
|
15957
|
+
/**
|
|
15958
|
+
* The website lookup, in flight or finished, so the page can say it is
|
|
15959
|
+
* happening rather than leaving a person wondering whether it did.
|
|
15960
|
+
*/
|
|
15961
|
+
research: CompanyWebsiteResearchState.nullable(),
|
|
15945
15962
|
/** How many more rows this organization may keep before it must forget one. */
|
|
15946
15963
|
remaining: external_exports.number().int().min(0),
|
|
15947
15964
|
/** Members read the profile; Owners and Admins write it (ORG-2). */
|
|
@@ -20135,6 +20152,13 @@ var ConversationEventProjection = external_exports.discriminatedUnion("kind", [
|
|
|
20135
20152
|
role: external_exports.enum(["member", "teammate"]),
|
|
20136
20153
|
displayName: external_exports.string().nullable()
|
|
20137
20154
|
}).strict().nullable().optional(),
|
|
20155
|
+
/**
|
|
20156
|
+
* The pending ask a `question` event mirrors, so the Conversation can
|
|
20157
|
+
* offer the answer where the question was relayed instead of making a
|
|
20158
|
+
* person leave for the Task page to type one sentence (MG-5). Null once
|
|
20159
|
+
* the ask is decided or withheld, and absent on legacy rows.
|
|
20160
|
+
*/
|
|
20161
|
+
questionApprovalId: ApprovalId.nullable().optional(),
|
|
20138
20162
|
/**
|
|
20139
20163
|
* Opaque presentation key shared by the useful report and its synthetic
|
|
20140
20164
|
* terminal wake-up. It is never shown to people; clients use it only to
|
|
@@ -20529,12 +20553,13 @@ var ManagerTaskRailRepresentative = external_exports.object({
|
|
|
20529
20553
|
updatedAt: external_exports.string()
|
|
20530
20554
|
}).strict();
|
|
20531
20555
|
var MANAGER_RAIL_WORKSTREAM_LIMIT = 10;
|
|
20556
|
+
var ManagerRailAttention = external_exports.enum(["none", "answer", "browser"]);
|
|
20532
20557
|
var ManagerTaskRailWorkstream = external_exports.object({
|
|
20533
20558
|
workstreamId: external_exports.string().min(1).max(160),
|
|
20534
20559
|
/** The workstream's newest live Task title, already role-projected. */
|
|
20535
20560
|
title: external_exports.string().max(1e3),
|
|
20536
20561
|
representative: ManagerTaskRailRepresentative,
|
|
20537
|
-
|
|
20562
|
+
attention: ManagerRailAttention.default("none")
|
|
20538
20563
|
}).strict();
|
|
20539
20564
|
var ManagerTaskRailSummary = external_exports.object({
|
|
20540
20565
|
conversationId: ConversationId,
|
|
@@ -20542,7 +20567,7 @@ var ManagerTaskRailSummary = external_exports.object({
|
|
|
20542
20567
|
hasAgentMatch: external_exports.boolean(),
|
|
20543
20568
|
hasStatusMatch: external_exports.boolean(),
|
|
20544
20569
|
representative: ManagerTaskRailRepresentative.nullable(),
|
|
20545
|
-
|
|
20570
|
+
attention: ManagerRailAttention.default("none"),
|
|
20546
20571
|
/**
|
|
20547
20572
|
* Live workstreams this thread carries besides the one its own row
|
|
20548
20573
|
* represents. Defaulted so a browser that outruns a deploy degrades to the
|