bruce-models 5.6.0 → 5.6.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.
@@ -3186,7 +3186,7 @@
3186
3186
  if (schemaId) {
3187
3187
  urlParams.set("schema", schemaId);
3188
3188
  }
3189
- if (scenario && scenario > 0) {
3189
+ if (scenario && String(scenario) != "0") {
3190
3190
  urlParams.set("Scenario", String(scenario));
3191
3191
  }
3192
3192
  urlParams.set("hasMigrated", String(Boolean(migrated)));
@@ -3849,7 +3849,7 @@
3849
3849
  if (schemaId) {
3850
3850
  urlParams.set("schema", schemaId);
3851
3851
  }
3852
- if (scenario && scenario > 0) {
3852
+ if (scenario && String(scenario) != "0") {
3853
3853
  urlParams.set("Scenario", String(scenario));
3854
3854
  }
3855
3855
  if (maxSearchTimeSec) {
@@ -3979,6 +3979,7 @@
3979
3979
  if (!scenarioId) {
3980
3980
  scenarioId = 0;
3981
3981
  }
3982
+ scenarioId = String(scenarioId);
3982
3983
  if (!entityTypeId) {
3983
3984
  entityTypeId = "";
3984
3985
  }
@@ -14823,7 +14824,7 @@
14823
14824
  })(exports.Scenario || (exports.Scenario = {}));
14824
14825
 
14825
14826
  // This is updated with the package.json version on build.
14826
- const VERSION = "5.6.0";
14827
+ const VERSION = "5.6.2";
14827
14828
 
14828
14829
  exports.VERSION = VERSION;
14829
14830
  exports.AbstractApi = AbstractApi;