pangea-server 3.3.110 → 3.3.111

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.
@@ -312,7 +312,7 @@ function processInstance(model, instance) {
312
312
  continue;
313
313
  const relModel = model.Relations[relName].getModelFn();
314
314
  if (Array.isArray(relInstance)) {
315
- relInstance.forEach((instance) => processInstance(relModel, instance));
315
+ relInstance.forEach((i) => processInstance(relModel, i));
316
316
  }
317
317
  else {
318
318
  processInstance(relModel, relInstance);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pangea-server",
3
3
  "description": "",
4
- "version": "3.3.110",
4
+ "version": "3.3.111",
5
5
  "files": [
6
6
  "dist"
7
7
  ],