@zixt/host 0.0.95 → 0.0.97
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 +9 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -28,7 +28,7 @@ import { homedir as homedir3 } 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.97",
|
|
32
32
|
type: "module",
|
|
33
33
|
exports: {
|
|
34
34
|
".": "./src/client.ts",
|
|
@@ -16077,6 +16077,9 @@ var ApiConnection = external_exports.object({
|
|
|
16077
16077
|
definitionId: IntegrationDefinitionId,
|
|
16078
16078
|
definitionRevision: external_exports.number().int().min(1),
|
|
16079
16079
|
definitionName: external_exports.string().min(1).max(120),
|
|
16080
|
+
definitionLogoUrl: external_exports.url().max(2e3).nullable(),
|
|
16081
|
+
definitionLogoAssetId: IntegrationLogoId.nullable(),
|
|
16082
|
+
definitionAccent: external_exports.string().regex(/^#[0-9A-Fa-f]{6}$/),
|
|
16080
16083
|
name: external_exports.string().min(1).max(120),
|
|
16081
16084
|
/** Optional human-authored guidance rendered to teammates that can use this connection. */
|
|
16082
16085
|
usageNotes: external_exports.string().max(4e3).optional(),
|
|
@@ -18882,6 +18885,11 @@ var ConversationEventProjection = external_exports.discriminatedUnion("kind", [
|
|
|
18882
18885
|
eventKind: external_exports.enum(["response", "error", "status", "question", "message"]),
|
|
18883
18886
|
summary: external_exports.string(),
|
|
18884
18887
|
taskStatus: TaskStatus.nullable(),
|
|
18888
|
+
/** Authorship of a role-neutral `message`; null for legacy/unknown rows. */
|
|
18889
|
+
messageAuthor: external_exports.object({
|
|
18890
|
+
role: external_exports.enum(["member", "teammate"]),
|
|
18891
|
+
displayName: external_exports.string().nullable()
|
|
18892
|
+
}).strict().nullable().optional(),
|
|
18885
18893
|
/**
|
|
18886
18894
|
* Opaque presentation key shared by the useful report and its synthetic
|
|
18887
18895
|
* terminal wake-up. It is never shown to people; clients use it only to
|