@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/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export type RuntimeWriteOwner = _RuntimeWriteOwner;
|
|
|
16
16
|
export type RuntimeAttachedClient = _RuntimeAttachedClient;
|
|
17
17
|
export type RecentLaunchEntry = _RecentLaunchEntry;
|
|
18
18
|
export type TerminalBackendStatus = _TerminalBackendStatus;
|
|
19
|
+
export type { SessionHostEndpoint } from '@adhdev/session-host-core';
|
|
19
20
|
export type SessionStatus = 'idle' | 'generating' | 'waiting_approval' | 'error' | 'stopped' | 'starting' | 'panel_hidden' | 'not_monitored' | 'disconnected';
|
|
20
21
|
export type RecentSessionBucket = 'needs_attention' | 'working' | 'task_complete' | 'idle';
|
|
21
22
|
export type { IDaemonCore, DaemonCoreOptions } from './daemon-core.js';
|
package/dist/index.js
CHANGED
|
@@ -10023,7 +10023,7 @@ function classifyChatMessageVisibility(message) {
|
|
|
10023
10023
|
const transcriptVisibility = readTranscriptVisibilityField(message, meta);
|
|
10024
10024
|
const audience = readStringField(readRecordField(message, meta, "audience"));
|
|
10025
10025
|
const source = readStringField(readRecordField(message, meta, "source"));
|
|
10026
|
-
const explicitHidden = EXPLICIT_HIDDEN_VISIBILITIES.has(visibility) || EXPLICIT_HIDDEN_VISIBILITIES.has(transcriptVisibility) || HIDDEN_AUDIENCES.has(audience) || hasBooleanMarker(message, meta, ["internal", "isInternal", "debug", "statusOnly", "controlOnly"]);
|
|
10026
|
+
const explicitHidden = EXPLICIT_HIDDEN_VISIBILITIES.has(visibility) || EXPLICIT_HIDDEN_VISIBILITIES.has(transcriptVisibility) || HIDDEN_AUDIENCES.has(audience) || hasBooleanMarker(message, meta, ["hidden", "internal", "isInternal", "debug", "statusOnly", "controlOnly"]);
|
|
10027
10027
|
const explicitUserFacing = EXPLICIT_VISIBLE_VISIBILITIES.has(visibility) || EXPLICIT_VISIBLE_VISIBILITIES.has(transcriptVisibility) || audience === "chat" || hasBooleanMarker(message, meta, ["userFacing"]);
|
|
10028
10028
|
if (explicitHidden) {
|
|
10029
10029
|
const activityLike = isActivityKind(kind) || ACTIVITY_SOURCE_SET.has(source);
|