sumba 2.33.2 → 2.33.3

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.
@@ -127,6 +127,7 @@ async function rebuildFilter (model, filter = {}, options = {}) {
127
127
  const fields = keys(req.getSetting('sumba:modelGuard', {}))
128
128
  const results = []
129
129
  for (const field of fields) {
130
+ if (!model.hasProperty(field)) continue
130
131
  const inSetting = filterModelFromSetting.call(this, { model, field, options })
131
132
  if (inSetting.results.length > 0) results.push(...inSetting.results)
132
133
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sumba",
3
- "version": "2.33.2",
3
+ "version": "2.33.3",
4
4
  "description": "Biz Suite for Bajo Framework",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/wiki/CHANGES.md CHANGED
@@ -3,6 +3,7 @@
3
3
  ## 2026-06-18
4
4
 
5
5
  - [2.33.2] Bug fix in ```hook.js```
6
+ - [2.33.3] Bug fix in ```hook.js```
6
7
 
7
8
  ## 2026-06-17
8
9