bruce-models 5.0.3 → 5.0.4

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.
@@ -3495,7 +3495,7 @@
3495
3495
  let curData = data;
3496
3496
  for (let i = 0; i < path.length; i++) {
3497
3497
  const step = path[i];
3498
- if (!curData[step]) {
3498
+ if (!curData[step] && curData[step] != 0) {
3499
3499
  return null;
3500
3500
  }
3501
3501
  if (i >= path.length - 1) {
@@ -14190,7 +14190,7 @@
14190
14190
  })(exports.DataSource || (exports.DataSource = {}));
14191
14191
 
14192
14192
  // This is updated with the package.json version on build.
14193
- const VERSION = "5.0.3";
14193
+ const VERSION = "5.0.4";
14194
14194
 
14195
14195
  exports.VERSION = VERSION;
14196
14196
  exports.AbstractApi = AbstractApi;