@adhdev/daemon-core 0.9.77 → 0.9.78
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.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/providers/chat-message-normalization.ts +1 -1
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -119,6 +119,7 @@ export type RuntimeWriteOwner = _RuntimeWriteOwner;
|
|
|
119
119
|
export type RuntimeAttachedClient = _RuntimeAttachedClient;
|
|
120
120
|
export type RecentLaunchEntry = _RecentLaunchEntry;
|
|
121
121
|
export type TerminalBackendStatus = _TerminalBackendStatus;
|
|
122
|
+
export type { SessionHostEndpoint } from '@adhdev/session-host-core';
|
|
122
123
|
|
|
123
124
|
// Type aliases — rollup-dts cannot bundle re-exported type aliases at all.
|
|
124
125
|
// Canonical definition lives in shared-types-extra.ts — keep these in sync.
|
|
@@ -322,7 +322,7 @@ export function classifyChatMessageVisibility(message: ChatMessage | null | unde
|
|
|
322
322
|
const explicitHidden = EXPLICIT_HIDDEN_VISIBILITIES.has(visibility)
|
|
323
323
|
|| EXPLICIT_HIDDEN_VISIBILITIES.has(transcriptVisibility)
|
|
324
324
|
|| HIDDEN_AUDIENCES.has(audience)
|
|
325
|
-
|| hasBooleanMarker(message, meta, ['internal', 'isInternal', 'debug', 'statusOnly', 'controlOnly']);
|
|
325
|
+
|| hasBooleanMarker(message, meta, ['hidden', 'internal', 'isInternal', 'debug', 'statusOnly', 'controlOnly']);
|
|
326
326
|
const explicitUserFacing = EXPLICIT_VISIBLE_VISIBILITIES.has(visibility)
|
|
327
327
|
|| EXPLICIT_VISIBLE_VISIBILITIES.has(transcriptVisibility)
|
|
328
328
|
|| audience === 'chat'
|