@theokit/sdk-memory 0.2.1 → 0.2.2
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/CHANGELOG.md +9 -0
- package/dist/in-memory-provider.d.ts +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/internal/dreaming/dreaming-diary.d.ts +1 -1
- package/dist/internal/index/index-db.d.ts +1 -1
- package/dist/internal/store/session-summary-writer.d.ts +1 -1
- package/dist/internal/store/transcript-store.d.ts +1 -1
- package/package.json +3 -3
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* that the future `dreaming-run.ts` move will compose with as a
|
|
15
15
|
* sibling (run.ts imports `appendDiaryEntry` after each dreaming
|
|
16
16
|
* sweep). Dependency chain (both resolved):
|
|
17
|
-
* - `@theokit/sdk/
|
|
17
|
+
* - `@theokit/sdk/persistence` for `replaceFileAtomic`
|
|
18
18
|
* - sibling `./markdown-store.js` for `memoryDir` (moved iter 56)
|
|
19
19
|
*
|
|
20
20
|
* Flat-naming convention (not `dreaming/diary.ts`): sdk-memory's
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* future `sqlite-vec-loader`, `vec-index`, `index-manager` moves
|
|
14
14
|
* will compose with. Dependency chain (all resolved):
|
|
15
15
|
* - `@theokit/sdk/errors` for `ConfigurationError` (public)
|
|
16
|
-
* - `@theokit/sdk/
|
|
16
|
+
* - `@theokit/sdk/persistence` for `applyWalWithFallback`
|
|
17
17
|
* (ADR D63 — NFS/SMB/FUSE-safe WAL adoption)
|
|
18
18
|
* - sibling `./index-schema.js` for SCHEMA + PRAGMA statements (moved iter 49)
|
|
19
19
|
*
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
* the canonical copy that the future `session-loader.ts` move will
|
|
16
16
|
* compose with as a sibling (loader reads back the markdown files
|
|
17
17
|
* this writer emits). Dependency chain (all resolved):
|
|
18
|
-
* - `@theokit/sdk/
|
|
18
|
+
* - `@theokit/sdk/persistence` for `replaceFileAtomic`
|
|
19
19
|
* - sibling `./markdown-store.js` for `memoryDir` (moved iter 56)
|
|
20
20
|
* - sibling `./memory-types.js` for `redactSecrets` (moved iter 52)
|
|
21
21
|
*
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
* copy for v1.x active-memory back-compat; sdk-memory ships the
|
|
12
12
|
* canonical copy that the future `active-memory.ts` move will compose
|
|
13
13
|
* with as a sibling. Dependency chain (both resolved):
|
|
14
|
-
* - `@theokit/sdk/
|
|
14
|
+
* - `@theokit/sdk/persistence` for `atomicWriteJson`
|
|
15
15
|
* - sibling `./markdown-store.js` for `memoryDir` (moved iter 56)
|
|
16
16
|
*
|
|
17
17
|
* @internal
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theokit/sdk-memory",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Memory subsystem for @theokit/sdk — MemoryProvider impls (markdown file store today; LanceDB + embeddings + circuit breaker next iters). Consumes the kernel-facing port from sdk-core.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/usetheo/theokit-sdk#readme",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"LICENSE"
|
|
39
39
|
],
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@theokit/sdk": ">=
|
|
41
|
+
"@theokit/sdk": ">=4.0.0",
|
|
42
42
|
"better-sqlite3": "^12.0.0",
|
|
43
43
|
"sqlite-vec": ">=0.1.0",
|
|
44
44
|
"@lancedb/lancedb": ">=0.20.0"
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@types/better-sqlite3": "^7.6.13",
|
|
62
62
|
"better-sqlite3": "^12.10.0",
|
|
63
63
|
"sqlite-vec": "^0.1.6",
|
|
64
|
-
"@theokit/sdk": "
|
|
64
|
+
"@theokit/sdk": "4.2.0"
|
|
65
65
|
},
|
|
66
66
|
"publishConfig": {
|
|
67
67
|
"access": "public"
|