@smithers-orchestrator/memory 0.20.3 → 0.20.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithers-orchestrator/memory",
3
- "version": "0.20.3",
3
+ "version": "0.20.4",
4
4
  "description": "Persistent and semantic memory services for Smithers",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -38,12 +38,11 @@
38
38
  "drizzle-orm": "^0.45.2",
39
39
  "effect": "^3.21.1",
40
40
  "zod": "^4.3.6",
41
- "@smithers-orchestrator/db": "0.20.3",
42
- "@smithers-orchestrator/errors": "0.20.3",
43
- "@smithers-orchestrator/graph": "0.20.3",
44
- "@smithers-orchestrator/driver": "0.20.3",
45
- "@smithers-orchestrator/observability": "0.20.3",
46
- "@smithers-orchestrator/scheduler": "0.20.3"
41
+ "@smithers-orchestrator/db": "0.20.4",
42
+ "@smithers-orchestrator/errors": "0.20.4",
43
+ "@smithers-orchestrator/observability": "0.20.4",
44
+ "@smithers-orchestrator/scheduler": "0.20.4",
45
+ "@smithers-orchestrator/graph": "0.20.4"
47
46
  },
48
47
  "devDependencies": {
49
48
  "@types/bun": "latest",
@@ -1,10 +1 @@
1
- import { Context } from "effect";
2
- /** @typedef {import("./MemoryServiceApi.ts").MemoryServiceApi} MemoryServiceApi */
3
-
4
- const MemoryServiceBase =
5
- /** @type {Context.TagClass<MemoryService, "MemoryService", MemoryServiceApi>} */ (
6
- /** @type {unknown} */ (Context.Tag("MemoryService")())
7
- );
8
-
9
- export class MemoryService extends MemoryServiceBase {
10
- }
1
+ import { Context } from "effect"; export class MemoryService extends /** @type {Context.TagClass<MemoryService, "MemoryService", import("./MemoryServiceApi.ts").MemoryServiceApi>} */ (/** @type {unknown} */ (Context.Tag("MemoryService")())) {}
@@ -1,10 +1 @@
1
- import { Context } from "effect";
2
- /** @typedef {import("./MemoryStore.ts").MemoryStore} MemoryStore */
3
-
4
- const MemoryStoreServiceBase =
5
- /** @type {Context.TagClass<MemoryStoreService, "MemoryStoreService", MemoryStore>} */ (
6
- /** @type {unknown} */ (Context.Tag("MemoryStoreService")())
7
- );
8
-
9
- export class MemoryStoreService extends MemoryStoreServiceBase {
10
- }
1
+ import { Context } from "effect"; export class MemoryStoreService extends /** @type {Context.TagClass<MemoryStoreService, "MemoryStoreService", import("./MemoryStore.ts").MemoryStore>} */ (/** @type {unknown} */ (Context.Tag("MemoryStoreService")())) {}