@danielsimonjr/memoryjs 2.1.0 → 2.1.1
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/README.md +1 -1
- package/dist/cli/index.js +5 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# MemoryJS
|
|
2
2
|
|
|
3
|
-
[](https://github.com/danielsimonjr/memoryjs)
|
|
4
4
|
[](https://www.npmjs.com/package/@danielsimonjr/memoryjs)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
[](https://www.typescriptlang.org/)
|
package/dist/cli/index.js
CHANGED
|
@@ -1191,7 +1191,11 @@ var init_schemas = __esm({
|
|
|
1191
1191
|
recordedAt: z.string().optional()
|
|
1192
1192
|
})).optional(),
|
|
1193
1193
|
lifecycleStatus: z.enum(["draft", "published", "archived"]).optional()
|
|
1194
|
-
|
|
1194
|
+
// v2.1.1: subclass managers (DecisionManager, HeuristicManager, ProjectContextManager,
|
|
1195
|
+
// ToolAffordanceManager, ExclusionManager, ObservationDedupManager) attach domain-specific
|
|
1196
|
+
// record fields (decisionRecord, projectContext, heuristic, etc.) and a lastModified
|
|
1197
|
+
// timestamp via updateEntity(). .passthrough() admits those without per-field enumeration.
|
|
1198
|
+
}).passthrough();
|
|
1195
1199
|
RelationSchema = z.object({
|
|
1196
1200
|
from: entityNameSchema,
|
|
1197
1201
|
to: entityNameSchema,
|