@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adhdev/daemon-core",
3
- "version": "0.9.77",
3
+ "version": "0.9.78",
4
4
  "description": "ADHDev daemon core — CDP, IDE detection, providers, command execution",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
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'