not-node 6.3.64 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "not-node",
3
- "version": "6.3.64",
3
+ "version": "6.3.66",
4
4
  "description": "node complimentary part for client side notFramework.",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/form/form.js CHANGED
@@ -189,7 +189,7 @@ class Form {
189
189
  getModelName(req) {
190
190
  if (this.#MODEL_NAME) {
191
191
  return this.#MODEL_NAME;
192
- } else if (req) {
192
+ } else if (req && req.notRouteData) {
193
193
  return firstLetterToUpper(req.notRouteData.modelName);
194
194
  }
195
195
  return undefined;
@@ -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;
package/src/types.js CHANGED
@@ -113,7 +113,7 @@
113
113
  */
114
114
 
115
115
  /**
116
- * @typedef {Object.<string, notAppFormPropertyProcessingPipe>} notAppFormProcessingPipe
116
+ * @typedef {Object.<string, notAppFormPropertyProcessingPipe | notAppFormPropertyProcessingPipeInstruction>} notAppFormProcessingPipe
117
117
  */
118
118
 
119
119
  /**