@adhdev/daemon-core 0.9.82-rc.144 → 0.9.82-rc.146

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.
@@ -258,9 +258,11 @@ export type CliListNativeHistoryFn = () => {
258
258
  sessions: CliListNativeHistoryEntry[];
259
259
  };
260
260
 
261
- // ─── Canonical history config ──────────────────────────────────────────
261
+ // ─── Native history config ─────────────────────────────────────────────
262
262
 
263
- export interface CliCanonicalHistoryDef {
263
+ export interface CliNativeHistoryDef {
264
+ /** Built-in adapter $schema (e.g. "adhdev:native-history/claude-jsonl@1"). */
265
+ $schema?: string;
264
266
  format: string;
265
267
  watchPath: string;
266
268
  mode: 'native-source' | 'daemon-mirror';
@@ -271,6 +273,12 @@ export interface CliCanonicalHistoryDef {
271
273
  };
272
274
  }
273
275
 
276
+ /**
277
+ * @deprecated Use {@link CliNativeHistoryDef}. Retained as an alias for one
278
+ * release so SDK consumers that referenced the v0 name keep compiling.
279
+ */
280
+ export type CliCanonicalHistoryDef = CliNativeHistoryDef;
281
+
274
282
  // ─── Patterns (legacy fallback detector hints) ─────────────────────────
275
283
 
276
284
  export interface CliPatternEntry {
@@ -344,7 +352,9 @@ export interface CliProviderManifest {
344
352
  /** Mesh coordinator setup */
345
353
  meshCoordinator?: MeshCoordinatorDef;
346
354
 
347
- /** Native history */
355
+ /** Native history (v1 canonical field name) */
356
+ nativeHistory?: CliNativeHistoryDef;
357
+ /** @deprecated v0 alias for `nativeHistory`. */
348
358
  canonicalHistory?: CliCanonicalHistoryDef;
349
359
 
350
360
  /** Settings (UI toggles persisted to ~/.adhdev/config.json) */