@stonyx/orm 0.3.2-alpha.36 → 0.3.2-alpha.38
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 +3 -3
- package/dist/store.js +3 -3
- package/package.json +4 -4
- package/src/store.ts +3 -3
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
|
-
*
|
|
54
|
-
*
|
|
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
|
-
*
|
|
134
|
-
*
|
|
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.
|
|
7
|
+
"version": "0.3.2-alpha.38",
|
|
8
8
|
"description": "",
|
|
9
9
|
"main": "dist/index.js",
|
|
10
10
|
"type": "module",
|
|
@@ -61,10 +61,10 @@
|
|
|
61
61
|
},
|
|
62
62
|
"homepage": "https://github.com/abofs/stonyx-orm#readme",
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@stonyx/cron": "0.2.1-beta.
|
|
64
|
+
"@stonyx/cron": "0.2.1-beta.79",
|
|
65
65
|
"@stonyx/events": "0.1.1-beta.52",
|
|
66
66
|
"@stonyx/utils": "0.2.3-beta.26",
|
|
67
|
-
"stonyx": "0.2.3-beta.
|
|
67
|
+
"stonyx": "0.2.3-beta.76"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"@aws-sdk/client-dynamodb": "^3.0.0",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
}
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
|
-
"@stonyx/rest-server": "0.2.1-beta.
|
|
94
|
+
"@stonyx/rest-server": "0.2.1-beta.80",
|
|
95
95
|
"@types/node": "^25.6.0",
|
|
96
96
|
"mysql2": "^3.20.0",
|
|
97
97
|
"pg": "^8.20.0",
|
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
|
-
*
|
|
200
|
-
*
|
|
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
|