fiberx-backend-toolkit 0.1.20 → 0.1.21

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.
@@ -202,6 +202,9 @@ class InputValidatorUtil {
202
202
  }
203
203
  const new_val = normalize(getNestedValue(new_input, key));
204
204
  const old_val = normalize(getNestedValue(existing_data, key));
205
+ if (new_val === undefined) {
206
+ continue;
207
+ }
205
208
  if (!InputValidatorUtil.isDeepEqual(new_val, old_val)) {
206
209
  console.log("🔺 CHANGED:", key, { new_val, old_val });
207
210
  return true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fiberx-backend-toolkit",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
4
4
  "description": "A TypeScript backend toolkit providing shared domain logic, infrastructure helpers, and utilities for FiberX server-side applications and services.",
5
5
  "type": "commonjs",
6
6
  "main": "./dist/index.js",