bruce-models 4.2.6 → 4.2.7
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 +25 -1
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +25 -1
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/entity/entity.js +24 -0
- package/dist/lib/entity/entity.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
|
@@ -3611,6 +3611,18 @@
|
|
|
3611
3611
|
else if (path[0] == "boundaries") {
|
|
3612
3612
|
value = checkForValue(["Bruce"].concat(path));
|
|
3613
3613
|
}
|
|
3614
|
+
else if (path[0] == "position") {
|
|
3615
|
+
value = checkForValue(["Bruce"].concat(path));
|
|
3616
|
+
}
|
|
3617
|
+
else if (path[0] == "worldPosition") {
|
|
3618
|
+
value = checkForValue(["Bruce"].concat(path));
|
|
3619
|
+
}
|
|
3620
|
+
else if (path[0] == "tilesetID") {
|
|
3621
|
+
value = checkForValue(["Bruce"].concat(path));
|
|
3622
|
+
}
|
|
3623
|
+
else if (path[0] == "geometryRadius") {
|
|
3624
|
+
value = checkForValue(["Bruce"].concat(path));
|
|
3625
|
+
}
|
|
3614
3626
|
// Now we'll check against properties that could still be in the top-level and haven't been migrated yet.
|
|
3615
3627
|
if (path[0] == "Bruce" && path.length > 1) {
|
|
3616
3628
|
if (path[1] == "location") {
|
|
@@ -3625,6 +3637,18 @@
|
|
|
3625
3637
|
else if (path[1] == "boundaries") {
|
|
3626
3638
|
value = checkForValue(path.slice(1));
|
|
3627
3639
|
}
|
|
3640
|
+
else if (path[1] == "position") {
|
|
3641
|
+
value = checkForValue(path.slice(1));
|
|
3642
|
+
}
|
|
3643
|
+
else if (path[1] == "worldPosition") {
|
|
3644
|
+
value = checkForValue(path.slice(1));
|
|
3645
|
+
}
|
|
3646
|
+
else if (path[1] == "tilesetID") {
|
|
3647
|
+
value = checkForValue(path.slice(1));
|
|
3648
|
+
}
|
|
3649
|
+
else if (path[1] == "geometryRadius") {
|
|
3650
|
+
value = checkForValue(path.slice(1));
|
|
3651
|
+
}
|
|
3628
3652
|
}
|
|
3629
3653
|
}
|
|
3630
3654
|
return value;
|
|
@@ -12979,7 +13003,7 @@
|
|
|
12979
13003
|
})(exports.DataSource || (exports.DataSource = {}));
|
|
12980
13004
|
|
|
12981
13005
|
// This is updated with the package.json version on build.
|
|
12982
|
-
const VERSION = "4.2.
|
|
13006
|
+
const VERSION = "4.2.7";
|
|
12983
13007
|
|
|
12984
13008
|
exports.VERSION = VERSION;
|
|
12985
13009
|
exports.AbstractApi = AbstractApi;
|