@lumenflow/memory 2.10.0 → 2.11.0
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 +2 -2
- package/dist/index.d.ts +0 -17
- package/dist/mem-checkpoint-core.d.ts +0 -91
- package/dist/mem-cleanup-core.d.ts +0 -202
- package/dist/mem-create-core.d.ts +0 -93
- package/dist/mem-export-core.d.ts +0 -33
- package/dist/mem-id.d.ts +0 -91
- package/dist/mem-init-core.d.ts +0 -93
- package/dist/mem-ready-core.d.ts +0 -56
- package/dist/mem-signal-core.d.ts +0 -132
- package/dist/mem-start-core.d.ts +0 -76
- package/dist/mem-summarize-core.d.ts +0 -105
- package/dist/mem-triage-core.d.ts +0 -127
- package/dist/memory-schema.d.ts +0 -150
- package/dist/memory-store.d.ts +0 -108
- package/dist/paths.d.ts +0 -28
package/dist/paths.d.ts
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Memory Package Path Constants
|
|
3
|
-
*
|
|
4
|
-
* Defines paths used by the memory layer locally to avoid circular
|
|
5
|
-
* dependencies with @lumenflow/core (which imports from memory).
|
|
6
|
-
*
|
|
7
|
-
* These values MUST match LUMENFLOW_PATHS in @lumenflow/core/wu-constants.ts.
|
|
8
|
-
* When updating paths, update both locations.
|
|
9
|
-
*
|
|
10
|
-
* @see {@link packages/@lumenflow/core/src/wu-constants.ts} - Source of truth
|
|
11
|
-
*/
|
|
12
|
-
/**
|
|
13
|
-
* Path constants for LumenFlow memory layer.
|
|
14
|
-
* Duplicated here to avoid circular dependency with @lumenflow/core.
|
|
15
|
-
*
|
|
16
|
-
* Note: Named LUMENFLOW_MEMORY_PATHS to avoid conflict with
|
|
17
|
-
* MEMORY_PATHS exported from mem-init-core.ts
|
|
18
|
-
*/
|
|
19
|
-
export declare const LUMENFLOW_MEMORY_PATHS: {
|
|
20
|
-
/** Base directory for all LumenFlow runtime data */
|
|
21
|
-
readonly BASE: ".lumenflow";
|
|
22
|
-
/** WU state store directory */
|
|
23
|
-
readonly STATE_DIR: ".lumenflow/state";
|
|
24
|
-
/** Memory layer directory */
|
|
25
|
-
readonly MEMORY_DIR: ".lumenflow/memory";
|
|
26
|
-
/** Current session file */
|
|
27
|
-
readonly SESSION_CURRENT: ".lumenflow/sessions/current.json";
|
|
28
|
-
};
|