bruce-models 5.9.0 → 5.9.2

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.
@@ -4535,7 +4535,7 @@
4535
4535
  if (isMapValueNum == null) {
4536
4536
  isMapValueNum = false;
4537
4537
  }
4538
- if (isValueNum && (isMapValueNum || mapValue.includes("-"))) {
4538
+ if (isValueNum && (isMapValueNum || (typeof mapValue === "string" && mapValue.includes("-")))) {
4539
4539
  if (+mapValue == +eValue) {
4540
4540
  return option.appliedValue;
4541
4541
  }
@@ -15114,7 +15114,7 @@
15114
15114
  })(exports.Scenario || (exports.Scenario = {}));
15115
15115
 
15116
15116
  // This is updated with the package.json version on build.
15117
- const VERSION = "5.9.0";
15117
+ const VERSION = "5.9.2";
15118
15118
 
15119
15119
  exports.VERSION = VERSION;
15120
15120
  exports.AbstractApi = AbstractApi;