@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # MemoryJS
2
2
 
3
- [![Version](https://img.shields.io/badge/version-2.1.0-blue.svg)](https://github.com/danielsimonjr/memoryjs)
3
+ [![Version](https://img.shields.io/badge/version-2.1.1-blue.svg)](https://github.com/danielsimonjr/memoryjs)
4
4
  [![NPM](https://img.shields.io/npm/v/@danielsimonjr/memoryjs.svg)](https://www.npmjs.com/package/@danielsimonjr/memoryjs)
5
5
  [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
6
6
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.0+-blue.svg)](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
- }).strict();
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,