bruce-models 5.7.9 → 5.8.0
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 +8 -3
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +8 -3
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/entity/entity-historic-data.js +7 -2
- package/dist/lib/entity/entity-historic-data.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/package.json +1 -1
package/dist/bruce-models.umd.js
CHANGED
|
@@ -2954,8 +2954,13 @@
|
|
|
2954
2954
|
api = exports.ENVIRONMENT.Api().GetBruceApi();
|
|
2955
2955
|
}
|
|
2956
2956
|
let attrKeyStr = null;
|
|
2957
|
-
if (attrKey
|
|
2958
|
-
|
|
2957
|
+
if (attrKey) {
|
|
2958
|
+
if (typeof attrKey != "string") {
|
|
2959
|
+
attrKeyStr = exports.PathUtils.Wrap(attrKey);
|
|
2960
|
+
}
|
|
2961
|
+
else {
|
|
2962
|
+
attrKeyStr = attrKey;
|
|
2963
|
+
}
|
|
2959
2964
|
}
|
|
2960
2965
|
// If we have more than 100 Entity IDs we'll have to split the request to avoid a URL that is too long.
|
|
2961
2966
|
const MAX_IDS = 100;
|
|
@@ -15019,7 +15024,7 @@
|
|
|
15019
15024
|
})(exports.Scenario || (exports.Scenario = {}));
|
|
15020
15025
|
|
|
15021
15026
|
// This is updated with the package.json version on build.
|
|
15022
|
-
const VERSION = "5.
|
|
15027
|
+
const VERSION = "5.8.0";
|
|
15023
15028
|
|
|
15024
15029
|
exports.VERSION = VERSION;
|
|
15025
15030
|
exports.AbstractApi = AbstractApi;
|