ia-common 1.1.1-beta.25 → 1.1.1-beta.26

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.
@@ -179,7 +179,9 @@ function getPropertyFilterByPermissionFn(permissionFilterConfig, propertyNames,
179
179
  continue;
180
180
  }
181
181
  // --------- CASE 3: No permission restriction → use dto filter ----------
182
- result.include[propertyName] = dtoFilter;
182
+ if (Array.isArray(dtoFilter)) {
183
+ result.include[propertyName] = dtoFilter;
184
+ }
183
185
  }
184
186
  return result;
185
187
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ia-common",
3
- "version": "1.1.1-beta.25",
3
+ "version": "1.1.1-beta.26",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",