@stonyx/orm 0.3.2-alpha.36 → 0.3.2-alpha.37

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/store.d.ts CHANGED
@@ -49,9 +49,9 @@ export default class Store {
49
49
  _skipAutoPersist?: boolean;
50
50
  }): void;
51
51
  /**
52
- * Evict a record from the store with full relationship registry cleanup,
53
- * WITHOUT calling record.clean(). This preserves the caller's reference
54
- * to the returned record (used by memory:false post-persist eviction).
52
+ * Evict a record from the store with full relationship registry cleanup.
53
+ * The caller retains its reference to the returned record, which is the
54
+ * contract memory:false post-persist eviction relies on.
55
55
  *
56
56
  * @param registryId - The ID used when the record's relationships were
57
57
  * registered. For SQL models with pending IDs, this is the original
package/dist/store.js CHANGED
@@ -129,9 +129,9 @@ export default class Store {
129
129
  this.unloadAllRecords(key);
130
130
  }
131
131
  /**
132
- * Evict a record from the store with full relationship registry cleanup,
133
- * WITHOUT calling record.clean(). This preserves the caller's reference
134
- * to the returned record (used by memory:false post-persist eviction).
132
+ * Evict a record from the store with full relationship registry cleanup.
133
+ * The caller retains its reference to the returned record, which is the
134
+ * contract memory:false post-persist eviction relies on.
135
135
  *
136
136
  * @param registryId - The ID used when the record's relationships were
137
137
  * registered. For SQL models with pending IDs, this is the original
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "stonyx-async",
5
5
  "stonyx-module"
6
6
  ],
7
- "version": "0.3.2-alpha.36",
7
+ "version": "0.3.2-alpha.37",
8
8
  "description": "",
9
9
  "main": "dist/index.js",
10
10
  "type": "module",
package/src/store.ts CHANGED
@@ -195,9 +195,9 @@ export default class Store {
195
195
  }
196
196
 
197
197
  /**
198
- * Evict a record from the store with full relationship registry cleanup,
199
- * WITHOUT calling record.clean(). This preserves the caller's reference
200
- * to the returned record (used by memory:false post-persist eviction).
198
+ * Evict a record from the store with full relationship registry cleanup.
199
+ * The caller retains its reference to the returned record, which is the
200
+ * contract memory:false post-persist eviction relies on.
201
201
  *
202
202
  * @param registryId - The ID used when the record's relationships were
203
203
  * registered. For SQL models with pending IDs, this is the original