@crossworks/client-types 0.232.55 → 0.232.56
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 +1 -1
- package/src/index.ts +10 -2
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -232,6 +232,7 @@ export interface AgentMemoryConfigDTO {
|
|
|
232
232
|
content_hit_limit?: number;
|
|
233
233
|
chunk_limit?: number;
|
|
234
234
|
inject_journal?: boolean;
|
|
235
|
+
inject_working_notes?: boolean;
|
|
235
236
|
summarize_threshold?: number;
|
|
236
237
|
summarize_batch?: number;
|
|
237
238
|
extract_types?: string[];
|
|
@@ -733,8 +734,15 @@ export type JournalRow = {
|
|
|
733
734
|
id: string;
|
|
734
735
|
title: string;
|
|
735
736
|
body: string;
|
|
736
|
-
|
|
737
|
-
|
|
737
|
+
/** Who wrote the entry. Stamped server-side; agent tool calls can't spoof it. */
|
|
738
|
+
author: 'user' | 'agent';
|
|
739
|
+
/** Authoring agent's slug when author='agent'; null for user-authored rows. */
|
|
740
|
+
agentSlug: string | null;
|
|
741
|
+
/** Kind key (see KINDS in journal-options). Legacy pre-v2 rows map their old
|
|
742
|
+
* `category` to a kind at read time; free text is tolerated. */
|
|
743
|
+
kind: string | null;
|
|
744
|
+
/** Gap lifecycle — only entries with kind='gap' carry one ('open'|'resolved'). */
|
|
745
|
+
status: string | null;
|
|
738
746
|
entryDate: string | null;
|
|
739
747
|
tags: string[];
|
|
740
748
|
summary: string | null;
|