@danielsimonjr/memoryjs 2.1.0 → 2.1.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/dist/index.cjs CHANGED
@@ -2104,7 +2104,11 @@ var init_schemas = __esm({
2104
2104
  recordedAt: import_zod.z.string().optional()
2105
2105
  })).optional(),
2106
2106
  lifecycleStatus: import_zod.z.enum(["draft", "published", "archived"]).optional()
2107
- }).strict();
2107
+ // v2.1.1: subclass managers (DecisionManager, HeuristicManager, ProjectContextManager,
2108
+ // ToolAffordanceManager, ExclusionManager, ObservationDedupManager) attach domain-specific
2109
+ // record fields (decisionRecord, projectContext, heuristic, etc.) and a lastModified
2110
+ // timestamp via updateEntity(). .passthrough() admits those without per-field enumeration.
2111
+ }).passthrough();
2108
2112
  RelationSchema = import_zod.z.object({
2109
2113
  from: entityNameSchema,
2110
2114
  to: entityNameSchema,