not-node 6.3.65 → 6.3.66
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/package.json +1 -1
- package/src/form/form.js +1 -1
- package/src/generic/logic.js +5 -0
package/package.json
CHANGED
package/src/form/form.js
CHANGED
package/src/generic/logic.js
CHANGED
|
@@ -185,6 +185,8 @@ module.exports = ({
|
|
|
185
185
|
LogAction(action, identity, {
|
|
186
186
|
targetId,
|
|
187
187
|
version: result?.__version,
|
|
188
|
+
populate,
|
|
189
|
+
query,
|
|
188
190
|
});
|
|
189
191
|
return result;
|
|
190
192
|
}
|
|
@@ -242,6 +244,8 @@ module.exports = ({
|
|
|
242
244
|
);
|
|
243
245
|
LogAction(action, identity, {
|
|
244
246
|
targetID,
|
|
247
|
+
query,
|
|
248
|
+
populate,
|
|
245
249
|
version: result?.__version,
|
|
246
250
|
});
|
|
247
251
|
return result;
|
|
@@ -292,6 +296,7 @@ module.exports = ({
|
|
|
292
296
|
const result = await getModel().getOneRaw(targetId, query);
|
|
293
297
|
LogAction(action, identity, {
|
|
294
298
|
targetId,
|
|
299
|
+
query,
|
|
295
300
|
version: result?.__version,
|
|
296
301
|
});
|
|
297
302
|
return result;
|