bruce-models 5.6.1 → 5.6.3
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.
- package/dist/bruce-models.es5.js +4 -3
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +4 -3
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/entity/entity.js +3 -2
- package/dist/lib/entity/entity.js.map +1 -1
- package/dist/lib/project/project-view-bookmark.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/entity/entity.d.ts +5 -5
- package/dist/types/project/menu-item.d.ts +2 -2
- package/dist/types/project/project-view-bookmark.d.ts +2 -0
- package/package.json +2 -2
package/dist/bruce-models.umd.js
CHANGED
|
@@ -3186,7 +3186,7 @@
|
|
|
3186
3186
|
if (schemaId) {
|
|
3187
3187
|
urlParams.set("schema", schemaId);
|
|
3188
3188
|
}
|
|
3189
|
-
if (scenario && scenario
|
|
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
|
|
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.
|
|
14827
|
+
const VERSION = "5.6.3";
|
|
14827
14828
|
|
|
14828
14829
|
exports.VERSION = VERSION;
|
|
14829
14830
|
exports.AbstractApi = AbstractApi;
|