bruce-models 3.2.7 → 3.2.8

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.
@@ -2936,7 +2936,7 @@
2936
2936
  let curData = data;
2937
2937
  for (let i = 0; i < path.length; i++) {
2938
2938
  const step = path[i];
2939
- if (!curData[step]) {
2939
+ if (typeof curData != "object" || curData == null) {
2940
2940
  return;
2941
2941
  }
2942
2942
  if (i >= path.length - 1) {
@@ -10367,7 +10367,7 @@
10367
10367
  DataSource.GetList = GetList;
10368
10368
  })(exports.DataSource || (exports.DataSource = {}));
10369
10369
 
10370
- const VERSION = "3.2.7";
10370
+ const VERSION = "3.2.8";
10371
10371
 
10372
10372
  exports.VERSION = VERSION;
10373
10373
  exports.AbstractApi = AbstractApi;