@danielsimonjr/memoryjs 2.1.2 → 2.3.0
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 +1489 -603
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +24 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +24 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16951,7 +16951,30 @@ var OPTIONAL_PERSISTED_ENTITY_FIELDS = [
|
|
|
16951
16951
|
// ArtifactEntity extension (types/artifact.ts)
|
|
16952
16952
|
"artifactType",
|
|
16953
16953
|
"toolName",
|
|
16954
|
-
"shortId"
|
|
16954
|
+
"shortId",
|
|
16955
|
+
// v2.1.0 subclass-manager record fields (sibling to the v2.1.1
|
|
16956
|
+
// UpdateEntitySchema.passthrough fix — same root cause: subclass managers
|
|
16957
|
+
// attach domain records that the persistence allowlist must also admit,
|
|
16958
|
+
// otherwise the records are silently dropped on save and the managers'
|
|
16959
|
+
// list/match/get operations return empty on next load).
|
|
16960
|
+
"heuristicRecord",
|
|
16961
|
+
// HeuristicEntity
|
|
16962
|
+
"decisionRecord",
|
|
16963
|
+
// DecisionEntity (includes nested lifecycle)
|
|
16964
|
+
"exclusionRule",
|
|
16965
|
+
// ExclusionEntity
|
|
16966
|
+
"projectContextRecord",
|
|
16967
|
+
// ProjectContextEntity
|
|
16968
|
+
"toolAffordanceRecord",
|
|
16969
|
+
// ToolAffordanceEntity
|
|
16970
|
+
"prospectiveRecord",
|
|
16971
|
+
// ProspectiveEntity
|
|
16972
|
+
"failureRecord",
|
|
16973
|
+
// FailureEntity
|
|
16974
|
+
"planRecord",
|
|
16975
|
+
// PlanEntity
|
|
16976
|
+
"reflectionRecord"
|
|
16977
|
+
// ReflectionEntity
|
|
16955
16978
|
];
|
|
16956
16979
|
function copyOptionalPersistedFields(src, dst) {
|
|
16957
16980
|
for (const field of OPTIONAL_PERSISTED_ENTITY_FIELDS) {
|